~elementary-os/ubuntu-package-imports/ubiquity-bionic

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
# THIS FILE IS GENERATED AUTOMATICALLY FROM THE D-I PO MASTER FILES
# The master files can be found under packages/po/
#
# DO NOT MODIFY THIS FILE DIRECTLY: SUCH CHANGES WILL BE LOST
#
# translation of debian-installer_packages_po_sublevel1_he.po to Hebrew
# Hebrew messages for debian-installer.
# Copyright (C) 2003 Software in the Public Interest, Inc.
# This file is distributed under the same license as debian-installer.
#
#
#
#
# Translations from iso-codes:
#     Translations taken from ICU SVN on 2007-09-09
#   Translations from KDE:
#
#   Translations taken from KDE:
#
#
# Amit Dovev <debian.translator@gmail.com>, 2007.
# Meital Bourvine <meitalbourvine@gmail.com>, 2007.
# Omer Zak <w1@zak.co.il>, 2008, 2010, 2012.
# Lior Kaplan <kaplan@debian.org>, 2004-2007, 2008, 2010, 2011.
#   Tobias Quathamer <toddy@debian.org>, 2007.
#   Free Software Foundation, Inc., 2002,2004.
#   Alastair McKinstry <mckinstry@computer.org>, 2002.
#   Meni Livne <livne@kde.org>, 2000.
#   Free Software Foundation, Inc., 2002,2003.
#   - Meni Livne <livne@kde.org>, 2000.
#   Lior Kaplan <kaplan@debian.org>, 2005,2006, 2007, 2008, 2010.
#   Meital Bourvine <meitalbourvine@gmail.com>, 2007.
msgid ""
msgstr ""
"Project-Id-Version: debian-installer_packages_po_sublevel1_he\n"
"Report-Msgid-Bugs-To: netcfg@packages.debian.org\n"
"POT-Creation-Date: 2012-11-03 22:02+0000\n"
"PO-Revision-Date: 2012-09-18 16:54+0300\n"
"Last-Translator: Omer Zak <w1@zak.co.il>\n"
"Language-Team: Hebrew <debian-hebrew-common@lists.alioth.debian.org>\n"
"Language: he\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms:  nplurals=2; plural=(n != 1);\n"

#. Type: boolean
#. Description
#. IPv6
#. :sl1:
#: ../netcfg-common.templates:2001
msgid "Auto-configure networking?"
msgstr "הגדרה אוטומטית של הרשת?"

#. Type: boolean
#. Description
#. IPv6
#. :sl1:
#: ../netcfg-common.templates:2001
msgid ""
"Networking can be configured either by entering all the information "
"manually, or by using DHCP (or a variety of IPv6-specific methods) to detect "
"network settings automatically. If you choose to use autoconfiguration and "
"the installer is unable to get a working configuration from the network, you "
"will be given the opportunity to configure the network manually."
msgstr ""
"ניתן להגדיר רשת על ידי הכנסת כל המידע באופן ידני או על ידי שימוש ב-DHCP (או "
"באחת מהשיטות הרבות הזמינות ב-IPv6) לגילוי אוטומטי של הגדרות הרשת. אם תבחר "
"להשתמש בשיטה לגילוי אוטומטי ותוכנית ההתקנה אינה מצליחה לקבל מהרשת הגדרות רשת "
"שעובדות, תקבל הזדמנות להגדיר את הרשת בצורה ידנית."

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-common.templates:3001
msgid "Domain name:"
msgstr "שם מתחם:"

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-common.templates:3001
msgid ""
"The domain name is the part of your Internet address to the right of your "
"host name.  It is often something that ends in .com, .net, .edu, or .org.  "
"If you are setting up a home network, you can make something up, but make "
"sure you use the same domain name on all your computers."
msgstr ""
"שם המתחם הוא חלק מכתובת האינטרנט שלך מימין לשם השרת שלך. לשם זה יש לעיתים "
"קרובות סיומת כגון .com, .co.il, .org, .org.il,  .net, .net.il, .edu, .ac.il "
"ועוד. אם אתה מגדיר רשת ביתית, תוכל להמציא שם כלשהו, אבל שים לב שאתה משתמש "
"באותו שם מתחם בכל המחשבים ברשת שלך."

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-common.templates:4001
msgid "Name server addresses:"
msgstr "כתובות שרת שמות:"

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-common.templates:4001
msgid ""
"The name servers are used to look up host names on the network. Please enter "
"the IP addresses (not host names) of up to 3 name servers, separated by "
"spaces. Do not use commas. The first name server in the list will be the "
"first to be queried. If you don't want to use any name server, just leave "
"this field blank."
msgstr ""
"שרתי שמות משמשים לחיפוש שמות שרתים ברשת. הכנס כתובות IP (לא שם שרת) של עד "
"שלושה שרתי שמות, מופרדים ברווחים. אל תשתמש בפסיקים. שרת השמות הראשון ברשימה "
"יהיה הראשון שתישלח אליו שאילתה. אם אינך רוצה להשתמש בשרת שמות, השאר את השדה "
"ריק."

