summaryrefslogtreecommitdiffstats
path: root/perl-install/ftp.pm
blob: b0f7046b1faa3e35372afd28ae68a938d31b89c5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
package ftp; # $Id$

use Net::FTP;

use network::network;
use log;

my %hosts;

1;

sub fromEnv() {
    #- now URLPREFIX is generated from what is given by mdk-stage1 which is only this 4 variables.
    $ENV{URLPREFIX} = "ftp://" . ($ENV{LOGIN} && ($ENV{LOGIN} . ($ENV{PASSWORD} && ":$ENV{PASSWORD}") . '@')) .
      "$ENV{HOST}/$ENV{PREFIX}";
    @ENV{qw(HOST PREFIX LOGIN PASSWORD)};
}

sub new {
    my ($host, $prefix, $o_login, $o_password) = @_;
    my @l = do { if ($hosts{"$host$prefix"}) {
	@{$hosts{"$host$prefix"}};
    } else {
	my %options = (Passive => 1, Timeout => 60, Port => 21);
	$options{Firewall} = $ENV{PROXY} if $ENV{PROXY};
	$options{Port} = $ENV{PROXYPORT} if $ENV{PROXYPORT};
	unless ($o_login) {
	    $o_login = 'anonymous';
	    $o_password = '-drakx@';
	}

	my $ftp;
	foreach (1..10) {
	    $ftp = Net::FTP->new(resolv($host), %options) or die;
	    $ftp && $ftp->login($o_login, $o_password) and last;

	    log::l("ftp login failed, sleeping before trying again");
	    sleep 5 * $_;
	}
	$ftp or die "unable to open ftp connection to $host";
	$ftp->binary;
	$ftp->cwd($prefix);

	my @l = ($ftp, \ (my $_retr));
	$hosts{"$host$prefix"} = \@l;
	@l;
    } };
    wantarray() ? @l : $l[0];
}

sub getFile {
    my ($f, @para) = @_;
    $f eq 'XXX' and rewindGetFile(), return; #- special case to force closing connection.
    foreach (1..3) {
	my ($ftp, $retr) = new(@para ? @para : fromEnv());
	eval { $$retr->close if $$retr };
	$@ and rewindGetFile(); #- in case Timeout got us on "->close"
	$$retr = $ftp->retr($f) and return $$retr;
	$ftp->code == 550 and log::l("FTP: 550 file unavailable"), return;
	rewindGetFile();
	log::l("ftp get failed, sleeping before trying again");
	sleep 1;
    }
}

#-sub closeFiles() {
#-    #- close any existing connections
#-    foreach (values %hosts) {
#-	  my $retr = $_->[1] if ref $_;
#-	  $$retr->close if $$retr;
#-	  undef $$retr;
#-    }
#-}