#. Type: select
#. Description
#. :sl1:
#: ../netcfg-common.templates:5001
msgid "Primary network interface:"
msgstr "ממשק רשת ראשי:"

#. Type: select
#. Description
#. :sl1:
#: ../netcfg-common.templates:5001
msgid ""
"Your system has multiple network interfaces. Choose the one to use as the "
"primary network interface during the installation. If possible, the first "
"connected network interface found has been selected."
msgstr ""
"למערכת שלך יש מספר ממשקי רשת. בחר אחד מהם כממשק הראשי בזמן ההתקנה. אם הדבר "
"אפשרי, ממשק הרשת המחובר הראשון שזוהה נבחר."

#. Type: string
#. Description
#. :sl2:
#. Type: string
#. Description
#. :sl1:
#: ../netcfg-common.templates:6001 ../netcfg-common.templates:7001
msgid "Wireless ESSID for ${iface}:"
msgstr "ESSID אלחוטי ל-${iface}:"

#. Type: string
#. Description
#. :sl2:
#: ../netcfg-common.templates:6001
msgid ""
"${iface} is a wireless network interface. Please enter the name (the ESSID) "
"of the wireless network you would like ${iface} to use. If you would like to "
"use any available network, leave this field blank."
msgstr ""
"${iface} הינו ממשק רשת אלחוטי. הכנס את השם (ה-ESSID) של הרשת האלחוטית שלך "
"שבה אתה רוצה ש-${iface} ישתמש. אם אתה רוצה להשתמש ברשת זמינה כלשהי, השאר את "
"השדה ריק."

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-common.templates:7001
msgid "Attempting to find an available wireless network failed."
msgstr "הניסיון למציאת רשת אלחוטית זמינה נכשל."

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-common.templates:7001
msgid ""
"${iface} is a wireless network interface. Please enter the name (the ESSID) "
"of the wireless network you would like ${iface} to use. To connect to any "
"available network, leave this field blank."
msgstr ""
"${iface} הינו ממשק רשת אלחוטי. יש להכניס את השם (ה-ESSID) של הרשת האלחוטית "
"שלך שברצונך ש-${iface} ישתמש. כדי להתחבר לכל רשת זמינה, יש להשאיר את השדה "
"ריק."

#. Type: select
#. Choices
#: ../netcfg-common.templates:8001
msgid "WEP/Open Network"
msgstr "WEP/רשת פתוחה"

#. Type: select
#. Choices
#: ../netcfg-common.templates:8001
msgid "WPA/WPA2 PSK"
msgstr "מפתח משותף מראש (PSK) מסוג WPA/WPA2"

#. Type: select
#. Description
#. :sl2:
#: ../netcfg-common.templates:8002
msgid "Wireless network type for ${iface}:"
msgstr "סוג רשת אלחוטית ל-${iface}:"

#. Type: select
#. Description
#. :sl2:
#: ../netcfg-common.templates:8002
msgid ""
"Choose WEP/Open if the network is open or secured with WEP. Choose WPA/WPA2 "
"if the network is protected with WPA/WPA2 PSK (Pre-Shared Key)."
msgstr ""
"בחר WEB/Open אם הרשת פתוחה או מאובטחת על ידי WEP.  בחר WPA/WPA2 אם הרשת "
"מוגנת על ידי WPA/WPA2 PSK (מפתח ששותף מראש)."

#. Type: string
#. Description
#. :sl2:
#: ../netcfg-common.templates:9001
msgid "WEP key for wireless device ${iface}:"
msgstr "מפתח WEP להתקן אלחוטי ${iface}:"

#. Type: string
#. Description
#. :sl2:
#: ../netcfg-common.templates:9001
msgid ""
"If applicable, please enter the WEP security key for the wireless device "
"${iface}. There are two ways to do this:"
msgstr ""
"אם אפשרי, הכנס את מפתח האבטחה WEP של ההתקן האלחוטי ${iface}. יש שתי דרכים "
"לעשות זאת:"

#. Type: string
#. Description
#. :sl2:
#: ../netcfg-common.templates:9001
msgid ""
"If your WEP key is in the format 'nnnn-nnnn-nn', 'nn:nn:nn:nn:nn:nn:nn:nn', "
"or 'nnnnnnnn', where n is a number, just enter it as it is into this field."
msgstr ""
"אם מפתח ה-WEP שלך הוא במבנה של 'nnnn-nnnn-nn', 'nn:nn:nn:nn:nn:nn:nn:nn', או "
"'nnnnnnnn', כאשר n היא ספרה, הכנס את המפתח כמות שהוא לתוך השדה הזה."

#. Type: string
#. Description
#. :sl2:
#: ../netcfg-common.templates:9001
msgid ""
"If your WEP key is in the format of a passphrase, prefix it with "
"'s:' (without quotes)."
msgstr ""
"אם מפתח ה-WEP שלך הוא במבנה של ביטוי המשמש כסיסמה (passphrase), הוסף אליו את "
"התחילית 's:' (ללא המרכאות)."

#. Type: string
#. Description
#. :sl2:
#: ../netcfg-common.templates:9001
msgid ""
"Of course, if there is no WEP key for your wireless network, leave this "
"field blank."
msgstr "כמובן שאם אין מפתח WEP לרשת האלחוטית שלך, השאר את השדה ריק."

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:10001
msgid "Invalid WEP key"
msgstr "מפתח WEP לא תקין"

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:10001
msgid ""
"The WEP key '${wepkey}' is invalid. Please refer to the instructions on the "
"next screen carefully on how to enter your WEP key correctly, and try again."
msgstr ""
"מפתח ה-WEP '${wepkey}' אינו תקין. קרא היטב את ההוראות במסך הבא כיצד להכניס "
"את מפתח ה-WEP שלך באופן תקין, לאחר מכן, נסה שוב."

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:11001
msgid "Invalid passphrase"
msgstr "משפט סיסמה אינו חוקי"

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:11001
msgid ""
"The WPA/WPA2 PSK passphrase was either too long (more than 64 characters) or "
"too short (less than 8 characters)."
msgstr ""
"הביטוי המשמש כסיסמה (passphrase) ששימש כ-WPA/WPA2 PSK הינו או ארוך מדי (יותר "
"מ-64 תווים) או קצר מדי (פחות מ-8 תווים)."

#. Type: string
#. Description
#. :sl2:
#: ../netcfg-common.templates:12001
msgid "WPA/WPA2 passphrase for wireless device ${iface}:"
msgstr "משפט סיסמה WPA/WPA2 להתקן אלחוטי ${iface}:"

#. Type: string
#. Description
#. :sl2:
#: ../netcfg-common.templates:12001
msgid ""
"Enter the passphrase for WPA/WPA2 PSK authentication. This should be the "
"passphrase defined for the wireless network you are trying to use."
msgstr ""
"הכנס את הביטוי המשמש כסיסמה (passphrase) לאימות WPA/WPA2 PSK. ביטוי זה אמור "
"להיות הביטוי שהוגדר עבור הרשת האלחוטית שהינך מנסה להשתמש בה."

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:13001
msgid "Invalid ESSID"
msgstr "ESSID לא תקין"

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:13001
msgid ""
"The ESSID \"${essid}\" is invalid. ESSIDs may only be up to ${max_essid_len} "
"characters, but may contain all kinds of characters."
msgstr ""
"ה-ESSID \"${essid}\" אינו תקין. ESSID-ים מוגבלים לעד ${max_essid_len} תווים, "
"אך יכולים להכיל תווים מסוגים רבים."

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:14001
msgid "Attempting to exchange keys with the access point..."
msgstr "מנסה להחליף מפתחות עם נקודת גישה..."

#. Type: text
#. Description
#. :sl2:
#. Type: text
#. Description
#. :sl1:
#: ../netcfg-common.templates:15001 ../netcfg-dhcp.templates:3001
msgid "This may take some time."
msgstr "פעולה זאת עלולה לדרוש זמן רב."

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:16001
msgid "WPA/WPA2 connection succeeded"
msgstr "חיבור WPA/WPA2 הצליח"

#. Type: note
#. Description
#. :sl2:
#: ../netcfg-common.templates:17001
msgid "Failure of key exchange and association"
msgstr "כשלון בהחלפת מפתחות ושיוכם"