sub rewindGetFile() {
    #- close any existing connection.
    foreach (values %hosts) {
	my ($ftp, $retr) = @{$_ || []};
	#- don't let Timeout kill us!
	eval { $$retr->close } if $$retr;
	eval { $ftp->close } if $ftp;
    }

    #- make sure to reconnect to server.
    %hosts = ();
}
'ctx'> #: standalone/scannerdrake:865 standalone/scannerdrake:876
#: standalone/scannerdrake:946 wizards.pm:95 wizards.pm:99 wizards.pm:121
+#: wizards2.pm:95 wizards2.pm:99 wizards2.pm:121
#, c-format
msgid "Error"
msgstr "שגיאה"
@@ -269,8 +272,8 @@ msgid "No CDROM support"
msgstr "אין תמיכה ב CDROM"
#: ../move/tree/mdk_totem:76 diskdrake/hd_gtk.pm:95
-#: diskdrake/interactive.pm:1020 diskdrake/interactive.pm:1030
-#: diskdrake/interactive.pm:1083
+#: diskdrake/interactive.pm:1038 diskdrake/interactive.pm:1048
+#: diskdrake/interactive.pm:1101
#, c-format
msgid "Read carefully!"
msgstr "יש לקרוא בעיון!"
@@ -422,15 +425,15 @@ msgstr ""
"הכרטיס זה תומך בהאצת תלת מימד בחומרה עם Xorg %s,\n"
"זהירות: זוהי גרסה ניסיונית העלולה לגרום למחשב שלך לקרוס."
-#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:117 any.pm:914
+#: Xconfig/main.pm:90 Xconfig/main.pm:91 Xconfig/monitor.pm:116 any.pm:921
#, c-format
msgid "Custom"
msgstr "מותאם אישית"
#: Xconfig/main.pm:115 diskdrake/dav.pm:26 help.pm:14
-#: install_steps_interactive.pm:86 printer/printerdrake.pm:737
-#: printer/printerdrake.pm:4296 printer/printerdrake.pm:4742
-#: standalone/draksplash:120 standalone/logdrake:174 standalone/net_applet:183
+#: install_steps_interactive.pm:86 printer/printerdrake.pm:744
+#: printer/printerdrake.pm:4401 printer/printerdrake.pm:4853
+#: standalone/draksplash:120 standalone/logdrake:174 standalone/net_applet:229
#: standalone/scannerdrake:477
#, c-format
msgid "Quit"
@@ -441,12 +444,12 @@ msgstr "יציאה"
msgid "Graphic Card"
msgstr "כרטיס גרפי"
-#: Xconfig/main.pm:120 Xconfig/monitor.pm:111
+#: Xconfig/main.pm:120 Xconfig/monitor.pm:110
#, c-format
msgid "Monitor"
msgstr "מסך"
-#: Xconfig/main.pm:123 Xconfig/resolution_and_depth.pm:221
+#: Xconfig/main.pm:123 Xconfig/resolution_and_depth.pm:288
#, c-format
msgid "Resolution"
msgstr "הפרדת מסך"
@@ -456,9 +459,9 @@ msgstr "הפרדת מסך"
msgid "Test"
msgstr "בדיקה"
-#: Xconfig/main.pm:133 diskdrake/dav.pm:65 diskdrake/interactive.pm:437
+#: Xconfig/main.pm:133 diskdrake/dav.pm:65 diskdrake/interactive.pm:445
#: diskdrake/removable.pm:24 diskdrake/smbnfs_gtk.pm:80
-#: standalone/drakfont:493 standalone/drakfont:555
+#: standalone/drakfont:491 standalone/drakfont:553
#, c-format
msgid "Options"
msgstr "אפשרויות"
@@ -481,38 +484,38 @@ msgstr ""
"\n"
"%s"
-#: Xconfig/monitor.pm:112
+#: Xconfig/monitor.pm:111
#, c-format
msgid "Choose a monitor for head #%d"
msgstr "בחירת צג למסך #%d"
-#: Xconfig/monitor.pm:112
+#: Xconfig/monitor.pm:111
#, c-format
msgid "Choose a monitor"
msgstr "יש לבחור מסך"
-#: Xconfig/monitor.pm:118
+#: Xconfig/monitor.pm:117
#, c-format
msgid "Plug'n Play"
msgstr "הכנס-הפעל"
-#: Xconfig/monitor.pm:119 mouse.pm:49
+#: Xconfig/monitor.pm:118 mouse.pm:49
#, c-format
msgid "Generic"
msgstr "כללי"
-#: Xconfig/monitor.pm:120 standalone/drakconnect:569 standalone/harddrake2:52
-#: standalone/harddrake2:86
+#: Xconfig/monitor.pm:119 standalone/drakconnect:602 standalone/harddrake2:53
+#: standalone/harddrake2:87
#, c-format
msgid "Vendor"
msgstr "יצרן"
-#: Xconfig/monitor.pm:130
+#: Xconfig/monitor.pm:129
#, c-format
msgid "Plug'n Play probing failed. Please select the correct monitor"
msgstr "זיהוי הכנס-הפעל נכשלה. עליך לבחור את המסך באופן ידני"
-#: Xconfig/monitor.pm:135
+#: Xconfig/monitor.pm:137
#, c-format
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
@@ -534,12 +537,12 @@ msgstr ""
"ליכולות המסך שלך מאחר והדבר עלול לגרום נזק למסך. אם\n"
"המידע לא ידוע, עליך לבחור בתצורה זהירה ובסיסית יותר."
-#: Xconfig/monitor.pm:142
+#: Xconfig/monitor.pm:144
#, c-format
msgid "Horizontal refresh rate"
msgstr "קצב רענון אופקי"
-#: Xconfig/monitor.pm:143
+#: Xconfig/monitor.pm:145
#, c-format
msgid "Vertical refresh rate"
msgstr "קצב רענון אנכי"
@@ -564,60 +567,71 @@ msgstr "65 אלף צבעים (16 סיביות)"
msgid "16 million colors (24 bits)"
msgstr "16 מיליון צבעים (24 סיביות)"
-#: Xconfig/resolution_and_depth.pm:133
+#: Xconfig/resolution_and_depth.pm:129
#, c-format
msgid "Resolutions"
msgstr "הפרדות מסך"
-#: Xconfig/resolution_and_depth.pm:270
+#: Xconfig/resolution_and_depth.pm:310 diskdrake/hd_gtk.pm:339
+#: install_steps_gtk.pm:288 mouse.pm:168 services.pm:162
+#: standalone/drakbackup:1612 standalone/drakperm:251
+#, c-format
+msgid "Other"
+msgstr "אחר"
+
+#: Xconfig/resolution_and_depth.pm:359
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "נא לבחור את הפרדת המסך ועומק הצבע"
-#: Xconfig/resolution_and_depth.pm:271
+#: Xconfig/resolution_and_depth.pm:360
#, c-format
msgid "Graphics card: %s"
msgstr "כרטיס מסך: %s"
-#: Xconfig/resolution_and_depth.pm:285 interactive.pm:424
-#: interactive/gtk.pm:768 interactive/http.pm:103 interactive/http.pm:156
-#: interactive/newt.pm:317 interactive/newt.pm:419 interactive/stdio.pm:39
+#: Xconfig/resolution_and_depth.pm:374 interactive.pm:433
+#: interactive/gtk.pm:767 interactive/http.pm:103 interactive/http.pm:156
+#: interactive/newt.pm:319 interactive/newt.pm:421 interactive/stdio.pm:39
#: interactive/stdio.pm:142 interactive/stdio.pm:143 interactive/stdio.pm:172
#: standalone/drakTermServ:199 standalone/drakTermServ:490
-#: standalone/drakbackup:3967 standalone/drakbackup:4027
-#: standalone/drakbackup:4071 standalone/drakconnect:165
-#: standalone/drakconnect:849 standalone/drakconnect:936
-#: standalone/drakconnect:1035 standalone/drakfont:576 standalone/drakroam:388
-#: standalone/drakups:208 standalone/net_monitor:344 ugtk2.pm:409 ugtk2.pm:506
-#: ugtk2.pm:900 ugtk2.pm:923
+#: standalone/drakbackup:1376 standalone/drakbackup:3974
+#: standalone/drakbackup:4034 standalone/drakbackup:4078
+#: standalone/drakconnect:166 standalone/drakconnect:885
+#: standalone/drakconnect:972 standalone/drakconnect:1071
+#: standalone/drakfont:574 standalone/drakfont:586 standalone/drakperm:310
+#: standalone/drakroam:387 standalone/draksplash:167 standalone/drakups:212
+#: standalone/net_monitor:345 ugtk2.pm:409 ugtk2.pm:506 ugtk2.pm:909
+#: ugtk2.pm:932
#, c-format
msgid "Ok"
msgstr "אישור"
-#: Xconfig/resolution_and_depth.pm:285 diskdrake/smbnfs_gtk.pm:81 help.pm:89
-#: help.pm:444 install_steps_gtk.pm:480 install_steps_interactive.pm:422
-#: install_steps_interactive.pm:826 interactive.pm:425 interactive/gtk.pm:772
-#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:316
-#: interactive/newt.pm:423 interactive/stdio.pm:39 interactive/stdio.pm:142
-#: interactive/stdio.pm:176 printer/printerdrake.pm:3579
-#: standalone/drakautoinst:217 standalone/drakbackup:3893
-#: standalone/drakbackup:3897 standalone/drakbackup:3955
-#: standalone/drakconnect:164 standalone/drakconnect:934
-#: standalone/drakconnect:1034 standalone/drakfont:668 standalone/drakfont:745
-#: standalone/drakups:215 standalone/logdrake:174 standalone/net_monitor:343
-#: ugtk2.pm:403 ugtk2.pm:504 ugtk2.pm:513 ugtk2.pm:900
+#: Xconfig/resolution_and_depth.pm:374 diskdrake/smbnfs_gtk.pm:81 help.pm:89
+#: help.pm:444 install_steps_gtk.pm:484 install_steps_interactive.pm:422
+#: install_steps_interactive.pm:827 interactive.pm:434 interactive/gtk.pm:771
+#: interactive/http.pm:104 interactive/http.pm:160 interactive/newt.pm:318
+#: interactive/newt.pm:425 interactive/stdio.pm:39 interactive/stdio.pm:142
+#: interactive/stdio.pm:176 printer/printerdrake.pm:3676
+#: standalone/drakautoinst:217 standalone/drakbackup:1376
+#: standalone/drakbackup:3900 standalone/drakbackup:3904
+#: standalone/drakbackup:3962 standalone/drakconnect:165
+#: standalone/drakconnect:970 standalone/drakconnect:1070
+#: standalone/drakfont:586 standalone/drakfont:664 standalone/drakfont:741
+#: standalone/drakperm:310 standalone/draksplash:167 standalone/drakups:219
+#: standalone/logdrake:174 standalone/net_monitor:344 ugtk2.pm:403
+#: ugtk2.pm:504 ugtk2.pm:513 ugtk2.pm:909
#, c-format
msgid "Cancel"
msgstr "ביטול"
-#: Xconfig/resolution_and_depth.pm:285 diskdrake/hd_gtk.pm:153
-#: install_steps_gtk.pm:228 install_steps_gtk.pm:629 interactive.pm:519
-#: interactive/gtk.pm:638 interactive/gtk.pm:640 standalone/drakTermServ:284
-#: standalone/drakbackup:3889 standalone/drakbug:104
-#: standalone/drakconnect:160 standalone/drakconnect:245
-#: standalone/drakfont:511 standalone/drakperm:134 standalone/draksec:336
+#: Xconfig/resolution_and_depth.pm:374 diskdrake/hd_gtk.pm:153
+#: install_steps_gtk.pm:232 install_steps_gtk.pm:633 interactive.pm:528
+#: interactive/gtk.pm:637 interactive/gtk.pm:639 standalone/drakTermServ:284
+#: standalone/drakbackup:3896 standalone/drakbug:104
+#: standalone/drakconnect:161 standalone/drakconnect:246
+#: standalone/drakfont:509 standalone/drakperm:134 standalone/draksec:336
#: standalone/draksec:338 standalone/draksec:356 standalone/draksec:358
-#: ugtk2.pm:1031 ugtk2.pm:1032
+#: ugtk2.pm:1041 ugtk2.pm:1042
#, c-format
msgid "Help"
msgstr "עזרה"
@@ -754,27 +768,27 @@ msgstr ""
msgid "What norm is your TV using?"
msgstr "באיזה תקן שידור הטלוויזיה שלך משתמשת?"
-#: Xconfig/xfree.pm:571
+#: Xconfig/xfree.pm:627
#, c-format
msgid ""
"_:weird aspect ratio\n"
"other"
msgstr ""
-#: any.pm:140 harddrake/sound.pm:191 install_any.pm:652 interactive.pm:462
-#: standalone/drakconnect:167 standalone/drakconnect:613 standalone/draksec:68
-#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:231
+#: any.pm:143 harddrake/sound.pm:191 interactive.pm:471 pkgs.pm:481
+#: standalone/drakconnect:168 standalone/drakconnect:646 standalone/draksec:68
+#: standalone/drakups:101 standalone/drakxtv:92 standalone/harddrake2:236
#: standalone/service_harddrake:204
#, c-format
msgid "Please wait"
msgstr "נא להמתין"
-#: any.pm:140
+#: any.pm:143
#, c-format
msgid "Bootloader installation in progress"
msgstr "התקנת מנהל האתחול"
-#: any.pm:151
+#: any.pm:154
#, c-format
msgid ""
"LILO wants to assign a new Volume ID to drive %s. However, changing\n"
@@ -785,12 +799,12 @@ msgid ""
"Assign a new Volume ID?"
msgstr ""
-#: any.pm:162
+#: any.pm:165
#, c-format
msgid "Installation of bootloader failed. The following error occurred:"
msgstr "התקנת מנהל האתחול נכשלה. השגיאות הבאות התרחשו:"
-#: any.pm:168
+#: any.pm:171
#, c-format
msgid ""
"You may need to change your Open Firmware boot-device to\n"
@@ -801,7 +815,7 @@ msgid ""
"At your next boot you should see the bootloader prompt."
msgstr ""
-#: any.pm:206
+#: any.pm:209
#, c-format
msgid ""
"You decided to install the bootloader on a partition.\n"
@@ -815,257 +829,257 @@ msgstr ""
"\n"
"מהו הכונן ממנו נטענת המערכת? "
-#: any.pm:229 help.pm:739
+#: any.pm:232 help.pm:739
#, c-format
msgid "First sector of drive (MBR)"
msgstr "מקטע ראשון של הכונן (MBR)"
-#: any.pm:230
+#: any.pm:233
#, c-format
msgid "First sector of the root partition"
msgstr "מקטע ראשון של מחיצת השורש"
-#: any.pm:232
+#: any.pm:235
#, c-format
msgid "On Floppy"
msgstr "על התקליטון"
-#: any.pm:234 help.pm:739 printer/printerdrake.pm:3962
+#: any.pm:237 help.pm:739 printer/printerdrake.pm:4061
#, c-format
msgid "Skip"
msgstr "דילוג"
-#: any.pm:238
+#: any.pm:241
#, c-format
msgid "LILO/grub Installation"
msgstr "התקנת LILO/grub"
-#: any.pm:239
+#: any.pm:242
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "איפה ברצונך להתקין את מנהל האתחול?"
-#: any.pm:264 standalone/drakboot:307
+#: any.pm:268 standalone/drakboot:307
#, c-format
msgid "Boot Style Configuration"
msgstr "הגדרת סגנון מנהל אתחול"
-#: any.pm:266 any.pm:298
+#: any.pm:270 any.pm:302
#, c-format
msgid "Bootloader main options"
msgstr "הגדרות עיקריות של מנהל האתחול"
-#: any.pm:270
+#: any.pm:274
#, c-format
msgid "Give the ram size in MB"
msgstr "יש להגדיראת גודל הזיכרון בMB"
-#: any.pm:272
+#: any.pm:276
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr "אפשרות ''הגבלת אפשרויות שורת הפקודה'' לא שימושית ללא הגדרת סיסמה"
-#: any.pm:273 any.pm:606 authentication.pm:176
+#: any.pm:277 any.pm:610 authentication.pm:182
#, c-format
msgid "The passwords do not match"
msgstr "הסיסמאות לא זהות"
-#: any.pm:273 any.pm:606 authentication.pm:176 diskdrake/interactive.pm:1270
+#: any.pm:277 any.pm:610 authentication.pm:182 diskdrake/interactive.pm:1291
#, c-format
msgid "Please try again"
msgstr "יש לנסות שנית"
-#: any.pm:278 any.pm:301
+#: any.pm:282 any.pm:305
#, c-format
msgid "Bootloader to use"
msgstr "מנהל אתחול (ברירת מחדל):"
-#: any.pm:280 any.pm:303
+#: any.pm:284 any.pm:307
#, c-format
msgid "Boot device"
msgstr "מחיצת האתחול (ברירת מחדל):"
-#: any.pm:282
+#: any.pm:286
#, c-format
msgid "Delay before booting default image"
msgstr "השהייה לפני אתחול תצורה זו (שניות):"
-#: any.pm:283
+#: any.pm:287
#, c-format
msgid "Enable ACPI"
msgstr "הפעלת ACPI (ניהול צריכת אנרגיה מתקדמת)"
-#: any.pm:285
+#: any.pm:289
#, c-format
msgid "Force no APIC"
msgstr "הפעלה ללא APIC (בקר פסיקות מתוכנת מתקדם)"
-#: any.pm:287
+#: any.pm:291
#, c-format
msgid "Force No Local APIC"
msgstr "הפעלה ללא APIC מקומי (בקר פסיקות מתוכנת מתקדם)"
-#: any.pm:289 any.pm:633 authentication.pm:181 diskdrake/smbnfs_gtk.pm:180
-#: network/netconnect.pm:633 printer/printerdrake.pm:1596
-#: printer/printerdrake.pm:1716 standalone/drakbackup:1653
-#: standalone/drakbackup:3495 standalone/drakups:295
+#: any.pm:293 any.pm:637 authentication.pm:187 diskdrake/smbnfs_gtk.pm:180
+#: network/netconnect.pm:680 printer/printerdrake.pm:1663
+#: printer/printerdrake.pm:1784 standalone/drakbackup:1656
+#: standalone/drakbackup:3503 standalone/drakups:299
#, c-format
msgid "Password"
msgstr "סיסמה"
-#: any.pm:290 any.pm:634 authentication.pm:182
+#: any.pm:294 any.pm:638 authentication.pm:188
#, c-format
msgid "Password (again)"
msgstr "סיסמה (שוב)"
-#: any.pm:291
+#: any.pm:295
#, c-format
msgid "Restrict command line options"
msgstr "הגבלת אפשרויות שורת הפקודה"
-#: any.pm:291
+#: any.pm:295
#, c-format
msgid "restrict"
msgstr "הגבלה"
-#: any.pm:293
+#: any.pm:297
#, c-format
msgid "Clean /tmp at each boot"
msgstr "ניקוי קבצים זמניים בספריית tmp/ בכל אתחול"
-#: any.pm:294
+#: any.pm:298
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "הגדרת זיכרון ידנית (נמצאו %d MB)"
-#: any.pm:302
+#: any.pm:306
#, c-format
msgid "Init Message"
msgstr "הודעת אתחול"
-#: any.pm:304
+#: any.pm:308
#, c-format
msgid "Open Firmware Delay"
msgstr "השהיית קושחה (Firmware) פתוחה"
-#: any.pm:305
+#: any.pm:309
#, c-format
msgid "Kernel Boot Timeout"
msgstr "משך המתנה מירבי לאתחול גרעין"
-#: any.pm:306
+#: any.pm:310
#, c-format
msgid "Enable CD Boot?"
msgstr "האם לאפשר אתחול מתקליטור?"
-#: any.pm:307
+#: any.pm:311
#, c-format
msgid "Enable OF Boot?"
msgstr "האם לאפשר אתחול OF?"
-#: any.pm:308
+#: any.pm:312
#, c-format
msgid "Default OS?"
msgstr "מהי מערכת הפעלה שתיטען כברירת מחדל?"
-#: any.pm:361
+#: any.pm:365
#, c-format
msgid "Image"
msgstr "תצורה"
-#: any.pm:362 any.pm:372
+#: any.pm:366 any.pm:376
#, c-format
msgid "Root"
msgstr "מנהל מערכת (root)"
-#: any.pm:363 any.pm:385
+#: any.pm:367 any.pm:389
#, c-format
msgid "Append"
msgstr "הוספה"
-#: any.pm:365 standalone/drakboot:309 standalone/drakboot:313
+#: any.pm:369 standalone/drakboot:309 standalone/drakboot:313
#, c-format
msgid "Video mode"
msgstr "תצורת תצוגה"
-#: any.pm:367
+#: any.pm:371
#, c-format
msgid "Initrd"
msgstr "Initrd"
-#: any.pm:368
+#: any.pm:372
#, c-format
msgid "Network profile"
msgstr "תצורת רשת"
-#: any.pm:377 any.pm:382 any.pm:384
+#: any.pm:381 any.pm:386 any.pm:388
#, c-format
msgid "Label"
msgstr "תווית"
-#: any.pm:379 any.pm:389 harddrake/v4l.pm:275 standalone/drakfloppy:84
+#: any.pm:383 any.pm:393 harddrake/v4l.pm:275 standalone/drakfloppy:84
#: standalone/drakfloppy:90 standalone/draksec:52
#, c-format
msgid "Default"
msgstr "ברירת מחדל"
-#: any.pm:386
+#: any.pm:390
#, c-format
msgid "Initrd-size"
msgstr "גודל Initrd"
-#: any.pm:388
+#: any.pm:392
#, c-format
msgid "NoVideo"
msgstr "ללא תצוגה"
-#: any.pm:399
+#: any.pm:403
#, c-format
msgid "Empty label not allowed"
msgstr "אסור להגדיר תווית שם ריקה"
-#: any.pm:400
+#: any.pm:404
#, c-format
msgid "You must specify a kernel image"
msgstr "חובה להגדיר תמונת גרעין"
-#: any.pm:400
+#: any.pm:404
#, c-format
msgid "You must specify a root partition"
msgstr "חובה להגדיר מחיצת שורש"
-#: any.pm:401
+#: any.pm:405
#, c-format
msgid "This label is already used"
msgstr "התווית הזאת כבר בשימוש"
-#: any.pm:415
+#: any.pm:419
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "איזה סוג כניסה ברצונך להוסיף?"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Linux"
msgstr "לינוקס"
-#: any.pm:416
+#: any.pm:420
#, c-format
msgid "Other OS (SunOS...)"
msgstr "מערכת הפעלה אחרת (SunOS...)"
-#: any.pm:417
+#: any.pm:421
#, c-format
msgid "Other OS (MacOS...)"
msgstr "מערכת הפעלה אחרת (MacOS...)"
-#: any.pm:417
+#: any.pm:421
#, c-format
msgid "Other OS (Windows...)"
msgstr "מערכת הפעלה אחרת (חלונות...)"
-#: any.pm:445
+#: any.pm:449
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
@@ -1074,73 +1088,73 @@ msgstr ""
"להלן הרשומות שהוגדרו כבר בתפריט האתחול\n"
"ניתן להוסיף רשומות או לשנות רשומות קיימות."
-#: any.pm:592
+#: any.pm:596
#, c-format
msgid "access to X programs"
msgstr "גישה ליישומים גרפיים"
-#: any.pm:593
+#: any.pm:597
#, c-format
msgid "access to rpm tools"
msgstr "גישה לכלי התקנת תוכנה"
-#: any.pm:594
+#: any.pm:598
#, c-format
msgid "allow \"su\""
msgstr "איפשור שינוי למנהל מערכת (\"su\")"
-#: any.pm:595
+#: any.pm:599
#, c-format
msgid "access to administrative files"
msgstr "אפשרות גישה לקבצי ניהול"
-#: any.pm:596
+#: any.pm:600
#, c-format
msgid "access to network tools"
msgstr "אפשרות גישה לכלי רשת"
-#: any.pm:597
+#: any.pm:601
#, c-format
msgid "access to compilation tools"
msgstr "אפשרות גישה לכלי הידור"
-#: any.pm:602
+#: any.pm:606
#, c-format
msgid "(already added %s)"
msgstr "(כבר נוסף %s)"
-#: any.pm:607
+#: any.pm:611
#, c-format
msgid "This password is too simple"
msgstr "הסיסמה פשוטה מדי"
-#: any.pm:608
+#: any.pm:612
#, c-format
msgid "Please give a user name"
msgstr "עליך להגדיר שם משתמש"
-#: any.pm:609
+#: any.pm:613
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr "שם המשתמש יכול להכיל אך ורק אותיות קטנות, מספרים, `-' ו `_'"
-#: any.pm:610
+#: any.pm:614
#, c-format
msgid "The user name is too long"
msgstr "שם המשתמש ארוך מדי"
-#: any.pm:611
+#: any.pm:615
#, c-format
msgid "This user name has already been added"
msgstr "שם משתמש זה כבר קיים"
-#: any.pm:615
+#: any.pm:619
#, c-format
msgid "Add user"
msgstr "הוספת משתמש"
-#: any.pm:616
+#: any.pm:620
#, c-format
msgid ""
"Enter a user\n"
@@ -1149,78 +1163,96 @@ msgstr ""
"הגדרת משתמש\n"
"%s"
-#: any.pm:619 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:157
+#: any.pm:623 diskdrake/dav.pm:66 diskdrake/hd_gtk.pm:157
#: diskdrake/removable.pm:26 diskdrake/smbnfs_gtk.pm:82 help.pm:530
-#: interactive/http.pm:151 printer/printerdrake.pm:191
-#: printer/printerdrake.pm:376 printer/printerdrake.pm:4742
-#: standalone/drakbackup:2708 standalone/scannerdrake:668
+#: interactive/http.pm:151 printer/printerdrake.pm:197
+#: printer/printerdrake.pm:382 printer/printerdrake.pm:4853
+#: standalone/drakbackup:2716 standalone/scannerdrake:668
#: standalone/scannerdrake:818
#, c-format
msgid "Done"
msgstr "סיום"
-#: any.pm:620 help.pm:51
+#: any.pm:624 help.pm:51
#, c-format
msgid "Accept user"
msgstr "שמירת משתמש"
-#: any.pm:631
+#: any.pm:635
#, c-format
msgid "Real name"
msgstr "שם אמיתי"
-#: any.pm:632 standalone/drakbackup:1648
+#: any.pm:636 standalone/drakbackup:1651
#, c-format
msgid "Login name"
msgstr "שם משתמש"
-#: any.pm:635
+#: any.pm:639
#, c-format
msgid "Shell"
msgstr "מעטפת"
-#: any.pm:637
+#: any.pm:641
#, c-format
msgid "Icon"
msgstr "סמל"
-#: any.pm:684 security/l10n.pm:14
+#: any.pm:688 security/l10n.pm:14
#, c-format
msgid "Autologin"
msgstr "כניסה-אוטומטית"
-#: any.pm:685
+#: any.pm:689
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"ניתן להגדיר שכאשר המערכת תופעל היא תכנס אוטומטית לחשבון של אחד המשתמשים."
-#: any.pm:686 help.pm:51
+#: any.pm:690 help.pm:51
#, c-format
msgid "Do you want to use this feature?"
msgstr "האם להפעיל אפשרות זו?"
-#: any.pm:687
+#: any.pm:690 help.pm:180 help.pm:285 help.pm:444 install_any.pm:887
+#: interactive.pm:158 modules/interactive.pm:71 printer/printerdrake.pm:743
+#: standalone/drakbackup:2516 standalone/drakgw:287 standalone/drakgw:288
+#: standalone/drakgw:296 standalone/drakgw:306 standalone/draksec:55
+#: standalone/harddrake2:310 standalone/net_applet:309 ugtk2.pm:908
+#: wizards.pm:156 wizards2.pm:158
+#, c-format
+msgid "Yes"
+msgstr "כן"
+
+#: any.pm:690 help.pm:180 help.pm:285 help.pm:313 help.pm:444
+#: install_any.pm:887 interactive.pm:158 modules/interactive.pm:71
+#: standalone/drakbackup:2516 standalone/draksec:54 standalone/harddrake2:311
+#: standalone/net_applet:305 ugtk2.pm:908 wizards.pm:156 wizards2.pm:158
+#, c-format
+msgid "No"
+msgstr "לא"
+
+#: any.pm:692
#, c-format
msgid "Choose the default user:"
msgstr "בחירת משתמש ברירת המחדל: "
-#: any.pm:688
+#: any.pm:693
#, c-format
msgid "Choose the window manager to run:"
msgstr "יש לבחור את מנהל החלונות:"
-#: any.pm:700
+#: any.pm:706
#, c-format
msgid "Please choose a language to use."
msgstr "יש לבחור את השפה העיקרית."
-#: any.pm:701
+#: any.pm:707
#, c-format
msgid "Language choice"
msgstr "בחירת שפה"
-#: any.pm:727
+#: any.pm:733
#, c-format
msgid ""
"Mandrakelinux can support multiple languages. Select\n"
@@ -1231,59 +1263,60 @@ msgstr ""
"את השפות שברצונך להתקין. השפות יהיו זמינות כאשר\n"
"ההתקנה תסתיים והמחשב יופעל מחדש."
-#: any.pm:746 help.pm:647
+#: any.pm:752 any.pm:773 help.pm:647
#, c-format
msgid "Use Unicode by default"
msgstr "שימוש ביוניקוד בתור ברירת מחדל"
-#: any.pm:747 help.pm:647
+#: any.pm:753 help.pm:647
#, c-format
msgid "All languages"
msgstr "כל השפות"
-#: any.pm:786 help.pm:566 help.pm:855 install_steps_interactive.pm:946
+#: any.pm:794 help.pm:566 help.pm:855 install_steps_interactive.pm:947
#, c-format
msgid "Country / Region"
msgstr "מדינה / אזור"
-#: any.pm:787
+#: any.pm:795
#, c-format
msgid "Please choose your country."
msgstr "עליך לבחור את המדינה שלך."
-#: any.pm:789
+#: any.pm:797
#, c-format
msgid "Here is the full list of available countries"
msgstr "להלן הרשימה המלאה של המדינות הזמינות"
-#: any.pm:790
+#: any.pm:798
#, c-format
msgid "Other Countries"
msgstr "מדינות אחרות"
-#: any.pm:798
+#: any.pm:806
#, c-format
msgid "Input method:"
msgstr "שיטת קלט:"
-#: any.pm:799 install_any.pm:388 network/netconnect.pm:323
-#: network/netconnect.pm:328 printer/printerdrake.pm:99
-#: printer/printerdrake.pm:2111
+#: any.pm:807 install_any.pm:422 network/netconnect.pm:181
+#: network/netconnect.pm:372 network/netconnect.pm:377
+#: network/netconnect.pm:1330 printer/printerdrake.pm:105
+#: printer/printerdrake.pm:2199
#, c-format
msgid "None"
msgstr "כלום"
-#: any.pm:914
+#: any.pm:921
#, c-format
msgid "No sharing"
msgstr "ללא שיתוף"
-#: any.pm:914
+#: any.pm:921
#, c-format
msgid "Allow all users"
msgstr "הרשה לכל המשתמשים"
-#: any.pm:918
+#: any.pm:925
#, c-format
msgid ""
"Would you like to allow users to share some of their directories?\n"
@@ -1297,14 +1330,14 @@ msgstr ""
"\n"
"\" התאמה אישית\" תאפשר התאמה לכל משתמש.\n"
-#: any.pm:930
+#: any.pm:937
#, c-format
msgid ""
"NFS: the traditional Unix file sharing system, with less support on Mac and "
"Windows."
msgstr ""
-#: any.pm:933
+#: any.pm:940
#, c-format
msgid ""
"SMB: a file sharing system used by Windows, Mac OS X and many modern Linux "
@@ -1313,28 +1346,28 @@ msgstr ""
"SMB: מערכת שיתוף קבצים הנמצאת בשימוש בחלונות, Mac OS X ומערכות לינוקס "
"מודרניות רבות."
-#: any.pm:941
+#: any.pm:948
#, c-format
msgid ""
"You can export using NFS or SMB. Please select which you would like to use."
msgstr "ניתן לייצא בעזרת NFS או SMB. עליך לבחור במה להשתמש."
-#: any.pm:966
+#: any.pm:973
#, c-format
msgid "Launch userdrake"
msgstr "הפעלת userdrake"
-#: any.pm:966 printer/printerdrake.pm:3802 printer/printerdrake.pm:3805
-#: printer/printerdrake.pm:3806 printer/printerdrake.pm:3807
-#: printer/printerdrake.pm:5036 standalone/drakTermServ:294
-#: standalone/drakbackup:4089 standalone/drakbug:126 standalone/drakfont:499
-#: standalone/drakfont:595 standalone/net_monitor:123
+#: any.pm:973 printer/printerdrake.pm:3900 printer/printerdrake.pm:3903
+#: printer/printerdrake.pm:3904 printer/printerdrake.pm:3905
+#: printer/printerdrake.pm:5162 standalone/drakTermServ:294
+#: standalone/drakbackup:4096 standalone/drakbug:126 standalone/drakfont:497
+#: standalone/drakroam:234 standalone/net_monitor:123
#: standalone/printerdrake:547
#, c-format
msgid "Close"
msgstr "סגור"
-#: any.pm:968
+#: any.pm:975
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
@@ -1343,197 +1376,197 @@ msgstr ""
"השיתוף לכל משתמש, משתמש בהגדרתקבוצה \"שיתוף-קבצים\".\n"
"ביכולתך להשתמש בעורך המשתמשים כדי להוסיף משתמשים לקבוצה זו."
-#: authentication.pm:16
+#: authentication.pm:24
#, c-format
msgid "Local file"
msgstr "קובץ מקומי"
-#: authentication.pm:17
+#: authentication.pm:25
#, c-format
msgid "LDAP"
msgstr "LDAP"
-#: authentication.pm:18
+#: authentication.pm:26
#, c-format
msgid "NIS"
msgstr "NIS"
-#: authentication.pm:19
+#: authentication.pm:27
#, c-format
msgid "Smart Card"
msgstr "כרטיס חכם"
-#: authentication.pm:20 authentication.pm:148
+#: authentication.pm:28 authentication.pm:153
#, c-format
msgid "Windows Domain"
msgstr "Windows Domain"
-#: authentication.pm:21
+#: authentication.pm:29
#, c-format
msgid "Active Directory with SFU"
msgstr "Active Directory עם SFU"
-#: authentication.pm:22
+#: authentication.pm:30
#, c-format
msgid "Active Directory with Winbind"
msgstr "Active Directory עם Winbind"
-#: authentication.pm:51
+#: authentication.pm:56
#, c-format
msgid "Local file:"
msgstr "קובץ מקומי:"
-#: authentication.pm:51
+#: authentication.pm:56
#, c-format
msgid ""
"Use local for all authentication and information user tell in local file"
msgstr ""
-#: authentication.pm:52
+#: authentication.pm:57
#, c-format
msgid "LDAP:"
msgstr "LDAP:"
-#: authentication.pm:52
+#: authentication.pm:57
#, c-format
msgid ""
"Tells your computer to use LDAP for some or all authentication. LDAP "
"consolidates certain types of information within your organization."
msgstr ""
-#: authentication.pm:53
+#: authentication.pm:58
#, c-format
msgid "NIS:"
msgstr "NIS:"
-#: authentication.pm:53
+#: authentication.pm:58
#, c-format
msgid ""
"Allows you to run a group of computers in the same Network Information "
"Service domain with a common password and group file."
msgstr ""
-#: authentication.pm:54
+#: authentication.pm:59
#, c-format
msgid "Windows Domain:"
msgstr "Windows Domain:"
-#: authentication.pm:54
+#: authentication.pm:59
#, c-format
msgid ""
"Winbind allows the system to retrieve information and authenticate users in "
"a Windows domain."
msgstr ""
-#: authentication.pm:55
+#: authentication.pm:60
#, c-format
msgid "Active Directory with SFU:"
msgstr "מדריך Active Directory עם SFU:"
-#: authentication.pm:55 authentication.pm:56
+#: authentication.pm:60 authentication.pm:61
#, c-format
msgid ""
"Kerberos is a secure system for providing network authentication services."
msgstr ""
-#: authentication.pm:56
+#: authentication.pm:61
#, c-format
msgid "Active Directory with Winbind:"
msgstr "מדריך Active Directory עם Winbind:"
-#: authentication.pm:81
+#: authentication.pm:86
#, c-format
msgid "Authentication LDAP"
msgstr ""
-#: authentication.pm:82
+#: authentication.pm:87
#, c-format
msgid "LDAP Base dn"
msgstr ""
-#: authentication.pm:83 share/compssUsers.pl:101
+#: authentication.pm:88 share/compssUsers.pl:101
#, c-format
msgid "LDAP Server"
msgstr "שרת LDAP"
-#: authentication.pm:96 fsedit.pm:21
+#: authentication.pm:101 fsedit.pm:21
#, c-format
msgid "simple"
msgstr "פשוט"
-#: authentication.pm:97
+#: authentication.pm:102
#, c-format
msgid "TLS"
msgstr "TLS"
-#: authentication.pm:98
+#: authentication.pm:103
#, c-format
msgid "SSL"
msgstr "SSL"
-#: authentication.pm:99
+#: authentication.pm:104
#, c-format
msgid "security layout (SASL/Kerberos)"
msgstr "שיטת אבטחה (SASL/Kerberos)"
-#: authentication.pm:106 authentication.pm:144
+#: authentication.pm:111 authentication.pm:149
#, c-format
msgid "Authentication Active Directory"
msgstr ""
-#: authentication.pm:107 authentication.pm:146 diskdrake/smbnfs_gtk.pm:181
+#: authentication.pm:112 authentication.pm:151 diskdrake/smbnfs_gtk.pm:181
#, c-format
msgid "Domain"
msgstr "מתחם"
-#: authentication.pm:109 diskdrake/dav.pm:63 help.pm:146
-#: printer/printerdrake.pm:135 share/compssUsers.pl:81
+#: authentication.pm:114 diskdrake/dav.pm:63 help.pm:146
+#: printer/printerdrake.pm:141 share/compssUsers.pl:81
#: standalone/drakTermServ:269
#, c-format
msgid "Server"
msgstr "שרת"
-#: authentication.pm:110
+#: authentication.pm:115
#, c-format
msgid "LDAP users database"
msgstr "בסיס נתוני משתמשים LDAP"
-#: authentication.pm:111
+#: authentication.pm:116
#, c-format
msgid "Use Anonymous BIND "
msgstr ""
-#: authentication.pm:112
+#: authentication.pm:117
#, c-format
msgid "LDAP user allowed to browse the Active Directory"
msgstr ""
-#: authentication.pm:113
+#: authentication.pm:118
#, c-format
msgid "Password for user"
msgstr "סיסמה עבור המשתמש"
-#: authentication.pm:114
+#: authentication.pm:119
#, c-format
msgid "Encryption"
msgstr "הצפנה"
-#: authentication.pm:125
+#: authentication.pm:130
#, c-format
msgid "Authentication NIS"
msgstr ""
-#: authentication.pm:126
+#: authentication.pm:131
#, c-format
msgid "NIS Domain"
msgstr "מתחם NIS"
-#: authentication.pm:127
+#: authentication.pm:132
#, c-format
msgid "NIS Server"
msgstr "שרת NIS"
-#: authentication.pm:132
+#: authentication.pm:137
#, c-format
msgid ""
"For this to work for a W2K PDC, you will probably need to have the admin "
@@ -1550,70 +1583,70 @@ msgid ""
"good."
msgstr ""
-#: authentication.pm:144
+#: authentication.pm:149
#, c-format
msgid "Authentication Windows Domain"
msgstr "אימות של Windows Domain"
-#: authentication.pm:149
+#: authentication.pm:154
#, c-format
msgid "Domain Admin User Name"
msgstr "שם מהשתמש של מנהל המתחם"
-#: authentication.pm:150
+#: authentication.pm:155
#, c-format
msgid "Domain Admin Password"
msgstr "סיסמת מנהל המתחם"
-#: authentication.pm:151
+#: authentication.pm:156
#, c-format
msgid "Use Idmap for store UID/SID "
msgstr ""
-#: authentication.pm:152
+#: authentication.pm:157
#, c-format
msgid "Default Idmap "
msgstr "ברירת מחדל Idmap "
-#: authentication.pm:165
+#: authentication.pm:171
#, c-format
msgid "Set administrator (root) password and network authentication methods"
msgstr "קביעת סיסמת מנהל (root) ושיטות אימות ברשת"
-#: authentication.pm:166
+#: authentication.pm:172
#, c-format
msgid "Set administrator (root) password"
msgstr "קביעת סיסמת מנהל"
-#: authentication.pm:167 standalone/drakvpn:1125
+#: authentication.pm:173 standalone/drakvpn:1125
#, c-format
msgid "Authentication method"
msgstr "שיטת אימות"
#. -PO: keep this short or else the buttons will not fit in the window
-#: authentication.pm:172 help.pm:722
+#: authentication.pm:178 help.pm:722
#, c-format
msgid "No password"
msgstr "בלי סיסמה"
-#: authentication.pm:178
+#: authentication.pm:184
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr "הסיסמה הזו קצרה מדי (חייבת להכיל לפחות %d אותיות או סימנים)"
-#: authentication.pm:183 network/netconnect.pm:328 network/netconnect.pm:634
-#: standalone/drakauth:23 standalone/drakauth:25 standalone/drakconnect:459
+#: authentication.pm:189 network/netconnect.pm:377 network/netconnect.pm:681
+#: standalone/drakauth:24 standalone/drakauth:26 standalone/drakconnect:492
#, c-format
msgid "Authentication"
msgstr "אימות"
-#: authentication.pm:296
+#: authentication.pm:302
#, c-format
msgid "Can not use broadcast with no NIS domain"
msgstr "לא יכול להשתמש בשידור מתפרץ ללא הגדרת מתחם NIS"
#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
-#: bootloader.pm:728
+#: bootloader.pm:752
#, c-format
msgid ""
"Welcome to the operating system chooser!\n"
@@ -1628,44 +1661,44 @@ msgstr ""
"wait for default boot.\n"
"\n"
-#: bootloader.pm:815
+#: bootloader.pm:839
#, c-format
msgid "LILO with graphical menu"
msgstr "'לילו' עם תפריט גרפי"
-#: bootloader.pm:816
+#: bootloader.pm:840
#, c-format
msgid "LILO with text menu"
msgstr "'לילו' עם תפריט טקסט"
-#: bootloader.pm:817
+#: bootloader.pm:841
#, c-format
msgid "Grub"
msgstr "'גראב'"
-#: bootloader.pm:818
+#: bootloader.pm:842
#, c-format
msgid "Yaboot"
msgstr "Yaboot"
-#: bootloader.pm:881
+#: bootloader.pm:906
#, c-format
msgid "not enough room in /boot"
msgstr "אין מספיק מקום ב-/boot"
-#: bootloader.pm:1295
+#: bootloader.pm:1348
#, c-format
msgid "You can not install the bootloader on a %s partition\n"
msgstr "אי אפשר להתקין את מנהל האתחול על המחיצה %s\n"
-#: bootloader.pm:1340
+#: bootloader.pm:1393
#, c-format
msgid ""
"Your bootloader configuration must be updated because partition has been "
"renumbered"
msgstr "יש צורך בעדכון תצורת טוען המערכת שלך מאחר ושונו מספרי מחיצות"
-#: bootloader.pm:1355
+#: bootloader.pm:1408
#, c-format
msgid ""
"The bootloader can not be installed correctly. You have to boot rescue and "
@@ -1674,155 +1707,239 @@ msgstr ""
"אין אפשרות להתקין את טוען המערכת באופן תקין. עליך להפעיל את המערכת באופן "
"rescue ולבחור \"%s\""
-#: bootloader.pm:1356
+#: bootloader.pm:1409
#, c-format
msgid "Re-install Boot Loader"
msgstr "התקנה חוזרת של מנהל האתחול"
-#: common.pm:125
+#: common.pm:139
#, c-format
msgid "KB"
msgstr "KB"
-#: common.pm:125
+#: common.pm:139
#, c-format
msgid "MB"
msgstr "MB"
-#: common.pm:125
+#: common.pm:139
#, c-format
msgid "GB"
msgstr "GB"
-#: common.pm:133
+#: common.pm:147
#, c-format
msgid "TB"
msgstr "TB"
-#: common.pm:141
+#: common.pm:155
#, c-format
msgid "%d minutes"
msgstr "%d דקות"
-#: common.pm:143
+#: common.pm:157
#, c-format
msgid "1 minute"
msgstr "דקה אחת"
-#: common.pm:145
+#: common.pm:159
#, c-format
msgid "%d seconds"
msgstr "%d שניות"
-#: common.pm:240
+#: common.pm:254
#, c-format
msgid "kdesu missing"
msgstr "חסר kdesu"
-#: common.pm:243
+#: common.pm:257
#, c-format
msgid "consolehelper missing"
msgstr "עוזר-המעטפת חסר (consolehelper)"
-#: crypto.pm:14 crypto.pm:43 lang.pm:202 network/adsl_consts.pm:50
-#: network/adsl_consts.pm:58 network/adsl_consts.pm:66
+#: crypto.pm:14 crypto.pm:49 lang.pm:207 network/adsl_consts.pm:66
+#: network/adsl_consts.pm:75 network/adsl_consts.pm:84
#, c-format
msgid "Austria"
msgstr "אוסטריה"
-#: crypto.pm:15 crypto.pm:34 lang.pm:209 network/adsl_consts.pm:74
-#: network/adsl_consts.pm:82 network/adsl_consts.pm:93
-#: network/adsl_consts.pm:101 network/netconnect.pm:50
+#: crypto.pm:15 crypto.pm:48 lang.pm:208 standalone/drakxtv:48
+#, c-format
+msgid "Australia"
+msgstr "אוסטרליה"
+
+#: crypto.pm:16 crypto.pm:50 lang.pm:214 network/adsl_consts.pm:93
+#: network/adsl_consts.pm:102 network/adsl_consts.pm:114
+#: network/adsl_consts.pm:123 network/netconnect.pm:51
#, c-format
msgid "Belgium"
msgstr "בלגיה"
-#: crypto.pm:16 lang.pm:230 network/adsl_consts.pm:780
-#: network/adsl_consts.pm:788 network/adsl_consts.pm:798
+#: crypto.pm:17 crypto.pm:51 lang.pm:223 network/adsl_consts.pm:132
+#: network/adsl_consts.pm:143 network/adsl_consts.pm:152
+#: network/adsl_consts.pm:161
+#, c-format
+msgid "Brazil"
+msgstr "ברזיל"
+
+#: crypto.pm:18 crypto.pm:52 lang.pm:230
+#, c-format
+msgid "Canada"
+msgstr "קנדה"
+
+#: crypto.pm:19 crypto.pm:75 lang.pm:235 network/adsl_consts.pm:881
+#: network/adsl_consts.pm:890 network/adsl_consts.pm:901
#, c-format
msgid "Switzerland"
msgstr "שוייץ"
-#: crypto.pm:17 lang.pm:237
+#: crypto.pm:20 lang.pm:242
#, c-format
msgid "Costa Rica"
msgstr "קוסטה ריקה"
-#: crypto.pm:18 crypto.pm:35 lang.pm:243 network/adsl_consts.pm:319
+#: crypto.pm:21 crypto.pm:53 lang.pm:248 network/adsl_consts.pm:368
#, c-format
msgid "Czech Republic"
msgstr "הרפובליקה הצ'כית"
-#: crypto.pm:19 crypto.pm:36 lang.pm:244 network/adsl_consts.pm:437
-#: network/adsl_consts.pm:445
+#: crypto.pm:22 crypto.pm:58 lang.pm:249 network/adsl_consts.pm:499
+#: network/adsl_consts.pm:508
#, c-format
msgid "Germany"
msgstr "גרמניה"
-#: crypto.pm:20 crypto.pm:33 lang.pm:262 network/adsl_consts.pm:343
-#: network/adsl_consts.pm:354 network/adsl_consts.pm:365
-#: network/adsl_consts.pm:375 network/adsl_consts.pm:385
-#: network/adsl_consts.pm:396 network/adsl_consts.pm:407
-#: network/adsl_consts.pm:417 network/adsl_consts.pm:427
-#: network/netconnect.pm:47
+#: crypto.pm:23 crypto.pm:54 lang.pm:251 network/adsl_consts.pm:378
+#, c-format
+msgid "Denmark"
+msgstr "דנמרק"
+
+#: crypto.pm:24 crypto.pm:55 lang.pm:256
+#, c-format
+msgid "Estonia"
+msgstr "אסטוניה"
+
+#: crypto.pm:25 crypto.pm:73 lang.pm:260 network/adsl_consts.pm:749
+#: network/adsl_consts.pm:760 network/adsl_consts.pm:771
+#: network/adsl_consts.pm:782 network/adsl_consts.pm:791
+#: network/adsl_consts.pm:800 network/adsl_consts.pm:809
+#: network/adsl_consts.pm:818 network/adsl_consts.pm:827
+#: network/adsl_consts.pm:836 network/adsl_consts.pm:845
+#: network/adsl_consts.pm:854 network/adsl_consts.pm:863
+#, c-format
+msgid "Spain"
+msgstr "ספרד"
+
+#: crypto.pm:26 crypto.pm:56 lang.pm:262 network/adsl_consts.pm:387
+#, c-format
+msgid "Finland"
+msgstr "פינלנד"
+
+#: crypto.pm:27 crypto.pm:57 lang.pm:267 network/adsl_consts.pm:396
+#: network/adsl_consts.pm:408 network/adsl_consts.pm:420
+#: network/adsl_consts.pm:431 network/adsl_consts.pm:442
+#: network/adsl_consts.pm:454 network/adsl_consts.pm:466
+#: network/adsl_consts.pm:477 network/adsl_consts.pm:488
+#: network/netconnect.pm:48
#, c-format
msgid "France"
msgstr "צרפת"
-#: crypto.pm:21 crypto.pm:37 lang.pm:275 network/adsl_consts.pm:455
+#: crypto.pm:28 crypto.pm:59 lang.pm:280 network/adsl_consts.pm:519
#, c-format
msgid "Greece"
msgstr "יוון"
-#: crypto.pm:22 lang.pm:286 network/adsl_consts.pm:463
+#: crypto.pm:29 crypto.pm:60 lang.pm:291 network/adsl_consts.pm:528
#, c-format
msgid "Hungary"
msgstr "הונגריה"
-#: crypto.pm:23 crypto.pm:42 lang.pm:295 network/adsl_consts.pm:489
-#: network/adsl_consts.pm:499 network/adsl_consts.pm:509
-#: network/adsl_consts.pm:517 network/netconnect.pm:49 standalone/drakxtv:47
+#: crypto.pm:30 crypto.pm:61 lang.pm:293 network/adsl_consts.pm:537
+#: standalone/drakxtv:47
+#, c-format
+msgid "Ireland"
+msgstr "אירלנד"
+
+#: crypto.pm:31 crypto.pm:62 lang.pm:294 network/adsl_consts.pm:546
+#, c-format
+msgid "Israel"
+msgstr "ישראל"
+
+#: crypto.pm:32 crypto.pm:63 lang.pm:300 network/adsl_consts.pm:557
+#: network/adsl_consts.pm:569 network/adsl_consts.pm:580
+#: network/adsl_consts.pm:589 network/netconnect.pm:50 standalone/drakxtv:47
#, c-format
msgid "Italy"
msgstr "איטליה"
-#: crypto.pm:24 crypto.pm:41 lang.pm:347 network/adsl_consts.pm:545
-#: network/adsl_consts.pm:553 network/adsl_consts.pm:561
-#: network/adsl_consts.pm:569 network/netconnect.pm:48
+#: crypto.pm:33 crypto.pm:64 lang.pm:303
+#, c-format
+msgid "Japan"
+msgstr "יפן"
+
+#: crypto.pm:34 crypto.pm:65 lang.pm:352 network/adsl_consts.pm:620
+#: network/adsl_consts.pm:629 network/adsl_consts.pm:638
+#: network/adsl_consts.pm:647 network/netconnect.pm:49
#, c-format
msgid "Netherlands"
msgstr "הולנד"
-#: crypto.pm:25 crypto.pm:38 lang.pm:348 network/adsl_consts.pm:577
-#: network/adsl_consts.pm:582 network/adsl_consts.pm:587
-#: network/adsl_consts.pm:592 network/adsl_consts.pm:597
-#: network/adsl_consts.pm:602 network/adsl_consts.pm:607
+#: crypto.pm:35 crypto.pm:67 lang.pm:353 network/adsl_consts.pm:656
+#: network/adsl_consts.pm:661 network/adsl_consts.pm:666
+#: network/adsl_consts.pm:671 network/adsl_consts.pm:676
+#: network/adsl_consts.pm:681 network/adsl_consts.pm:686
#, c-format
msgid "Norway"
msgstr "נורווגיה"
-#: crypto.pm:26 lang.pm:360 network/adsl_consts.pm:614
-#: network/adsl_consts.pm:624
+#: crypto.pm:36 crypto.pm:66 lang.pm:357
+#, c-format
+msgid "New Zealand"
+msgstr "ניו-זילנד"
+
+#: crypto.pm:37 crypto.pm:68 lang.pm:365 network/adsl_consts.pm:693
+#: network/adsl_consts.pm:704
#, c-format
msgid "Poland"
msgstr "פולין"
-#: crypto.pm:27 crypto.pm:39 lang.pm:377 network/adsl_consts.pm:772
+#: crypto.pm:38 crypto.pm:69 lang.pm:370 network/adsl_consts.pm:716
+#, c-format
+msgid "Portugal"
+msgstr "פורטוגל"
+
+#: crypto.pm:39 crypto.pm:70 lang.pm:376 network/adsl_consts.pm:725
+#, c-format
+msgid "Russia"
+msgstr "רוסיה"
+
+#: crypto.pm:40 crypto.pm:74 lang.pm:382 network/adsl_consts.pm:872
#, c-format
msgid "Sweden"
msgstr "שבדיה"
-#: crypto.pm:28 lang.pm:382
+#: crypto.pm:41 crypto.pm:71 lang.pm:387
#, c-format
msgid "Slovakia"
msgstr "סלובקיה"
-#: crypto.pm:29 lang.pm:406
+#: crypto.pm:42 crypto.pm:77 lang.pm:401 network/adsl_consts.pm:910
+#, c-format
+msgid "Thailand"
+msgstr "תאילנד"
+
+#: crypto.pm:43 crypto.pm:76 lang.pm:411
#, c-format
msgid "Taiwan"
msgstr "טאיוואן"
-#: crypto.pm:40 crypto.pm:75 lang.pm:411 network/netconnect.pm:51
+#: crypto.pm:44 crypto.pm:72 lang.pm:430 standalone/drakxtv:49
+#, c-format
+msgid "South Africa"
+msgstr "דרום אפריקה"
+
+#: crypto.pm:78 crypto.pm:108 lang.pm:416 network/netconnect.pm:52
#, c-format
msgid "United States"
msgstr "ארצות הברית"
@@ -1845,18 +1962,18 @@ msgstr ""
msgid "New"
msgstr "חדש"
-#: diskdrake/dav.pm:61 diskdrake/interactive.pm:443 diskdrake/smbnfs_gtk.pm:75
+#: diskdrake/dav.pm:61 diskdrake/interactive.pm:451 diskdrake/smbnfs_gtk.pm:75
#, c-format
msgid "Unmount"
msgstr "ניתוק"
-#: diskdrake/dav.pm:62 diskdrake/interactive.pm:440 diskdrake/smbnfs_gtk.pm:76
+#: diskdrake/dav.pm:62 diskdrake/interactive.pm:448 diskdrake/smbnfs_gtk.pm:76
#, c-format
msgid "Mount"
msgstr "עיגון"
-#: diskdrake/dav.pm:64 diskdrake/interactive.pm:435
-#: diskdrake/interactive.pm:653 diskdrake/interactive.pm:672
+#: diskdrake/dav.pm:64 diskdrake/interactive.pm:443
+#: diskdrake/interactive.pm:667 diskdrake/interactive.pm:686
#: diskdrake/removable.pm:23 diskdrake/smbnfs_gtk.pm:79
#, c-format
msgid "Mount point"
@@ -1877,13 +1994,13 @@ msgstr "שם האתר חייב להתחיל בhttp:// או בhttps://"
msgid "Server: "
msgstr "שרת:"
-#: diskdrake/dav.pm:110 diskdrake/interactive.pm:504
-#: diskdrake/interactive.pm:1166 diskdrake/interactive.pm:1241
+#: diskdrake/dav.pm:110 diskdrake/interactive.pm:518
+#: diskdrake/interactive.pm:1184 diskdrake/interactive.pm:1259
#, c-format
msgid "Mount point: "
msgstr "נקודת עיגון: "
-#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1248
+#: diskdrake/dav.pm:111 diskdrake/interactive.pm:1266
#, c-format
msgid "Options: %s"
msgstr "אפשרויות: %s"
@@ -1930,8 +2047,8 @@ msgstr ""
msgid "Please click on a partition"
msgstr "עליך לבחור מחיצה"
-#: diskdrake/hd_gtk.pm:208 diskdrake/smbnfs_gtk.pm:63 install_steps_gtk.pm:482
-#: standalone/drakbackup:2943 standalone/drakbackup:3003
+#: diskdrake/hd_gtk.pm:208 diskdrake/smbnfs_gtk.pm:63 install_steps_gtk.pm:486
+#: standalone/drakbackup:2951 standalone/drakbackup:3011
#, c-format
msgid "Details"
msgstr "פרטים"
@@ -1971,13 +2088,7 @@ msgstr "HFS"
msgid "Windows"
msgstr "חלונות"
-#: diskdrake/hd_gtk.pm:339 install_steps_gtk.pm:284 mouse.pm:168
-#: services.pm:162 standalone/drakbackup:1609 standalone/drakperm:250
-#, c-format
-msgid "Other"
-msgstr "אחר"
-
-#: diskdrake/hd_gtk.pm:339 diskdrake/interactive.pm:1181
+#: diskdrake/hd_gtk.pm:339 diskdrake/interactive.pm:1199
#, c-format
msgid "Empty"
msgstr "ריק"
@@ -1992,21 +2103,21 @@ msgstr "סוגי מערכות קבצים:"
msgid "Use ``%s'' instead"
msgstr "השתמש ב''%s'' במקום"
-#: diskdrake/hd_gtk.pm:360 diskdrake/interactive.pm:459
+#: diskdrake/hd_gtk.pm:360 diskdrake/interactive.pm:467
#, c-format
msgid "Create"
msgstr "יצירה"
#: diskdrake/hd_gtk.pm:360 diskdrake/hd_gtk.pm:368
-#: diskdrake/interactive.pm:436 diskdrake/interactive.pm:606
+#: diskdrake/interactive.pm:444 diskdrake/interactive.pm:620
#: diskdrake/removable.pm:25 diskdrake/removable.pm:48
-#: standalone/harddrake2:106 standalone/harddrake2:115
+#: standalone/harddrake2:107 standalone/harddrake2:116
#, c-format
msgid "Type"
msgstr "סוג"
#. -PO: "Delete" is a button text and the translation has to be AS SHORT AS POSSIBLE
-#: diskdrake/hd_gtk.pm:362 diskdrake/interactive.pm:444
+#: diskdrake/hd_gtk.pm:362 diskdrake/interactive.pm:452
#: standalone/drakperm:124 standalone/printerdrake:235
#, c-format
msgid "Delete"
@@ -2138,37 +2249,37 @@ msgstr ""
msgid "Supermount except for CDROM drives"
msgstr ""
-#: diskdrake/interactive.pm:359 help.pm:530
+#: diskdrake/interactive.pm:365 help.pm:530
#, c-format
msgid "Save partition table"
msgstr "שמור את טבלת המחיצות"
-#: diskdrake/interactive.pm:360 help.pm:530
+#: diskdrake/interactive.pm:366 help.pm:530
#, c-format
msgid "Restore partition table"
msgstr "שחזר את טבלת המחיצות"
-#: diskdrake/interactive.pm:361 help.pm:530
+#: diskdrake/interactive.pm:367 help.pm:530
#, c-format
msgid "Rescue partition table"
msgstr "הצל את טבלת המחיצות"
-#: diskdrake/interactive.pm:363 help.pm:530
+#: diskdrake/interactive.pm:369 help.pm:530
#, c-format
msgid "Reload partition table"
msgstr "טען מחדש את טבלת המחיצות"
-#: diskdrake/interactive.pm:365
+#: diskdrake/interactive.pm:371
#, c-format
msgid "Removable media automounting"
msgstr "עיגון אוטומטי של התקן-נשלף"
-#: diskdrake/interactive.pm:376 diskdrake/interactive.pm:402
+#: diskdrake/interactive.pm:384 diskdrake/interactive.pm:410
#, c-format
msgid "Select file"
msgstr "יש לבחור קובץ"
-#: diskdrake/interactive.pm:388
+#: diskdrake/interactive.pm:396
#, c-format
msgid ""
"The backup partition table has not the same size\n"
@@ -2177,87 +2288,87 @@ msgstr ""
"גיבוי טבלת המחיצות אינה תואמת בגודלה\n"
"האם להמשיך בכל זאת?"
-#: diskdrake/interactive.pm:417
+#: diskdrake/interactive.pm:425
#, c-format
msgid "Trying to rescue partition table"
msgstr "מנסה להציל את טבלת המחיצות"
-#: diskdrake/interactive.pm:423
+#: diskdrake/interactive.pm:431
#, c-format
msgid "Detailed information"
msgstr "מידע מפורט"
-#: diskdrake/interactive.pm:438 diskdrake/interactive.pm:743
+#: diskdrake/interactive.pm:446 diskdrake/interactive.pm:761
#, c-format
msgid "Resize"
msgstr "שנה גודל"
-#: diskdrake/interactive.pm:439
+#: diskdrake/interactive.pm:447
#, c-format
msgid "Format"
msgstr "יצירת מערכת קבצים"
-#: diskdrake/interactive.pm:441
+#: diskdrake/interactive.pm:449
#, c-format
msgid "Add to RAID"
msgstr "הוספה ל-RAID"
-#: diskdrake/interactive.pm:442
+#: diskdrake/interactive.pm:450
#, c-format
msgid "Add to LVM"
msgstr "הוספה ל-LVM"
-#: diskdrake/interactive.pm:445
+#: diskdrake/interactive.pm:453
#, c-format
msgid "Remove from RAID"
msgstr "הסרה מ-RAID"
-#: diskdrake/interactive.pm:446
+#: diskdrake/interactive.pm:454
#, c-format
msgid "Remove from LVM"
msgstr "הסרה מ-LVM"
-#: diskdrake/interactive.pm:447
+#: diskdrake/interactive.pm:455
#, c-format
msgid "Modify RAID"
msgstr "שינוי RAID"
-#: diskdrake/interactive.pm:448
+#: diskdrake/interactive.pm:456
#, c-format
msgid "Use for loopback"
msgstr "שימוש כ-loopback"
-#: diskdrake/interactive.pm:497
+#: diskdrake/interactive.pm:511
#, c-format
msgid "Create a new partition"
msgstr "יצרת מחיצה חדשה"
-#: diskdrake/interactive.pm:500
+#: diskdrake/interactive.pm:514
#, c-format
msgid "Start sector: "
msgstr "מקטע התחלה:"
-#: diskdrake/interactive.pm:502 diskdrake/interactive.pm:899
+#: diskdrake/interactive.pm:516 diskdrake/interactive.pm:918
#, c-format
msgid "Size in MB: "
msgstr "גודל ב-MB: "
-#: diskdrake/interactive.pm:503 diskdrake/interactive.pm:900
+#: diskdrake/interactive.pm:517 diskdrake/interactive.pm:919
#, c-format
msgid "Filesystem type: "
msgstr "סוג מערכת קבצים: "
-#: diskdrake/interactive.pm:508
+#: diskdrake/interactive.pm:522
#, c-format
msgid "Preference: "
msgstr "העדפות: "
-#: diskdrake/interactive.pm:511
+#: diskdrake/interactive.pm:525
#, c-format
msgid "Logical volume name "
msgstr "שם מחיצה לוגית "
-#: diskdrake/interactive.pm:541
+#: diskdrake/interactive.pm:555
#, c-format
msgid ""
"You can not create a new partition\n"
@@ -2268,43 +2379,43 @@ msgstr ""