#. Type: note
#. Description
#. :sl2:
#: ../netcfg-common.templates:17001
msgid ""
"The exchange of keys and association with the access point failed. Please "
"check the WPA/WPA2 parameters you provided."
msgstr ""
"החלפת מפתחות ושיוכם לנקודת הגישה נכשלו. נא לבדוק את משתני WPA/WPA2 שסופקו."

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-common.templates:18001
msgid "Hostname:"
msgstr "שם מחשב:"

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-common.templates:18001
msgid "Please enter the hostname for this system."
msgstr "נא להכניס את שם המחשב של המערכת הזו."

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-common.templates:18001
msgid ""
"The hostname is a single word that identifies your system to the network. If "
"you don't know what your hostname should be, consult your network "
"administrator. If you are setting up your own home network, you can make "
"something up here."
msgstr ""
"שם המחשב הוא מילה אחת שמשמשת לזיהוי המערכת שלך ברשת. אם אינך יודע מה צריך "
"להיות שם המחשב שלך, התייעץ עם מנהל הרשת שלך. אם אתה מגדיר לעצמך רשת ביתית, "
"אתה יכול להמציא שם כלשהו."

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:20001
msgid "Invalid hostname"
msgstr "שם מחשב לא תקין"

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:20001
msgid "The name \"${hostname}\" is invalid."
msgstr "השם \"${hostname}\" אינו תקין."

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:20001
msgid ""
"A valid hostname may contain only the numbers 0-9, upper and lowercase "
"letters (A-Z and a-z), and the minus sign. It must be at most "
"${maxhostnamelen} characters long, and may not begin or end with a minus "
"sign."
msgstr ""
"שם מחשב תקין יכול להכיל רק מספרים (0-9), אותיות (A-Z וגם a-z) וסימן מינוס. "
"השם חייב להיות באורך עד ${maxhostnamelen} תווים, והוא אינו יכול להתחיל או "
"להסתיים בתו מינוס."

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:21001
msgid "Error"
msgstr "שגיאה"

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:21001
msgid ""
"An error occurred and the network configuration process has been aborted. "
"You may retry it from the installation main menu."
msgstr ""
"התרחשה שגיאה ותהליך הגדרת הרשת בוטל. תוכל לנסות ולבצעו מחדש מתוך תפריט "
"ההתקנה הראשי."

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:22001
msgid "No network interfaces detected"
msgstr "לא זוהו ממשקי רשת"

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:22001
msgid ""
"No network interfaces were found. The installation system was unable to find "
"a network device."
msgstr "לא נמצאו ממשקי רשת. מערכת ההתקנה לא מסוגלת למצוא התקן רשת."

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-common.templates:22001
msgid ""
"You may need to load a specific module for your network card, if you have "
"one. For this, go back to the network hardware detection step."
msgstr ""
"ייתכן שתצטרך לטעון מודול ספציפי לכרטיס הרשת שלך, אם יש לך כזה. על מנת לעשות "
"זאת עליך לחזור אחורה לשלב זיהוי חומרת הרשת."

#. Type: note
#. Description
#. A "kill switch" is a physical switch found on some network cards that
#. disables the card.
#. :sl2:
#: ../netcfg-common.templates:23001
msgid "Kill switch enabled on ${iface}"
msgstr "מתג ניטרול אופשר על ${iface}"

#. Type: note
#. Description
#. A "kill switch" is a physical switch found on some network cards that
#. disables the card.
#. :sl2:
#: ../netcfg-common.templates:23001
msgid ""
"${iface} appears to have been disabled by means of a physical \"kill switch"
"\". If you intend to use this interface, please switch it on before "
"continuing."
msgstr ""
"נראה כי ממשק הרשת ${iface} נותק באמצעות \"מתג ניטרול\". אם יש  לך כוונה "
"להשתמש בממשק זה, כדאי להדליק אותו לפני שתמשיך בתהליך ההתקנה."

#. Type: select
#. Choices
#. :sl2:
#. Note to translators : Please keep your translations of each choice
#. below the 65 columns limit (which means 65 characters for most languages)
#. Choices MUST be separated by commas
#. You MUST use standard commas not special commas for your language
#. You MUST NOT use commas inside choices
#: ../netcfg-common.templates:24001
msgid "Infrastructure (Managed) network"
msgstr "רשת מנוהלת"

#. Type: select
#. Choices
#. :sl2:
#. Note to translators : Please keep your translations of each choice
#. below the 65 columns limit (which means 65 characters for most languages)
#. Choices MUST be separated by commas
#. You MUST use standard commas not special commas for your language
#. You MUST NOT use commas inside choices
#: ../netcfg-common.templates:24001
msgid "Ad-hoc network (Peer to peer)"
msgstr "רשת ייעודית (peer to peer)"

#. Type: select
#. Description
#: ../netcfg-common.templates:24002
msgid "Type of wireless network:"
msgstr "סוג הרשת האלחוטית:"

#. Type: select
#. Description
#: ../netcfg-common.templates:24002
msgid ""
"Wireless networks are either managed or ad-hoc. If you use a real access "
"point of some sort, your network is Managed. If another computer is your "
"'access point', then your network may be Ad-hoc."
msgstr ""
"רשתות אלחוטיות יכולות להיות מנוהלות או ייעודיות. אם אתה משתמש בנקודת גישה "
"אמיתית, הרשת שלך היא מנוהלת. אם מחשב אחר מהווה את נקודת הגישה שלך, אז הרשת "
"שלך היא ייעודית."

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:25001
msgid "Wireless network configuration"
msgstr "הגדרת רשת אלחוטית"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:26001
msgid "Searching for wireless access points..."
msgstr "מחפש נקודות גישה אלחוטיות..."

#. Type: text
#. Description
#: ../netcfg-common.templates:29001
msgid "Detecting link on ${interface}; please wait..."
msgstr "בדיקת חיבור על ${interface}, נא להמתין..."

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:30001
msgid "<none>"
msgstr "<none>"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:31001
msgid "Wireless ethernet (802.11x)"
msgstr "Wireless ethernet (802.11x)"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:32001
msgid "wireless"
msgstr "אלחוטי"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:33001
msgid "Ethernet"
msgstr "אתרנט"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:34001
msgid "Token Ring"
msgstr "טבעת אסימונים"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:35001
msgid "USB net"
msgstr "רשת USB"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:37001
msgid "Serial-line IP"
msgstr "Serial-line IP"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:38001
msgid "Parallel-port IP"
msgstr "Parallel-port IP"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:39001
msgid "Point-to-Point Protocol"
msgstr "Point-to-Point Protocol"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:40001
msgid "IPv6-in-IPv4"
msgstr "IPv6-in-IPv4"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:41001
msgid "ISDN Point-to-Point Protocol"
msgstr "ISDN Point-to-Point Protocol"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:42001
msgid "Channel-to-channel"
msgstr "Channel-to-channel"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:43001
msgid "Real channel-to-channel"
msgstr "Real channel-to-channel"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:45001
msgid "Inter-user communication vehicle"
msgstr "Inter-user communication vehicle"

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:46001
msgid "Unknown interface"
msgstr "ממשק לא מוכר"

#. Type: text
#. Description
#. base-installer progress bar item
#. :sl1:
#: ../netcfg-common.templates:47001
msgid "Storing network settings..."
msgstr "שומר הגדרות רשת..."

#. Type: text
#. Description
#. Item in the main menu to select this package
#. :sl1:
#: ../netcfg-common.templates:48001
msgid "Configure the network"
msgstr "הגדרות רשת"

#. Type: string
#. Description
#. :sl3:
#: ../netcfg-common.templates:50001
msgid "Waiting time (in seconds) for link detection:"
msgstr "זמן המתנה (בשניות) לזיהוי חיבור:"

#. Type: string
#. Description
#. :sl3:
#: ../netcfg-common.templates:50001
msgid ""
"Please enter the maximum time you would like to wait for network link "
"detection."
msgstr "נא להכניס את זמן המקסימום שיש לחכות עבור זיהוי חיבור רשת."

#. Type: error
#. Description
#. :sl3:
#: ../netcfg-common.templates:51001
msgid "Invalid network link detection waiting time"
msgstr "זמן לא חוקי להמתנה לזיהוי חיבור רשת"

#. Type: error
#. Description
#. :sl3:
#: ../netcfg-common.templates:51001
msgid ""
"The value you have provided is not valid. The maximum waiting time (in "
"seconds) for network link detection must be a positive integer."
msgstr ""
"הערך שסיפקת אינו תקין. זמן המתנה המקסימלי (בשניות) לזיהוי חיבור רשת חייב "
"להיות מספר שלם חיובי."

#. Type: select
#. Choices
#. Translators: please do not translate the variable essid_list
#. :sl1:
#: ../netcfg-common.templates:52001
msgid "${essid_list} Enter ESSID manually"
msgstr "${essid_list} הכנסת ESSID ידנית"

#. Type: select
#. Description
#. :sl1:
#: ../netcfg-common.templates:52002
msgid "Wireless network:"
msgstr "רשת אלחוטית:"

#. Type: select
#. Description
#. :sl1:
#: ../netcfg-common.templates:52002
msgid "Select the wireless network to use during the installation process."
msgstr "בחירת הרשת האלחוטית לשימוש במהלך תהליך ההתקנה."

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-dhcp.templates:1001
msgid "DHCP hostname:"
msgstr "שם מחשב של שרת DHCP:"

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-dhcp.templates:1001
msgid ""
"You may need to supply a DHCP host name. If you are using a cable modem, you "
"might need to specify an account number here."
msgstr ""
"ייתכן שעליך להכניס שם מחשב של שרת DHCP. אם הינך משתמש במודם כבלים, ייתכן "
"שתצטרך להכניס כאן מספר חשבון."

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-dhcp.templates:1001
msgid "Most other users can just leave this blank."
msgstr "רוב המשתמשים האחרים יכולים להשאיר שדה זה ריק."

#. Type: text
#. Description
#. :sl1:
#: ../netcfg-dhcp.templates:2001
msgid "Configuring the network with DHCP"
msgstr "הגדרת הרשת באמצעות DHCP"

#. Type: text
#. Description
#. :sl1:
#: ../netcfg-dhcp.templates:4001
msgid "Network autoconfiguration has succeeded"
msgstr "הגדרת רשת באופן אוטומטי הצליחה"

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-dhcp.templates:5001
msgid "No DHCP client found"
msgstr "לא נמצא לקוח DHCP"

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-dhcp.templates:5001
msgid "No DHCP client was found. This package requires pump or dhcp-client."
msgstr "לא נמצא לקוח DHCP. החבילה הנוכחית דורשת pump או dhcp-client."

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-dhcp.templates:5001
msgid "The DHCP configuration process has been aborted."
msgstr "תהליך הגדרת של DHCP בוטל."

#. Type: select
#. Choices
#. :sl1:
#. Note to translators : Please keep your translation
#. below a 65 columns limit (which means 65 characters
#. in single-byte languages)
#: ../netcfg-dhcp.templates:6001
msgid "Retry network autoconfiguration"
msgstr "נסה שוב להגדיר רשת באופן אוטומטי"

#. Type: select
#. Choices
#. :sl1:
#. Note to translators : Please keep your translation
#. below a 65 columns limit (which means 65 characters
#. in single-byte languages)
#: ../netcfg-dhcp.templates:6001
msgid "Retry network autoconfiguration with a DHCP hostname"
msgstr "נסה שוב להגדיר את הרשת באופן אוטומטי עם שם מחשב לשרת DHCP"

#. Type: select
#. Choices
#. :sl1:
#. Note to translators : Please keep your translation
#. below a 65 columns limit (which means 65 characters
#. in single-byte languages)
#: ../netcfg-dhcp.templates:6001
msgid "Configure network manually"
msgstr "הגדר את הרשת באופן ידני"

#. Type: select
#. Choices
#. :sl1:
#. Note to translators : Please keep your translation
#. below a 65 columns limit (which means 65 characters
#. in single-byte languages)
#: ../netcfg-dhcp.templates:6001
msgid "Do not configure the network at this time"
msgstr "אל תגדיר רשת בשלב זה"

#. Type: select
#. Description
#. :sl1:
#: ../netcfg-dhcp.templates:6002
msgid "Network configuration method:"
msgstr "שיטת הגדרת רשת:"

#. Type: select
#. Description
#. :sl1:
#: ../netcfg-dhcp.templates:6002
msgid ""
"From here you can choose to retry DHCP network autoconfiguration (which may "
"succeed if your DHCP server takes a long time to respond) or to configure "
"the network manually. Some DHCP servers require a DHCP hostname to be sent "
"by the client, so you can also choose to retry DHCP network "
"autoconfiguration with a hostname that you provide."
msgstr ""
"מנקודה זו תוכל לנסות שוב להגדיר אוטומטית את הרשת שלך בעזרת DHCP (שעשויה "
"להצליח אם לוקח לשרת DHCP שלך הרבה זמן לענות) או להגדיר את הרשת ידנית. חלק "
"משרתי DHCP דורשים שיישלח אליהם שם מחשב ספציפי, לכן תוכל גם לבחור לנסות מחדש "
"הגדרה אוטומטית של הרשת שלך בעזרת DHCP עם שם מחשב שתספק."

#. Type: note
#. Description
#. :sl1:
#: ../netcfg-dhcp.templates:7001
msgid "Network autoconfiguration failed"
msgstr "הגדרת רשת באופן אוטומטי נכשלה"

#. Type: note
#. Description
#. :sl1:
#: ../netcfg-dhcp.templates:7001
msgid ""
"Your network is probably not using the DHCP protocol. Alternatively, the "
"DHCP server may be slow or some network hardware is not working properly."
msgstr ""
"הרשת שלך כנראה לא משתמשת בפרוטוקול DHCP. לחלופין, שרת ה-DHCP שלך עלול להיות "
"איטי, או שחומרת רשת כלשהי אינה עובדת בצורה תקינה."

#. Type: boolean
#. Description
#. :sl2:
#: ../netcfg-dhcp.templates:8001
msgid "Continue without a default route?"
msgstr "להמשיך בלי ניתוב ברירת מחדל?"

#. Type: boolean
#. Description
#. :sl2:
#: ../netcfg-dhcp.templates:8001
msgid ""
"The network autoconfiguration was successful. However, no default route was "
"set: the system does not know how to communicate with hosts on the Internet. "
"This will make it impossible to continue with the installation unless you "
"have the first installation CD-ROM, a 'Netinst' CD-ROM, or packages "
"available on the local network."
msgstr ""
"הגדרת רשת אוטומטית הצליחה. למרות זאת לא נקבע ניתוב ברירת מחדל: המערכת לא "
"יודעת כיצד לתקשר עם מחשבים באינטרנט. ולפיכך, לא ניתן להמשיך בהתקנה אלא אם יש "
"לך את תקליטור ההתקנה הראשון, תקליטור התקנת רשת (Netinst CD), או מאגר חבילות "
"שזמין ברשת המקומית שלך."

#. Type: boolean
#. Description
#. :sl2:
#: ../netcfg-dhcp.templates:8001
msgid ""
"If you are unsure, you should not continue without a default route: contact "
"your local network administrator about this problem."
msgstr ""
"אם אינך בטוח, לא כדאי שתמשיך בלי נתיב ברירת מחדל: צורך קשר עם מנהל הרשת שלך "
"לגבי בעיה זאת."

#. Type: text
#. Description
#. :sl1:
#: ../netcfg-dhcp.templates:9001
msgid "Reconfigure the wireless network"
msgstr "מגדיר מחדש את הרשת האלחוטית"

#. Type: text
#. Description
#. IPv6
#. :sl2:
#. Type: text
#. Description
#. IPv6
#. :sl2:
#: ../netcfg-dhcp.templates:12001 ../netcfg-dhcp.templates:14001
msgid "Attempting IPv6 autoconfiguration..."
msgstr "מנסה להגדיר אוטומטית דרך IPv6..."

#. Type: text
#. Description
#. IPv6
#. :sl2:
#: ../netcfg-dhcp.templates:13001
msgid "Waiting for link-local address..."
msgstr "מחכה לכתובת קישור מקומי (link-local)..."

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-dhcp.templates:16001
msgid "Configuring the network with DHCPv6"
msgstr "הגדרת הרשת באמצעות DHCPv6"

#. Type: string
#. Description
#. IPv6
#. :sl1:
#: ../netcfg-static.templates:1001
msgid "IP address:"
msgstr "כתובת IP:"

#. Type: string
#. Description
#. IPv6
#. :sl1:
#: ../netcfg-static.templates:1001
msgid "The IP address is unique to your computer and may be:"
msgstr "כתובת ה-IP ייחודית למחשבך ויכולה להיות:"

#. Type: string
#. Description
#. IPv6
#. :sl1:
#: ../netcfg-static.templates:1001
msgid ""
" * four numbers separated by periods (IPv4);\n"
" * blocks of hexadecimal characters separated by colons (IPv6)."
msgstr ""
"ארבעה מספרים המופרדים על ידי נקודות (IPv4); בלוקים של תווים הקסדצימליים "
"המופרדים על ידי נקודותיים (IPv6)."

#. Type: string
#. Description
#. IPv6
#. :sl1:
#: ../netcfg-static.templates:1001
msgid "You can also optionally append a CIDR netmask (such as \"/24\")."
msgstr "הינך יכול גם לצרף מסיכת רשת CIDR (כמו ‪\"/24\"‬)."

#. Type: string
#. Description
#. IPv6
#. :sl1:
#: ../netcfg-static.templates:1001
msgid "If you don't know what to use here, consult your network administrator."
msgstr "אם לא ידוע לך מה להכניס כאן, התייעץ עם מנהל הרשת שלך."

#. Type: error
#. Description
#. IPv6
#. :sl2:
#: ../netcfg-static.templates:2001
msgid "Malformed IP address"
msgstr "כתובת IP לא תקינה"

#. Type: error
#. Description
#. IPv6
#. :sl2:
#: ../netcfg-static.templates:2001
msgid ""
"The IP address you provided is malformed. It should be in the form x.x.x.x "
"where each 'x' is no larger than 255 (an IPv4 address), or a sequence of "
"blocks of hexadecimal digits separated by colons (an IPv6 address). Please "
"try again."
msgstr ""
"כתובת ה-IP שספקת אינה תקינה. היא צריכה להיות במבנה של x.x.x.x כאשר כל x הינו "
"מספר שאינו גדול מ‑255 (כתובת IPv4), או רצף של בלוקים של תווים הקסדצימליים "
"המופרדים על ידי נקודותיים (כתובת IPv6). אנא נסה שוב."

#. Type: string
#. Description
#. :sl2:
#: ../netcfg-static.templates:3001
msgid "Point-to-point address:"
msgstr "כתובת נקודה לנקודה:"

#. Type: string
#. Description
#. :sl2:
#: ../netcfg-static.templates:3001
msgid ""
"The point-to-point address is used to determine the other endpoint of the "
"point to point network.  Consult your network administrator if you do not "
"know the value.  The point-to-point address should be entered as four "
"numbers separated by periods."
msgstr ""
"כתובת הנקודה לנקודה שמשתמש כדי לקבוע את הנקודה השנייה ברשת הנקודה לנקודה. "
"התייעץ עם מנהל הרשת שלך, אם אינך יודע את הערך הנכון. מסכת הרשת שלך צריכה "
"להיות 4 מספרים מופרדים בנקודות."

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-static.templates:4001
msgid "Netmask:"
msgstr "מסכת רשת (netmask):"

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-static.templates:4001
msgid ""
"The netmask is used to determine which machines are local to your network.  "
"Consult your network administrator if you do not know the value.  The "
"netmask should be entered as four numbers separated by periods."
msgstr ""
"מסכת הרשת (netmask) משמשת כדי לקבוע אלו מחשבים הינם בתוך הרשת שלך. התייעץ עם "
"מנהל הרשת שלך, אם אינך יודע את הערך הנכון. מסכת הרשת שלך צריכה להיות 4 "
"מספרים מופרדים בנקודות."

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-static.templates:5001
msgid "Gateway:"
msgstr "Gateway:"

#. Type: string
#. Description
#. :sl1:
#: ../netcfg-static.templates:5001
msgid ""
"The gateway is an IP address (four numbers separated by periods) that "
"indicates the gateway router, also known as the default router.  All traffic "
"that goes outside your LAN (for instance, to the Internet) is sent through "
"this router.  In rare circumstances, you may have no router; in that case, "
"you can leave this blank.  If you don't know the proper answer to this "
"question, consult your network administrator."
msgstr ""
"ה-gateway היא כתובת IP (ארבעה מספרים מופרדים בנקודות) שמציינת את נתב ברירת "
"המחדל. כל התעבורה שיוצאת מחוץ לרשת המקומית שלך (למשל, לאינטרנט) נשלחת דרך "
"נתב זה. במקרים נדירים יכול להיות שאין לך נתב. במקרה זה, ביכולתך לשאיר את "
"השדה ריק. אם אין לך מידע וודאי לגבי שדה זה, התייעץ עם מנהל הרשת שלך."

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-static.templates:6001
msgid "Unreachable gateway"
msgstr "gateway לא נגיש"

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-static.templates:6001
msgid "The gateway address you entered is unreachable."
msgstr "כתובת ה-gateway שהכנסת אינה ניתנת להשגה."

#. Type: error
#. Description
#. :sl2:
#: ../netcfg-static.templates:6001
msgid ""
"You may have made an error entering your IP address, netmask and/or gateway."
msgstr "ייתכן שעשית שגיאה בהכנסת כתובת ה-IP, מסכת הרשת, או ה-gateway."

#. Type: error
#. Description
#. IPv6
#. :sl3:
#: ../netcfg-static.templates:7001
msgid "IPv6 unsupported on point-to-point links"
msgstr "‫IPv6 אינו נתמך בקישורי point-to-point‬"

#. Type: error
#. Description
#. IPv6
#. :sl3:
#: ../netcfg-static.templates:7001
msgid ""
"IPv6 addresses cannot be configured on point-to-point links.  Please use an "
"IPv4 address, or go back and select a different network interface."
msgstr ""
"אי אפשר להגדיר כתובות IPv6 עבור קישורי point-to-point. נא להשתמש בכתובת "
"IPv4, או לחזור ולבחור בממשק רשת אחר."

#. Type: boolean
#. Description
#. :sl1:
#: ../netcfg-static.templates:8001
msgid "Is this information correct?"
msgstr "האם המידע נכון?"

#. Type: boolean
#. Description
#. :sl1:
#: ../netcfg-static.templates:8001
msgid "Currently configured network parameters:"
msgstr "הגדרות הרשת שהינן כרגע בתוקף:"

#. Type: boolean
#. Description
#. :sl1:
#: ../netcfg-static.templates:8001
msgid ""
" interface     = ${interface}\n"
" ipaddress     = ${ipaddress}\n"
" netmask       = ${netmask}\n"
" gateway       = ${gateway}\n"
" pointopoint   = ${pointopoint}\n"
" nameservers   = ${nameservers}"
msgstr ""
" ממשק          = ${interface}\n"
" כתובת IP      = ${ipaddress}\n"
" מסכת רשת      = ${netmask}\n"
" gateway       = ${gateway}\n"
" נקודה לנקודה   = ${pointopoint}\n"
" שרתי שמות     = ${nameservers}"

#. Type: text
#. Description
#. Item in the main menu to select this package
#. :sl1:
#: ../netcfg-static.templates:9001
msgid "Configure a network using static addressing"
msgstr "הגדרת רשת באמצעות כתובת קבועה"

#. Type: boolean
#. Description
#. :sl6:
#: ../netcfg-common.templates:4001
msgid "Is this system connected to a VLAN trunk port?"
msgstr ""

#. Type: boolean
#. Description
#. :sl6:
#: ../netcfg-common.templates:4001
msgid ""
"IEEE 802.1Q Virtual LANs (VLANs) are a way of partitioning a physical "
"network into distinct broadcast domains. Packets can be tagged with "
"different VLAN IDs so that a single \"trunk\" connection may be used to "
"transport data for various VLANs."
msgstr ""

#. Type: boolean
#. Description
#. :sl6:
#. Type: string
#. Description
#. :sl6:
#: ../netcfg-common.templates:4001 ../netcfg-common.templates:5001
msgid ""
"If the network interface is directly connected to a VLAN trunk port, "
"specifying a VLAN ID may be necessary to get a working connection."
msgstr ""

#. Type: string
#. Description
#. :sl6:
#: ../netcfg-common.templates:5001
msgid "VLAN ID (1-4094):"
msgstr ""

#. Type: error
#. Description
#. :sl6:
#: ../netcfg-common.templates:6001
msgid "Error setting up VLAN"
msgstr ""

#. Type: error
#. Description
#. :sl6:
#: ../netcfg-common.templates:6001
msgid ""
"The command used to set up the VLAN during the installation returned an "
"error. Please check the installer logs, or go back and try another "
"configuration."
msgstr ""

#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:37001
#, fuzzy
msgid "Ethernet CCW bus"
msgstr "אתרנט"

#. Type: text
#. Description
#. :sl2:
#. Type: text
#. Description
#. :sl2:
#: ../netcfg-common.templates:38001 ../netcfg-common.templates:39001
#, fuzzy
msgid "Ethernet PCI"
msgstr "אתרנט"