summaryrefslogtreecommitdiffstats
path: root/perl-install/ugtk2.pm
blob: f10ab284c26ff30ea7ba08fae87156f2d7b04b40 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
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
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
package ugtk2;

use diagnostics;
use strict;
use vars qw(@ISA %EXPORT_TAGS @EXPORT_OK @icon_paths $wm_icon $grab $border); #- leave it on one line, for automatic removal of the line at package creation

@ISA = qw(Exporter);
%EXPORT_TAGS = (
    wrappers => [ qw(gtkadd gtkadd_widget gtkappend gtkappend_page gtkappenditems gtkcombo_setpopdown_strings gtkdestroy
                     gtkentry gtkflush gtkhide gtkmodify_font gtkmove gtkpack gtkpack2 gtkpack2_
                     gtkpack2__ gtkpack_ gtkpack__ gtkpowerpack gtkput gtkradio gtkresize gtkroot
                     gtkset_active gtkset_border_width gtkset_editable gtkset_justify gtkset_alignment gtkset_layout gtkset_line_wrap
                     gtkset_markup gtkset_modal gtkset_mousecursor gtkset_mousecursor_normal gtkset_mousecursor_wait gtkset_name
                     gtkset_property gtkset_relief gtkset_selectable gtkset_sensitive gtkset_shadow_type gtkset_size_request
                     gtkset_text gtkset_tip gtkset_visibility gtksetstyle gtkshow gtksignal_connect gtksize gtktext_append
                     gtktext_insert ) ],

    helpers => [ qw(add2notebook add_icon_path escape_text_for_TextView_markup_format gtkcolor gtkcreate_img
                    gtkcreate_pixbuf gtkfontinfo gtkset_background gtktreeview_children set_back_pixmap
                    get_default_step_items set_default_step_items
                    string_size string_width) ],

    create => [ qw(create_adjustment create_box_with_title create_dialog create_factory_menu create_factory_popup_menu
                   create_hbox create_hpaned create_menu create_notebook create_okcancel create_packtable
                   create_scrolled_window create_vbox create_vpaned _create_dialog gtkcreate_frame) ],

    ask => [ qw(ask_browse_tree_info ask_browse_tree_info_given_widgets ask_dir ask_from_entry ask_okcancel ask_warn
                ask_yesorno) ],
    dialogs => [ qw(err_dialog info_dialog warn_dialog) ],

);
$EXPORT_TAGS{all} = [ map { @$_ } values %EXPORT_TAGS ];
@EXPORT_OK = map { @$_ } values %EXPORT_TAGS;

use c;
use log;
use common;
use mygtk2 qw(gtknew); #- do not import gtkadd which conflicts with ugtk2 version

use Gtk2;
use Gtk2::Gdk::Keysyms;


$border = 5;

sub wm_icon() { $wm_icon || $::Wizard_pix_up || "wiz_default_up.png" }

# -=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---
#                 wrappers
#
# Functional-style wrappers to existing Gtk functions; allows to program in
# a more functional way, and especially, first, to avoid using temp
# variables, and second, to "see" directly in the code the user interface
# you're building.

sub gtkdestroy                { mygtk2::may_destroy($_[0]) }
sub gtkflush()                { mygtk2::flush() }
sub gtkhide                   { $_[0]->hide; $_[0] }
sub gtkmove                   { $_[0]->window->move($_[1], $_[2]); $_[0] }
sub gtkpack                   { gtkpowerpack(1, 1, @_) }
sub gtkpack_                  { gtkpowerpack('arg', 1, @_) }
sub gtkpack__                 { gtkpowerpack(0, 1, @_) }
sub gtkpack2                  { gtkpowerpack(1, 0, @_) }
sub gtkpack2_                 { gtkpowerpack('arg', 0, @_) }
sub gtkpack2__                { gtkpowerpack(0, 0, @_) }
sub gtkput                    { $_[0]->put(gtkshow($_[1]), $_[2], $_[3]); $_[0] }
sub gtkresize                 { $_[0]->window->resize($_[1], $_[2]); $_[0] }
sub gtkset_active             { $_[0]->set_active($_[1]); $_[0] }
sub gtkset_border_width       { $_[0]->set_border_width($_[1]); $_[0] }
sub gtkset_editable           { $_[0]->set_editable($_[1]); $_[0] }
sub gtkset_selectable         { $_[0]->set_selectable($_[1]); $_[0] }
sub gtkset_justify            { $_[0]->set_justify($_[1]); $_[0] }
sub gtkset_alignment          { $_[0]->set_alignment($_[1], $_[2]); $_[0] }
sub gtkset_layout             { $_[0]->set_layout($_[1]); $_[0] }
sub gtkset_modal              { $_[0]->set_modal($_[1]); $_[0] }
sub gtkset_mousecursor_normal { gtkset_mousecursor('left-ptr', @_) }
sub gtkset_mousecursor_wait   { gtkset_mousecursor('watch', @_) }
sub gtkset_relief             { $_[0]->set_relief($_[1]); $_[0] }
sub gtkset_sensitive          { $_[0]->set_sensitive($_[1]); $_[0] }
sub gtkset_visibility         { $_[0]->set_visibility($_[1]); $_[0] }
sub gtkset_tip                { $_[0]->set_tip($_[1], $_[2]) if $_[2]; $_[1] }
sub gtkset_shadow_type        { $_[0]->set_shadow_type($_[1]); $_[0] }
sub gtkset_style              { $_[0]->set_style($_[1]); $_[0] }
sub gtkset_size_request       { $_[0]->set_size_request($_[1], $_[2]); $_[0] }
sub gtkshow                   { $_[0]->show; $_[0] }
sub gtksize                   { $_[0]->size($_[1], $_[2]); $_[0] }
sub gtkset_markup             { $_[0]->set_markup($_[1]); $_[0] }
sub gtkset_line_wrap          { $_[0]->set_line_wrap($_[1]); $_[0] }

sub gtkadd {
    my $w = shift;
    foreach my $l (@_) {
	ref $l or $l = gtknew('WrappedLabel', text => $l);
	$w->add(gtkshow($l));
    }
    $w;
}

sub gtkadd_widget {
    my $sg = shift;
    map {
        my $l = $_;
        ref $l or $l = gtknew('WrappedLabel', text => $l);
        $sg->add_widget($l);
        $l;
    } @_;
}

sub gtkappend {
    my $w = shift;
    foreach my $l (@_) {
	ref $l or $l = gtknew('WrappedLabel', text => $l);
	$w->append(gtkshow($l));
    }
    $w;
}

sub gtkappenditems {
    my $w = shift;
    $_->show foreach @_;
    $w->append_items(@_);
    $w;
}

# append page to a notebook
sub gtkappend_page {
    my ($notebook, $page, $o_title) = @_;
    $notebook->append_page($page, $o_title);
    $notebook;
}

sub gtkentry {
    my ($o_text) = @_;
    my $e = gtknew('Entry');
    $o_text and $e->set_text($o_text);
    $e;
}

sub gtksetstyle { 
    my ($w, $s) = @_;
    $w->set_style($s);
    $w;
}

sub gtkradio {
    my $def = shift;
    my $radio;
    map { gtkset_active($radio = Gtk2::RadioButton->new_with_label($radio ? $radio->get_group : undef, $_), $_ eq $def) } @_;
}

sub gtkroot() { mygtk2::root_window() }
sub gtkcolor { &mygtk2::rgb2color }
sub gtkset_background { &mygtk2::set_root_window_background }

sub gtkset_text {
    my ($w, $s) = @_;
    $w->set_text($s);
    $w;
}

sub gtkcombo_setpopdown_strings {
    my $w = shift;
    $w->set_popdown_strings(@_);
    $w;
}

sub gtkset_mousecursor {
    my ($type, $w) = @_;
    ($w || gtkroot())->set_cursor(Gtk2::Gdk::Cursor->new($type));
    $w;
}

sub gtksignal_connect {
    my $w = shift;
    $w->signal_connect(@_);
    $w;
}

sub gtkset_name {
    my ($widget, $name) = @_;
    $widget->set_name($name);
    $widget;
}


sub gtkpowerpack {
    #- Get Default Attributes (if any). 2 syntaxes allowed :
    #- gtkpowerpack( {expand => 1, fill => 0}, $box...) : the attributes are picked from a specified hash ref
    #- gtkpowerpack(1, 0, 1, $box, ...) : the attributes are picked from the non-ref list, in the order (expand, fill, padding, pack_end).
    my @attributes_list = qw(expand fill padding pack_end);
    my $default_attrs = {};
    if (ref($_[0]) eq 'HASH') {
	$default_attrs = shift;
    } elsif (!ref($_[0])) {
	foreach (@attributes_list) {
	    ref($_[0]) and last;
	    $default_attrs->{$_} = shift;
	}
    }
    my $box = shift;

    while (@_) {
	#- Get attributes (if specified). 4 syntaxes allowed (default values are undef ie. false...) :
	#- gtkpowerpack({defaultattrs}, $box, $widget1, $widget2, ...) : the attrs are picked from the default ones (if they exist)
	#- gtkpowerpack($box, {fill=>1, expand=>0, ...}, $widget1, ...) : the attributes are picked from a specified hash ref
	#- gtkpowerpack($box, [1,0,1], $widget1, ...) : the attributes are picked from the array ref : (expand, fill, padding, pack_end).
	#- gtkpowerpack({attr=>'arg'}, $box, 1, $widget1, 0, $widget2, etc...) : the 'arg' value will tell gtkpowerpack to always read the 
	#- attr value directly in the arg list (avoiding confusion between value 0 and Gtk::Label("0"). That can simplify some writings but
	#- this arg(s) MUST then be present...
	my (%attr, $attrs);
	ref($_[0]) eq 'HASH' || ref($_[0]) eq 'ARRAY' and $attrs = shift;
	foreach (@attributes_list) {
	    if (($default_attrs->{$_} || '') eq 'arg') {
		ref($_[0]) and internal_error "error in packing definition\n";
		$attr{$_} = shift;
		ref($attrs) eq 'ARRAY' and shift @$attrs;
	    } elsif (ref($attrs) eq 'HASH' && defined($attrs->{$_})) {
		$attr{$_} = $attrs->{$_};
	    } elsif (ref($attrs) eq 'ARRAY') {
		$attr{$_} = shift @$attrs;
	    } elsif (defined($default_attrs->{$_})) {
		$attr{$_} = int $default_attrs->{$_};
	    } else {
		$attr{$_} = 0;
	    }
	}
	#- Get and pack the widget (create it if necessary to  a label...)
	my $widget = ref($_[0]) ? shift : gtknew('WrappedLabel', text => shift);
	my $pack_call = 'pack_' . ($attr{pack_end} ? 'end' : 'start');
	$box->$pack_call($widget, $attr{expand}, $attr{fill}, $attr{padding});
	$widget->show;
    }
    return $box;
}

sub gtktreeview_children {
    my ($model, $iter) = @_;
    my @l;
    $model or return;
    for (my $p = $model->iter_children($iter); $p; $p = $model->iter_next($p)) {
	push @l, $p;
    }
    @l;
}



# -=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---
#                 create
#
# Helpers that allow omitting common operations on common widgets
# (e.g. create widgets with good default properties)

sub create_pixbutton {
    my ($label, $pix, $reverse_order) = @_;
    my @label_and_pix = (0, $label, if_($pix, 0, $pix));
    gtkadd(gtknew('Button'),
	   gtknew('HBox', spacing => 3, children => [
		    1, "",
		    $reverse_order ? reverse(@label_and_pix) : @label_and_pix,
		    1, "",
		]));
}

sub create_adjustment {
    my ($val, $min, $max) = @_;
    Gtk2::Adjustment->new($val, $min, $max + 1, 1, ($max - $min + 1) / 10, 1);
}

sub create_scrolled_window {
    my ($W, $o_policy, $o_viewport_shadow) = @_;
    gtknew('ScrolledWindow', ($o_policy ? (h_policy => $o_policy->[0], v_policy => $o_policy->[1]) : ()),
               child => $W, if_($o_viewport_shadow, shadow_type => $o_viewport_shadow));
}

sub n_line_size {
    my ($nbline, $type, $widget) = @_;
    my $spacing = ${{ text => 3, various => 17 }}{$type};
    my %fontinfo = gtkfontinfo($widget);
    round($nbline * ($fontinfo{ascent} + $fontinfo{descent} + $spacing) + 8);
}

# Glib::Markup::escape_text() if no use for us because it'll do extra
# s/X/&foobar;/ (such as s/'/'/) that are suitable for
# Gtk2::Labels but are not for Gtk2::TextViews, resulting in
# displaying the raw enriched text instead...
#
sub escape_text_for_TextView_markup_format {
    my ($str) = @_;
    my %rules = ('&' => '&',
               '<' => '&lt;',
               '>' => '&gt;',
           );
    eval { $str =~ s!([&<>])!$rules{$1}!g }; #^(&(amp|lt|gt);)!!) {
    if (my $err = $@) {
           internal_error("$err\n$str");
    }
    $str;
}

sub markup_to_TextView_format {
    my ($s, $o_default_attrs) = @_;
    require interactive;
    my $l = interactive::markup_parse($s) or return $s;
    
    foreach (@$l) {
	my ($_txt, $attrs) = @$_;
	if ($attrs) {
         $attrs->{weight} eq 'bold' and $attrs->{weight} = do { require Gtk2::Pango; Gtk2::Pango->PANGO_WEIGHT_BOLD };
         $attrs->{size} eq 'larger' and do {
             require Gtk2::Pango;
             $attrs->{scale} = Gtk2::Pango->PANGO_SCALE_X_LARGE; # equivalent to Label's size => 'larger'
             delete $attrs->{size};
         };
     }
	#- nb: $attrs may be empty, need special handling if $o_default_attrs is used
	add2hash_($_->[1] ||= {}, $o_default_attrs) if $o_default_attrs;
    }
    $l;
}

sub create_box_with_title {
    my ($o, @l) = @_;

    my $nbline = sum(map { round(length($_) / 60 + 1/2) } map { split "\n" } @l);
    my $box = gtknew('VBox');
    if ($nbline == 0) {
	$o->{box_size} = 0;
	return $box;
    }
    $o->{box_size} = n_line_size($nbline, 'text', $box);
    if (@l <= 2 && $nbline > 4) {
	$o->{icon} && !$::isWizard and 
	  eval { gtkpack__($box, gtknew('HBox', border_width => 5, children_loose => [ gtkcreate_img($o->{icon}) ])) };
	my $wanted = $o->{box_size};
	$o->{box_size} = min(200, $o->{box_size});
	my $has_scroll = $o->{box_size} < $wanted;

	chomp(my $text = join("\n", @l));
	my $wtext = gtknew('TextView', text => markup_to_TextView_format($text));
	$wtext->set_left_margin(3);
	$wtext->can_focus($has_scroll);
	my $width = 400;
	my $scroll = gtknew('ScrolledWindow', child => $wtext, width => $width, height => 200);
	$scroll->signal_connect(realize => sub {
                                my $layout = $wtext->create_pango_layout($text);
                                $layout->set_width(($width - 10) * Gtk2::Pango->scale);
                                $wtext->set_size_request($width,  min(200, ($layout->get_pixel_size)[1] + 10));
                                $scroll->set_size_request($width, min(200, ($layout->get_pixel_size)[1] + 10));
                                $o->{rwindow}->queue_resize;
                            });
	gtkpack_($box, $o->{box_allow_grow} || 0, $scroll);
    } else {
     my $new_label = sub {
         my ($txt) = @_;
         ref($txt) ? $txt : gtknew('WrappedLabel', text_markup => $txt, width=> 490);
     };
	    gtkpack__($box,
		      if_($::isWizard, gtknew('Label', height => 10)),
		      (map {
			  my $w = $new_label->($_);
			  $::isWizard ? gtknew('HBox', children_tight => [ gtknew('Label', width => 20), $w ])
			              : $w;
		      } @l),
		      if_($::isWizard, gtknew('Label', height => 15)),
		     );
    }
}

sub _create_dialog {
    my ($title, $o_options) = @_;
    my $options = $o_options || {};

    #- keep compatibility with "transient" now called "transient_for"
    $options->{transient_for} = delete $options->{transient} if $options->{transient};

    gtknew('Dialog', title => $title, 
	   position_policy => 'center-on-parent', # center-on-parent does not work
	   modal => 1,
	   if_(!$::isInstall, icon_no_error => wm_icon()),
	   %$options, allow_unknown_options => 1,
       );
}


# drakfloppy / drakfont / harddrake2 / mcc
sub create_dialog {
    my ($title, $label, $o_options) = @_;
    my $ret = 0;
    $o_options ||= {};
    $o_options->{transient_for} = $::main_window if !$o_options->{transient_for} && $::main_window;

    my $dialog =  gtkset_border_width(_create_dialog($title, $o_options), 10);
    $dialog->set_border_width(10);
    my $text = ref($label) ? $label : $o_options->{use_markup} ? gtknew('WrappedLabel', text_markup => $label) : gtknew('WrappedLabel', text => $label);
    gtkpack($dialog->vbox,
            gtknew('HBox', children => [
                     if_($o_options->{stock},
                         0, Gtk2::Image->new_from_stock($o_options->{stock}, 'dialog'),
                         0, gtknew('Label', text => "   "),
                        ),
                     1, $o_options->{scroll} ? create_scrolled_window($text, [ 'never', 'automatic' ]) : $text,
                    ]),
           );

    if ($o_options->{cancel}) {
	$dialog->action_area->pack_start(
	    gtknew('Button', text => N("Cancel"),
		   clicked => sub { $ret = 0; $dialog->destroy; Gtk2->main_quit },
		   can_default => 1), 
	    1, 1, 0);
    }

    my $button = gtknew('Button', text => N("Ok"), can_default => 1,
			clicked => sub { $ret = 1; $dialog->destroy; Gtk2->main_quit });
    $dialog->action_area->pack_start($button, 1, 1, 0);
    $button->grab_default;

    $dialog->set_has_separator(0);
    $dialog->show_all;
    Gtk2->main;
    $ret;
}

sub info_dialog {
    my ($title, $label, $o_options) = @_;
    $o_options ||= { };
    add2hash_($o_options, { stock => 'gtk-dialog-info' });
    create_dialog($title, $label, $o_options);
}

sub warn_dialog {
    my ($title, $label, $o_options) = @_;
    $o_options ||= { };
    add2hash_($o_options, { stock => 'gtk-dialog-warning', cancel => 1 });
    create_dialog($title, $label, $o_options);
}

sub err_dialog {
    my ($title, $label, $o_options) = @_;
    $o_options ||= { };
    add2hash_($o_options, { stock => 'gtk-dialog-error' });
    create_dialog($title, $label, $o_options);
}

sub create_hbox { gtknew('HButtonBox', layout => $_[0]) }
sub create_vbox { gtknew('VButtonBox', layout => $_[0]) }

sub create_factory_menu_ {
    my ($type, $name, $window, @menu_items) = @_;
    my $widget = Gtk2::ItemFactory->new($type, $name, my $accel_group = Gtk2::AccelGroup->new);
    $widget->create_items($window, @menu_items);
    $window->add_accel_group($accel_group);
    ($widget->get_widget($name), $widget);
}

sub create_factory_popup_menu { create_factory_menu_("Gtk2::Menu", '<main>', @_) }
sub create_factory_menu { create_factory_menu_("Gtk2::MenuBar", '<main>', @_) }

sub create_menu {
    my $title = shift;
    my $w = Gtk2::MenuItem->new($title);
    $w->set_submenu(gtkshow(gtkappend(Gtk2::Menu->new, @_)));
    $w;
}

sub create_notebook {
    my $book = gtknew('Notebook');
    while (@_) {
	my ($page, $title) = splice(@_, 0, 2);
	gtkappend_page($book, $page, $title);
    }
    $book;
}

sub create_packtable {
    my ($options, @l) = @_;
    my $w = Gtk2::Table->new(0, 0, $options->{homogeneous} || 0);
    add2hash_($options, { xpadding => 5, ypadding => 0 });
    each_index {
	my ($i, $l) = ($::i, $_);
	each_index {
	    my $j = $::i;
	    if ($_) {
		ref $_ or $_ = gtknew('WrappedLabel', text => $_);
		$j != $#$l && !$options->{mcc} ?
		  $w->attach($_, $j, $j + 1, $i, $i + 1,
			     'fill', 'fill', $options->{xpadding}, $options->{ypadding}) :
		  $w->attach($_, $j, $j + 1, $i, $i + 1,
			     ['expand', 'fill'], ref($_) eq 'Gtk2::ScrolledWindow' || $_->get_data('must_grow') ? ['expand', 'fill'] : [], 0, 0);
		$_->show;
	    }
	} @$l;
    } @l;
    $w->set_col_spacings($options->{col_spacings} || 0);
    $w->set_row_spacings($options->{row_spacings} || 0);
    gtkset_border_width($w, $::isInstall ? 3 : 10);
}

my $wm_is_kde;
sub create_okcancel {
    my ($w, $o_ok, $o_cancel, $_o_spread, @other) = @_;
    # @other is a list of extra buttons (usually help (eg: XFdrake/drakx caller) or advanced (eg: interactive caller) button)
    # extra buttons have the following structure [ label, handler, is_first, pack_right ]
    local $::isWizard = $::isWizard && !$w->{pop_it};
    my $cancel;
    if (defined $o_cancel || defined $o_ok) {
        $cancel = $o_cancel;
    } elsif (!$::Wizard_no_previous) {
        $cancel = $::isWizard ? N("Previous") : N("Cancel");
    }
    my $ok = defined $o_ok ? $o_ok : $::isWizard ? ($::Wizard_finished ? N("Finish") : N("Next")) : N("Ok");
    my $bok = $ok && ($w->{ok} = gtknew('Button', text => $ok, clicked => $w->{ok_clicked} || sub { $w->{retval} = 1; Gtk2->main_quit }));
    my $bprev;
    if ($cancel) {
        $bprev = $w->{cancel} = gtknew('Button', text => $cancel, clicked => $w->{cancel_clicked} || 
                                   sub { log::l("default cancel_clicked"); undef $w->{retval}; Gtk2->main_quit });
    }
    $w->{wizcancel} = gtknew('Button', text => N("Cancel"), clicked => sub { die 'wizcancel' }) if $::isWizard && !$::isInstall;
    if (!defined $wm_is_kde) {
        require any;
        my $wm = any::running_window_manager();
        $wm_is_kde = !$::isInstall && ($wm eq "kwin" || $wm eq "compiz" && fuzzy_pidofs(qr/\bkde-window-decorator\b/)) || 0;
    }
    my $f = sub { $w->{buttons}{$_[0][0]} = gtknew('Button', text => $_[0][0], clicked => $_[0][1]) };
    my @left  = ((map { $f->($_) } grep {  $_->[2] && !$_->[3] } @other),
                  map { $f->($_) } grep { !$_->[2] && !$_->[3] } @other);
    my @right = ((map { $f->($_) } grep {  $_->[2] &&  $_->[3] } @other),
                  map { $f->($_) } grep { !$_->[2] &&  $_->[3] } @other);
    # we put space to group buttons in two packs (but if there's only one when not in wizard mode)
    # but in the installer where all windows run in wizard mode because of design even when not in a wizard step
    $bprev = gtknew('Label') if !$cancel && $::Wizard_no_previous && !@left && !@right;
    if ($::isWizard) {
        # wizard mode: order is cancel/left_extras/white/right_extras/prev/next
        unshift @left, $w->{wizcancel} if !$::isInstall;
        push @right, $bprev, $bok;
    } else { 
        # normal mode: cancel/ok button follow GNOME's HIG
        unshift @left, ($wm_is_kde ? $bok : $bprev);
        push @left, gtknew('Label') if $ok && $cancel; # space buttons but if there's only one button
        push @right, ($wm_is_kde ? $bprev : $bok);
    }

    gtknew('VBox', spacing => 5, children_loose => [
	    gtknew('HBox', height => 5),
            gtknew('HSeparator'),
            gtknew('HBox', children_loose => [
                   map {
		       gtknew('HButtonBox', layout => $_->[1],
			      children_loose => [
				  map {
				      $_->can_default($::isWizard);
				      $_;
				  } grep { $_ } @{$_->[0]} 
			      ]);
                    } ([ \@left, 'start' ],
                       [ \@right,  'end' ],
                      )
                    ]),
           ]);
}

sub _setup_paned {
    my ($paned, $child1, $child2, %options) = @_;
    foreach ([ 'resize1', 0 ], [ 'shrink1', 1 ], [ 'resize2', 1 ], [ 'shrink2', 1 ]) {
        $options{$_->[0]} = $_->[1] unless defined($options{$_->[0]});
    }
    $paned->pack1(gtkshow($child1), $options{resize1}, $options{shrink1});
    $paned->pack2(gtkshow($child2), $options{resize2}, $options{shrink2});
    gtkshow($paned);
}

sub create_vpaned {
    _setup_paned(Gtk2::VPaned->new, @_);
}

sub create_hpaned {
    _setup_paned(Gtk2::HPaned->new, @_);
}

sub gtkcreate_frame {
    my ($label) = @_;
    gtknew('Frame', text => $label, border_width => 5);
}


# -=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---
#                 helpers
#
# Functions that do typical operations on widgets, that you may need in
# several places of your programs.

sub _find_imgfile {
    my ($name) = @_;

    if ($name =~ m|/| && -f $name) {
	$name;
    } else {
	foreach my $path (icon_paths()) {
	    foreach ('', '.png', '.xpm') {
		my $file = "$path/$name$_";
		-f $file and return $file;
	    }
	}
    }
}

# use it if you want to display an icon/image in your app
sub gtkcreate_img {
    my ($file, $o_size) = @_;
    gtknew('Image', file => $file, if_($o_size, size => $o_size));
}

# use it if you want to draw an image onto a drawingarea
sub gtkcreate_pixbuf {
    my ($file, $o_size) = @_;
    gtknew('Pixbuf', file => $_[0], if_($o_size, size => $o_size));
}

sub gtktext_append { gtktext_insert(@_, append => 1) }

sub may_set_icon {
    my ($w, $name) = @_;
    if (my $f = $name && _find_imgfile($name)) {
	$w->set_icon(gtkcreate_pixbuf($f));
    }
}

sub gtktext_insert { &mygtk2::_text_insert }
sub icon_paths { &mygtk2::_icon_paths }
sub add_icon_path { &mygtk2::add_icon_path }

sub set_main_window_size { 
    my ($o) = @_;
    mygtk2::set_main_window_size($o->{rwindow});
}

# extracts interesting font metrics for a given widget
sub gtkfontinfo {
    my ($widget) = @_;
    my $context = $widget->get_pango_context;
    my $metrics = $context->get_metrics($context->get_font_description, $context->get_language);
    my %fontinfo;
    foreach (qw(ascent descent approximate_char_width approximate_digit_width)) {
	no strict;
	my $func = "get_$_";
	$fontinfo{$_} = Gtk2::Pango->pixels($metrics->$func);
    }
    %fontinfo;
}

sub gtkmodify_font {
    my ($w, $arg) = @_;
    $w->modify_font(ref($arg) ? $arg : Gtk2::Pango::FontDescription->from_string($arg));
    $w;
}

sub gtkset_property {
    my ($w, $property, $value) = @_;
    $w->set_property($property, $value);
    $w;
}

sub set_back_pixbuf {
    my ($widget, $pixbuf) = @_;
    my $window = $widget->window;
    my ($width, $height) = ($pixbuf->get_width, $pixbuf->get_height);
    my $pixmap = Gtk2::Gdk::Pixmap->new($window, $width, $height, $window->get_depth);
    $pixbuf->render_to_drawable($pixmap, $widget->style->fg_gc('normal'), 0, 0, 0, 0, $width, $height, 'none', 0, 0);
    $window->set_back_pixmap($pixmap, 0);
}

sub set_back_pixmap {
    my ($w) = @_;
    return if !$w->realized;
    my $window = $w->window;
    my $pixmap = $w->{back_pixmap} ||= Gtk2::Gdk::Pixmap->new($window, 1, 2, $window->get_depth);

    my $style = $w->get_style;
    $pixmap->draw_points($style->bg_gc('normal'), 0, 0);
    $pixmap->draw_points($style->base_gc('normal'), 0, 1);
    $window->set_back_pixmap($pixmap);
}

sub add2notebook {
    my ($n, $title, $book) = @_;
    $n->append_page($book, gtkshow(gtknew('Label', text => $title)));
    $book->show;
}

sub string_size {
    my ($widget, $text) = @_;
    my $layout = $widget->create_pango_layout($text);
    my @size = $layout->get_pixel_size;
    @size;
}

sub string_width {
    my ($widget, $text) = @_;
    my ($width, undef) = string_size($widget, $text);
    $width;
}


my ($def_step_icon, $def_step_title);
sub set_default_step_items {
    ($def_step_icon, $def_step_title) = @_;
}

sub get_default_step_items { ($def_step_icon, $def_step_title) }

# -=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---
#                 toplevel window creation helper
#
# Use the 'new' function as a method constructor and then 'main' on it to
# launch the main loop. Use $o->{retval} to indicate that the window needs
# to terminate.
# Set $::isWizard to have a wizard appearance.
# Set $::isEmbedded and $::XID so that the window will plug.

sub new {
    my ($type, $title, %opts) = @_;

    my $o = bless { %opts }, $type;
    while (my $e = shift @tempory::objects) { $e->destroy }

    my $icon = find { _find_imgfile($_) } $opts{icon}, (get_default_step_items())[0], 'banner-generic-ad';
    my $banner_title = $opts{banner_title};
    my $window = gtknew(
	'MagicWindow',
	title => $title || '',
	pop_it => $o->{pop_it},
	$::isInstall ? (banner => Gtk2::Banner->new($icon, $title || (get_default_step_items())[1])) : (),
	$::isStandalone && $banner_title && $icon ? (banner => Gtk2::Banner->new($icon, $banner_title)) : (),
	width => $opts{width}, height => $opts{height}, default_width => $opts{default_width}, default_height => $opts{default_height}, 
	modal => $opts{modal} || $grab || $o->{grab} || $o->{modal} || $o->{transient},
	no_Window_Manager => exists $opts{no_Window_Manager} ? $opts{no_Window_Manager} : !$::isStandalone,
	if_(!$::isInstall, icon_no_error => wm_icon()),
	if_($o->{transient}, transient_for => $o->{transient}), 
    );
    $window->set_border_width(10) if !$window->{pop_it} && !$::noborderWhenEmbedded;

    $o->{rwindow} = $o->{window} = $window;
    $o->{real_window} = $window->{real_window};
    $o->{pop_it} = $window->{pop_it};

    $o;
}

sub main {
    my ($o, $o_completed, $o_canceled) = @_;
    gtkset_mousecursor_normal();

    $o->show;
    mygtk2::main($o->{rwindow},
		 sub { $o->{retval} ? !$o_completed || $o_completed->() : !$o_canceled || $o_canceled->() });
    $o->{retval};
}
sub show($) {
    my ($o) = @_;
    $o->{rwindow}->show;
}
sub destroy($) {
    my ($o) = @_;
    $o->{rwindow}->destroy;
    flush();
}
sub DESTROY { goto &destroy }
sub sync {
    my ($o) = @_;
    show($o);
    flush();
}
sub flush() { gtkflush() }
sub shrink_topwindow {
    my ($o) = @_;
    $o->{real_window}->signal_emit('size_allocate', Gtk2::Gdk::Rectangle->new(-1, -1, -1, -1));
}
sub exit {
    gtkset_mousecursor_normal(); #- for restoring a normal in any case
    flush();
    if ($::isStandalone) {
        require standalone;
        standalone::__exit($_[1]); #- workaround
    } else {
        c::_exit($_[1]); #- workaround
    }
}

#- in case "exit" above was not called by the program
END { &exit() }

# -=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---=-=---
#                 ask
#
# Full UI managed functions that will return to you the value that the
# user chose.

sub ask_warn       { my $w = ugtk2->new(shift @_, grab => 1); $w->_ask_warn(@_); main($w) }
sub ask_yesorno    { my $w = ugtk2->new(shift @_, grab => 1); $w->_ask_okcancel(@_, N("Yes"), N("No")); main($w) }
sub ask_okcancel   { my $w = ugtk2->new(shift @_, grab => 1); $w->_ask_okcancel(@_, N("Is this correct?"), N("Ok"), N("Cancel")); main($w) }
sub ask_from_entry { my $w = ugtk2->new(shift @_, grab => 1); $w->_ask_from_entry(@_); main($w) }
sub ask_dir        { my $w = ugtk2->new(shift @_, grab => 1); $w->_ask_dir(@_); main($w) }

sub _ask_from_entry($$@) {
    my ($o, @msgs) = @_;
    my $entry = gtknew('Entry');
    my $f = sub { $o->{retval} = $entry->get_text; Gtk2->main_quit };
    $o->{ok_clicked} = $f;
    $o->{cancel_clicked} = sub { undef $o->{retval}; Gtk2->main_quit };

    gtkadd($o->{window},
	  gtkpack($o->create_box_with_title(@msgs),
		 gtksignal_connect($entry, 'activate' => $f),
		 ($o->{hide_buttons} ? () : create_okcancel($o))),
	  );
    $entry->grab_focus;
}

sub _ask_warn($@) {
    my ($o, @msgs) = @_;
    gtkadd($o->{window},
	  gtkpack($o->create_box_with_title(@msgs),
		  my $w = gtknew('Button', text => N("Ok"), clicked => sub { Gtk2->main_quit }),
		 ),
	  );
    $w->grab_focus;
}

sub _ask_okcancel($@) {
    my ($o, @msgs) = @_;
    my ($ok, $cancel) = splice @msgs, -2;

    gtkadd($o->{window},
	   gtkpack(create_box_with_title($o, @msgs),
		   create_okcancel($o, $ok, $cancel),
		 )
	 );
    $o->{ok}->grab_focus;
}

sub create_file_selector {
    my (%opts) = @_;
    my $w = ugtk2->new(delete $opts{title}, modal => 1);
    my ($message, $save, $want_a_dir) = (delete $opts{message}, delete $opts{save}, delete $opts{want_a_dir});
    my $action = $want_a_dir ? ($save ? 'create_folder' : 'select_folder') : ($save ? 'save' : 'open');
    add2hash(\%opts, { width => 480, height => 250 });
    gtkadd($w->{window},
	   gtkpack_(create_box_with_title($w, $message),
		    1, $w->{chooser} = gtknew('FileChooser', action => $action, %opts),
		    0, create_okcancel($w),
		 ));
    $w->{chooser}->signal_connect(file_activated => sub { $w->{ok}->clicked });
    $w;
}

sub file_selected_check {
    my ($save, $want_a_dir, $file) = @_;

    if (!$file) {
	N("No file chosen");
    } elsif (-f $file && $want_a_dir) {
	N("You have chosen a file, not a directory");
    } elsif (-d $file && !$want_a_dir) {
	N("You have chosen a directory, not a file");
    } elsif (!-e $file && !$save) {
	$want_a_dir ? N("No such directory") : N("No such file");
    } else {
	'';
    }
}

sub _ask_file {
    my ($o, $title, $path) = @_;

    my $w = create_file_selector(title => $title, want_a_dir => 0, directory => $path);
    put_in_hash($o, $w);

    $w->{ok}->signal_connect(clicked => sub { $o->{retval} = $w->{chooser}->get_filename });
}
sub _ask_dir {
    my ($o, $title, $path) = @_;

    my $w = create_file_selector(title => $title, want_a_dir => 1, directory => $path);
    put_in_hash($o, $w);

    $w->{ok}->signal_connect(clicked => sub { $o->{retval} = $w->{chooser}->get_filename });
}

sub ask_browse_tree_info {
    my ($common) = @_;

    my $w = ugtk2->new($common->{title});

    my $tree_model = Gtk2::TreeStore->new("Glib::String", "Gtk2::Gdk::Pixbuf", "Glib::String");
    my $tree = Gtk2::TreeView->new_with_model($tree_model);
    $tree->get_selection->set_mode('browse');
    $tree->append_column(my $textcolumn = Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererText->new, 'text' => 0));
    $tree->append_column(my $pixcolumn  = Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererPixbuf->new, 'pixbuf' => 1));
    $tree->append_column(Gtk2::TreeViewColumn->new_with_attributes(undef, Gtk2::CellRendererText->new, 'text' => 2));
    $tree->set_headers_visible(0);
    $tree->set_rules_hint(1);
    $textcolumn->set_min_width(200);
    $textcolumn->set_max_width(200);

    gtkadd($w->{window}, 
	   gtknew('VBox', spacing => 5, children => [
		    0, $common->{message},
		    1, gtknew('HBox', children_loose => [
			       gtknew('ScrolledWindow', child => $tree),
			       gtknew('Frame', text => N("Info"), child =>
				      gtknew('ScrolledWindow', child => my $info = gtknew('TextView', editable => 0)),
				     ) ]),
		    0, my $status = gtknew('Label'),
		    if_($common->{auto_deps},
		        0, gtknew('CheckButton', text => $common->{auto_deps}, active_ref => \$common->{state}{auto_deps})
		    ),
		    0, my $box2 = gtknew('HBox', spacing => 10),
		   ]));
    #gtkpack__($box2, my $toolbar = Gtk2::Toolbar->new('horizontal', 'icons'));
    gtkpack__($box2, my $toolbar = Gtk2::Toolbar->new);

    my @l = ([ $common->{ok}, 1 ], if_($common->{cancel}, [ $common->{cancel}, 0 ]));
    @l = reverse @l if !$::isInstall;
    my @buttons = map {
	my ($t, $val) = @$_;
	$box2->pack_end(my $w = gtknew('Button', text => $t, clicked => sub {
					   $w->{retval} = $val;
					   Gtk2->main_quit;
				       }), 0, 1, 20);
	$w->show;
	$w;
    } @l;
    @buttons = reverse @buttons if !$::isInstall;    

    gtkpack__($box2, gtknew('Button', text => N("Help"), clicked => sub {
					   ask_warn(N("Help"), $common->{interactive_help}->());
				       })) if $common->{interactive_help};

    $status->show;

    $w->{window}->set_size_request(map { $_ - 2 * $border - 4 } $w->{windowwidth}, $w->{windowheight}) if !$::isInstall;
    $buttons[0]->grab_focus;
    $w->{rwindow}->show;

    my @toolbar = (ftout  =>  [ N("Expand Tree"), sub { $tree->expand_all } ],
		   ftin   =>  [ N("Collapse Tree"), sub { $tree->collapse_all } ],
		   reload =>  [ N("Toggle between flat and group sorted"), sub { invbool(\$common->{state}{flat}); $common->{rebuild_tree}->() } ]);
    foreach my $ic (@{$common->{icons} || []}) {
	push @toolbar, ($ic->{icon} => [ $ic->{help}, sub {
					     if ($ic->{code}) {
						 my $_w = $ic->{wait_message} && $common->{wait_message}->('', $ic->{wait_message});
						 $ic->{code}();
						 $common->{rebuild_tree}->();
					     }
					 } ]);
    }
    my %toolbar = @toolbar;
    foreach (grep_index { $::i % 2 == 0 } @toolbar) {
	$toolbar->append_item(undef, $toolbar{$_}[0], undef, gtkcreate_img("$_.png"), $toolbar{$_}[1]);
    }

    $pixcolumn->{is_pix} = 1;
    $common->{widgets} = { w => $w, tree => $tree, tree_model => $tree_model,
                           info => $info, status => $status };
    ask_browse_tree_info_given_widgets($common);
}

sub ask_browse_tree_info_given_widgets {
    my ($common) = @_;
    my $w = $common->{widgets};

    my ($curr, $prev_label, $idle, $mouse_toggle_pending);
    my (%wtree, %ptree, %pix, %node_state, %state_stats);
    my $update_size = sub {
	if ($w->{status}) {
	    my $new_label = $common->{get_status}();
	    $prev_label ne $new_label and $w->{status}->set($prev_label = $new_label);
	}
    };
    
    my $set_node_state_flat = sub {
	my ($iter, $state) = @_;
	$state eq 'XXX' and return;
        $pix{$state} ||= gtkcreate_pixbuf($state);
        $w->{tree_model}->set($iter, 1 => $pix{$state});
    };
    my $set_node_state_tree; $set_node_state_tree = sub {
	my ($iter, $state) = @_;
	my $iter_str = $w->{tree_model}->get_path_str($iter);
	$state eq 'XXX' and return;
        $pix{$state} ||= gtkcreate_pixbuf($state);
	if ($node_state{$iter_str} ne $state) {
	    my $parent;
	    if (!$w->{tree_model}->iter_has_child($iter) && ($parent = $w->{tree_model}->iter_parent($iter))) {
		my $parent_str = $w->{tree_model}->get_path_str($parent);
		my $stats = $state_stats{$parent_str} ||= {}; $stats->{$node_state{$iter_str}}--; $stats->{$state}++;
		my @list = grep { $stats->{$_} > 0 } keys %$stats;
		my $new_state = @list == 1 ? $list[0] : 'semiselected';
		$node_state{$parent_str} ne $new_state and $set_node_state_tree->($parent, $new_state);
	    }
            $w->{tree_model}->set($iter, 1 => $pix{$state});
	    $node_state{$iter_str} = $state;  #- cache for efficiency
	}
    };
    my $set_node_state = $common->{state}{flat} ? $set_node_state_flat : $set_node_state_tree;

    my $set_leaf_state = sub {
	my ($leaf, $state) = @_;
	$set_node_state->($_, $state) foreach @{$ptree{$leaf}};
    };
    my $add_parent; $add_parent = sub {
	my ($root, $state) = @_;
	$root or return undef;
	if (my $w = $wtree{$root}) { return $w }
	my $s; foreach (split '\|', $root) {
	    my $s2 = $s ? "$s|$_" : $_;
	    $wtree{$s2} ||= do {
		my $iter = $w->{tree_model}->append_set($s ? $add_parent->($s, $state) : undef, [ 0 => $_ ]);
		$iter;
	    };
	    $s = $s2;
	}
	$set_node_state->($wtree{$s}, $state); #- use this state by default as tree is building.
	$wtree{$s};
    };
    my $add_node = sub {
	my ($leaf, $root, $options) = @_;
	my $state = $common->{node_state}($leaf) or return;
	if ($leaf) {
	    my $iter = $w->{tree_model}->append_set($add_parent->($root, $state), [ 0 => $leaf ]);
	    $set_node_state->($iter, $state);
	    push @{$ptree{$leaf}}, $iter;
	} else {
	    my $parent = $add_parent->($root, $state);
	    #- hackery for partial displaying of trees, used in rpmdrake:
	    #- if leaf is void, we may create the parent and one child (to have the [+] in front of the parent in the ctree)
	    #- though we use '' as the label of the child; then rpmdrake will connect on tree_expand, and whenever
	    #- the first child has '' as the label, it will remove the child and add all the "right" children
	    $options->{nochild} or $w->{tree_model}->append_set($parent, [ 0 => '' ]);
	}
    };
    my $clear_all_caches = sub {
	foreach (values %ptree) {
	    foreach my $n (@$_) {
		delete $node_state{$w->{tree_model}->get_path_str($n)};
	    }
	}
	foreach (values %wtree) {
	    my $iter_str = $w->{tree_model}->get_path_str($_);
	    delete $node_state{$iter_str};
	    delete $state_stats{$iter_str};
	}
	%ptree = %wtree = ();
    };
    $common->{delete_all} = sub {
	$clear_all_caches->();
	$w->{tree_model}->clear;
    };
    $common->{rebuild_tree} = sub {
	$common->{delete_all}->();
	$set_node_state = $common->{state}{flat} ? $set_node_state_flat : $set_node_state_tree;
	$common->{build_tree}($add_node, $common->{state}{flat}, $common->{tree_mode});
	&$update_size;
    };
    $common->{delete_category} = sub {
	my ($cat) = @_;
	exists $wtree{$cat} or return;
	foreach (keys %ptree) {
	    my @to_remove;
	    foreach my $node (@{$ptree{$_}}) {
		my $category;
		my $parent = $node;
		my @parents;
		while ($parent = $w->{tree_model}->iter_parent($parent)) {    #- LEAKS
		    my $parent_name = $w->{tree_model}->get($parent, 0);
		    $category = $category ? "$parent_name|$category" : $parent_name;
		    $_->[1] = "$parent_name|$_->[1]" foreach @parents;
		    push @parents, [ $parent, $category ];
		}
		if ($category =~ /^\Q$cat/) {
		    push @to_remove, $node;
		    foreach (@parents) {
			next if $_->[1] eq $cat || !exists $wtree{$_->[1]};
			delete $wtree{$_->[1]};
			delete $node_state{$w->{tree_model}->get_path_str($_->[0])};
			delete $state_stats{$w->{tree_model}->get_path_str($_->[0])};
		    }
		}
	    }
	    foreach (@to_remove) {
		delete $node_state{$w->{tree_model}->get_path_str($_)};
	    }
	    @{$ptree{$_}} = difference2($ptree{$_}, \@to_remove);
	}
	if (exists $wtree{$cat}) {
	    my $iter_str = $w->{tree_model}->get_path_str($wtree{$cat});
	    delete $node_state{$iter_str};
	    delete $state_stats{$iter_str};
	    $w->{tree_model}->remove($wtree{$cat});
	    delete $wtree{$cat};
	}
	&$update_size;
    };
    $common->{add_nodes} = sub {
	my (@nodes) = @_;
	$add_node->($_->[0], $_->[1], $_->[2]) foreach @nodes;
	&$update_size;
    };
    
    $common->{display_info} = sub { gtktext_insert($w->{info}, $common->{get_info}($curr)); 0 };
    my $children = sub { map { $w->{tree_model}->get($_, 0) } gtktreeview_children($w->{tree_model}, $_[0]) };
    my $toggle = sub {
	if (ref($curr) && !$_[0]) {
	    $w->{tree}->toggle_expansion($w->{tree_model}->get_path($curr));
	} else {
	    if (ref $curr) {
		my @l = $common->{grep_allowed_to_toggle}($children->($curr)) or return;
		my @unsel = $common->{grep_unselected}(@l);
		my @p = @unsel ?
		  #- not all is selected, select all if no option to potentially override
		  (exists $common->{partialsel_unsel} && $common->{partialsel_unsel}->(\@unsel, \@l) ? difference2(\@l, \@unsel) : @unsel)
		  : @l;
		$common->{toggle_nodes}($set_leaf_state, @p);
		&$update_size;
	    } else {
		$common->{check_interactive_to_toggle}($curr) and $common->{toggle_nodes}($set_leaf_state, $curr);
		&$update_size;
	    }
	}
    };

    $w->{tree}->signal_connect(key_press_event => sub {
	my $c = chr($_[1]->keyval & 0xff);
	if ($_[1]->keyval >= 0x100 ? $c eq "\r" || $c eq "\x8d" : $c eq ' ') {
	    $toggle->(0);
	}
	0;
    });

    $w->{tree}->get_selection->signal_connect(changed => sub {
	my ($model, $iter) = $_[0]->get_selected;
	$model && $iter or return;
	Glib::Source->remove($idle) if $idle;
	
	if (!$model->iter_has_child($iter)) {
	    $curr = $model->get($iter, 0);
	    $idle = Glib::Timeout->add(100, $common->{display_info});
	} else {
	    $curr = $iter;
	}
	#- the following test for equality is because we can have a button_press_event first, then
	#- two changed events, the first being on a different row :/ (is it a bug in gtk2?) - that
	#- happens in rpmdrake when doing a "search" and directly trying to select a found package
	if ($mouse_toggle_pending eq $model->get($iter, 0)) {
	    $toggle->(1);
            $mouse_toggle_pending = 0;
	}
	0;
    });
    $w->{tree}->signal_connect(button_press_event => sub {  #- not too good, but CellRendererPixbuf does not have the needed signals :(
	my ($path, $column) = $w->{tree}->get_path_at_pos($_[1]->x, $_[1]->y);
	if ($path && $column) {
	    $column->{is_pix} and $mouse_toggle_pending = $w->{tree_model}->get($w->{tree_model}->get_iter($path), 0);
	}
        0;
    });
    $common->{rebuild_tree}->();
    &$update_size;
    $common->{initial_selection} and $common->{toggle_nodes}($set_leaf_state, @{$common->{initial_selection}});
    my $_b = before_leaving { $clear_all_caches->() };
    $common->{init_callback}->() if $common->{init_callback};
    $w->{w}->main;
}

sub gtk_set_treelist {
    my ($treelist, $l) = @_;

    my $list = $treelist->get_model;
    $list->clear;
    $list->append_set([ 0 => $_ ]) foreach @$l;
}


sub gtk_TextView_get_log {
    my ($log_w, $command, $filter_output, $when_command_is_over) = @_;

    my $pid = open(my $F, "$command |") or return;
    common::nonblock($F);

    my $gtk_buffer = $log_w->get_buffer;
    $log_w->signal_connect(destroy => sub { 
	kill 9, $pid if $pid; #- we do not continue in background
	$pid = $gtk_buffer = ''; #- ensure $gtk_buffer is valid when its value is non-null
    });

    Glib::Timeout->add(100, sub {
        if ($gtk_buffer) {
	    my $end = $gtk_buffer->get_end_iter;
	    while (defined (my $s = <$F>)) {
		$gtk_buffer->insert($end, $filter_output->($s));
	    }
	    $log_w->{to_bottom}->();
	}
	if (waitpid($pid, c::WNOHANG()) > 0) {
	    #- we do not call $when_command_is_over if $gtk_buffer does not exist anymore
	    #- since it is not a normal case
	    $when_command_is_over->($gtk_buffer) if $when_command_is_over && $gtk_buffer;
	    $pid = '';
	    0;
	} else {
	    to_bool($gtk_buffer);
	}
    });
    $pid; #- $pid becomes invalid after $when_command_is_over is called
}

sub gtk_new_TextView_get_log {
    my ($command, $filter_output, $when_command_is_over) = @_;

    my $log_w = gtknew('TextView', editable => 0);
    my $log_scroll = gtknew('ScrolledWindow', child => $log_w, to_bottom => 1);
    my $pid = gtk_TextView_get_log($log_w, $command, $filter_output, $when_command_is_over) or return;
    $log_scroll, $pid;
}

# misc helpers:

package Gtk2::TreeStore;
sub append_set {
    my ($model, $parent, @values) = @_;
    # compatibility:
    @values = @{$values[0]} if @values == 1 && ref($values[0]) eq 'ARRAY';
    my $iter = $model->append($parent);
    $model->set($iter, @values);
    return $iter;
}


package Gtk2::ListStore;
# Append a new row, set the values, return the TreeIter
sub append_set {
    my ($model, @values) = @_;
    # compatibility:
    @values = @{$values[0]} if @values == 1 && ref($values[0]) eq 'ARRAY';
    my $iter = $model->append;
    $model->set($iter, @values);
    return $iter;
}


package Gtk2::TreeModel;
# gets the string representation of a TreeIter
sub get_path_str {
    my ($self, $iter) = @_;
    my $path = $self->get_path($iter);
    $path or return;
    $path->to_string;
}

sub iter_each_children {
    my ($model, $iter, $f) = @_;
    for (my $child = $model->iter_children($iter); $child; $child = $model->iter_next($child)) {
	$f->($child);
    }
}

package Gtk2::TreeView;
# likewise gtk-1.2 function
sub toggle_expansion {
    my ($self, $path, $b_open_all) = @_;
    if ($self->row_expanded($path)) {
	$self->collapse_row($path);
    } else {
	$self->expand_row($path, $b_open_all || 0);
    }
}


# With GTK+, for more GUIes coherency, GtkOptionMenu is recommended instead of a
# combo if the user is selecting from a fixed set of options.
#
# That is, non-editable combo boxes are not encouraged. GtkOptionMenu is much
# easier to use than GtkCombo as well. Use GtkCombo only when you need the
# editable text entry.
#
# GtkOptionMenu is a much better-implemented widget and also the right UI for
# noneditable sets of choices.)
#
# GtkCombo is deprecated in 2.4.x because it still uses deprecated
# GtkList. GtkOption menu is deprecated in order to have an unified widget.
#
# GtkComBox widget replaces GtkOption menu whereas GtkComBoxEntry replaces GtkCombo.
#
#
# This layer try to make OptionMenu and ComboBox look being api
# compatible with Combo since its API is quite nice.

package Gtk2::OptionMenu;
use common;

# try to get combox <==> option menu mapping
sub set_popdown_strings {
    my ($w, @strs) = @_;
    my $menu = Gtk2::Menu->new;
    # keep string list around for ->set_text compatibilty helper
    $w->{strings} = \@strs;
    #$w->set_menu((ugtk2::create_factory_menu($window, [ "File", (undef) x 3, '<Branch>' ], map { [ "File/" . $_, (undef) x 3, '<Item>' ] } @strs))[0]);
    $menu->append(ugtk2::gtkshow(Gtk2::MenuItem->new_with_label($_))) foreach @strs;
    $w->set_menu($menu);
    $w;
}

sub new_with_strings {
    my ($class, $strs, $o_val) = @_;
    my $w = $class->new;
    $w->set_popdown_strings(@$strs);
    $w->set_text($o_val) if $o_val;
    $w;
}

sub entry {
    my ($w) = @_;
    return $w;
}

sub get_text {
    my ($w) = @_;
    $w->get_history == -1 ? '' : $w->{strings}[$w->get_history];
}

sub set_text {
    my ($w, $val) = @_;
    each_index {
        if ($_ eq $val) {
            $w->set_history($::i);
            return;
        }
    } @{$w->{strings}};
}




package Gtk2::ComboBox;
use common;

# try to get combox <==> option menu mapping
sub set_popdown_strings {
    my ($w, @strs) = @_;
    $w->get_model->clear;
    # keep string list around for ->set_text compatibilty helper
    $w->{strings} = \@strs;
    $w->append_text($_) foreach @strs;
    $w;
}

sub new_with_strings {
    my ($class, $strs, $o_val) = @_;
    my $w = $class->new_text;
    $w->set_popdown_strings(@$strs);
    $w->set_text($o_val) if $o_val;
    $w;
}

sub entry {
    my ($w) = @_;
    return $w;
}

sub get_text {
    my ($w) = @_;
    $w->get_active == -1 ? '' : $w->{strings}[$w->get_active];
}

sub set_text {
    my ($w, $val) = @_;
    eval { 
	my $val_index = find_index { $_ eq $val } @{$w->{strings}};
	$w->set_active($val_index);
    };
    # internal_error(qq(impossible to lookup "$val":\n\t) . chomp_($@)) if $@;
}


package Gtk2::Label;
sub set {
    my ($label, $text) = @_;
    mygtk2::gtkset($label, text => $text);
}


package Gtk2::WrappedLabel;
sub new {
    my ($_type, $o_text, $o_align) = @_;
    mygtk2::gtknew('WrappedLabel', text => $o_text || '', alignment => [ $o_align || 0, 0.5 ]);
}


package Gtk2::Entry;
sub new_with_text {
    my ($_class, $o_text) = @_;
    mygtk2::gtknew('Entry', text => $o_text);
}


package Gtk2::Banner;

use ugtk2 qw(:helpers :wrappers);

sub set_pixmap {
    my ($darea) = @_;
    return if !$darea->realized;
    ugtk2::set_back_pixmap($darea);
    $darea->{layout} = $darea->create_pango_layout($darea->{text});
    $darea->{txt_width} = ($darea->{layout}->get_pixel_size)[0];
    $darea->queue_draw;
}


sub new {
    my ($_class, $icon, $text, $o_options) = @_;

    my $darea = Gtk2::DrawingArea->new;
    $darea->set_name('Banner') if $::isInstall;
    my $d_height = $::isInstall ? 45 : 75;
    $darea->set_size_request(-1, $d_height);
    $darea->modify_font(Gtk2::Pango::FontDescription->from_string("Sans Bold 14"));
    $darea->{icon} = ugtk2::gtkcreate_pixbuf($icon);
    $darea->{text} = $text;
    require lang;
    my $is_rtl = lang::text_direction_rtl();

    $darea->signal_connect(realize => \&set_pixmap);
    $darea->signal_connect("style-set" => \&set_pixmap);
    $darea->signal_connect(expose_event => sub {
                               my $style = $darea->get_style;
                               my $height = $darea->{icon}->get_height;
                               my $width = $darea->{icon}->get_width;
                               # fix icon position when not using the default height:
                               (undef, undef, undef, $d_height) = $darea->window->get_geometry;
                               my $padding = int(($d_height - $height)/2);
                               my $d_width = $darea->allocation->width;
                               my $x_icon = $is_rtl ? $d_width - $padding - $width : $padding;
                               my $x_text = $is_rtl ? $x_icon - $padding - $darea->{txt_width} : $width + $padding*2;
                               $darea->{icon}->render_to_drawable($darea->window, $style->bg_gc('normal'),
                                                                  0, 0, $x_icon, $padding, -1, -1, 'none', 0, 0);
                               $darea->window->draw_layout($style->fg_gc('normal'), $x_text, $o_options->{txt_ypos} || $::isInstall && 13 || $d_height/3,
                                                           $darea->{layout});
                               1;
                           });
                               
    return $darea;
}


package Gtk2::MDV::CellRendererPixWithLabel;

use MDK::Common;
use Glib::Object::Subclass "Gtk2::CellRenderer",
  properties => [
      Glib::ParamSpec->string("label", "Label", "A meaningfull label", "", [qw(readable writable)]),
      Glib::ParamSpec->object("pixbuf", "Pixbuf file", "Something nice to display", 'Gtk2::Gdk::Pixbuf', [qw(readable writable)]),
  ];

my $x_padding = 2;
my $y_padding = 2;

sub INIT_INSTANCE {}

sub pixbuf_size {
    my ($cell) = @_;
    my $pixbuf = $cell->get('pixbuf');
    $pixbuf ? ($pixbuf->get_width, $pixbuf->get_height) : (0, 0);
}

sub calc_size {
    my ($cell, $layout) = @_;
    my ($width, $height) = $layout->get_pixel_size;
    my ($pwidth, $pheight) = pixbuf_size($cell);
    
    return (0, 0,
            $width + $x_padding * 3 + $pwidth,
            max($pheight, $height + $y_padding * 2));
}

sub GET_SIZE {
  my ($cell, $widget, $_cell_area) = @_;

  my $layout = $cell->get_layout($widget);
  $layout->set_text($cell->get('label'));

  return calc_size($cell, $layout);
}

sub get_layout {
  my ($_cell, $widget) = @_;
  return $widget->create_pango_layout("");
}

sub RENDER { # not that efficient...
  my ($cell, $window, $widget, $_background_area, $cell_area, $_expose_area, $flags) = @_;
  my $state;
  if ($flags & 'selected') {
    $state = $widget->has_focus
      ? 'selected'
      : 'active';
  } else {
    $state = $widget->state eq 'insensitive'
      ? 'insensitive'
      : 'normal';
  }

  my $layout = $cell->get_layout($widget);
  $layout->set_text($cell->get('label'));

  my $is_rtl = lang::text_direction_rtl();
  my $txt_width = ($layout->get_pixel_size)[0];

  my ($x_offset, $y_offset, $_width, $_height) = calc_size($cell, $layout);
  my $pixbuf = $cell->get('pixbuf');
  my ($pwidth, $pheight) = pixbuf_size($cell);
  my $txt_offset = $cell_area->x + $x_offset + $x_padding * 2 + $pwidth;

  if ($pixbuf) {
      $pixbuf->render_to_drawable($window, $widget->style->fg_gc('normal'), 
                                  0, 0,
                                  $is_rtl ? $cell_area->width - $cell_area->x - $pwidth : $cell_area->x ,#+ $x_padding,
                                  $cell_area->y, #+ $y_padding,
                                  $pwidth, $pheight, 'none', 0, 0);
  }
  $widget->get_style->paint_layout($window,
                                       $state,
                                       1,
                                       $cell_area,
                                       $widget,
                                       "cellrenderertext",
                                       $is_rtl ? $cell_area->width - $txt_width - $txt_offset : $txt_offset,
                                       $cell_area->y + $y_offset + $y_padding,
                                       $layout);

}

1;


package Gtk2::NotificationBubble::Queue;

sub new {
    my ($class) = @_;

    require Gtk2::NotificationBubble;

    my $self = bless {
        bubble => Gtk2::NotificationBubble->new,
        queue => [],
        display => 5000,
        delay => 500,
    }, $class;
    $self->{bubble}->signal_connect(timeout => sub {
                                        my $info = $self->{queue}[0];
                                        $info->{timeout}->() if $info->{timeout};
                                        $self->process_next;
                                    });
    $self->{bubble}->signal_connect(clicked => sub {
                                        $self->{bubble}->hide;
                                        my $info = $self->{queue}[0];
                                        if ($info->{clicked}) {
                                            #- has to call process_next when done
                                            $info->{clicked}->();
                                        } else {
                                            $self->process_next;
                                        }
                                    });
    $self;
}

sub process_next {
    my ($self) = @_;
    shift @{$self->{queue}};
    #- wait for some time so that the new bubble is noticeable
    @{$self->{queue}} and Glib::Timeout->add($self->{delay}, sub { $self->show; 0 });
}

sub add {
    my ($self, $info) = @_;
    push @{$self->{queue}}, $info;
    @{$self->{queue}} == 1 and $self->show;
}

sub show {
    my ($self) = @_; # perl_checker: $self = Gtk2::NotificationBubble->new
    my $info = $self->{queue}[0];
    $self->{bubble}->set($info->{title}, Gtk2::Image->new_from_pixbuf($info->{pixbuf}), $info->{message});
    $self->{bubble}->show($self->{display});
}

1;


package Gtk2::GUI_Update_Guard;

use MDK::Common::Func qw(before_leaving);
use ugtk2;

sub new {
    my ($_class) = @_; # prevent a perl_checker warning in callers
    my $old_signal = $SIG{ALRM};
    $SIG{ALRM} = sub {
        ugtk2::gtkflush();
        alarm(1);
    };
    alarm(1);
    return before_leaving {
        alarm(0);
        $SIG{ALRM} = $old_signal || 'DEFAULT';   # restore default action
    };
}

1;
#n9211'>9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915
# SOME DESCRIPTIVE TITLE.
# Copyright (C) YEAR Free Software Foundation, Inc.
# Naim Daka <naim70@freesurf.ch>, 2002.
#
#
msgid ""
msgstr ""
"Project-Id-Version: DrakX for MDK 8.1\n"
"POT-Creation-Date: 2002-12-05 19:52+0100\n"
"PO-Revision-Date: 2003-01-20 13:35+0200\n"
"Last-Translator: Naim Daka <naim70@freesurf.ch>\n"
"Language-Team: Albanian <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-15\n"
"Content-Transfer-Encoding: 8-bit\n"

#: ../../any.pm:1
#, c-format
msgid ""
"The per-user sharing uses the group \"fileshare\". \n"
"You can use userdrake to add a user to this group."
msgstr ""
"Pėr tė autorizuar njė pėrdorues tė grupit qė tė shpėrndaje repetorėt, ju "
"duhet tė shtoni tė gjithė pėrdoruesit po nė atė grup \"fileshare\". \n"
"Kjo mund tė arrihet falas programit userdrake."

#: ../../any.pm:1 ../../bootlook.pm:1 ../../install_steps_gtk.pm:1
#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#: ../../interactive/http.pm:1 ../../interactive/newt.pm:1
#: ../../interactive/stdio.pm:1 ../../network/netconnect.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakautoinst:1
#: ../../standalone/drakbackup:1 ../../standalone/drakconnect:1
#: ../../standalone/drakfloppy:1 ../../standalone/drakfont:1
#: ../../standalone/drakgw:1 ../../standalone/draksec:1
#: ../../standalone/logdrake:1 ../../standalone/net_monitor:1
#, c-format
msgid "Cancel"
msgstr "Anulo"

#: ../../any.pm:1
#, c-format
msgid "Launch userdrake"
msgstr "Nise userdrake"

#: ../../any.pm:1
#, c-format
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 "
"and nautilus.\n"
"\n"
"\"Custom\" permit a per-user granularity.\n"
msgstr ""
"A dėshironi qė pėrdoruesit tė kenė mundėsi tė shpėrndajnė disa nga "
"repertorėt e tyre?\n"
"Me kėtė pėrdoruesit do tė kenė mundėsi ti shpėrndajnė me klikim mbi "
"\"Shpėrdarje\" nė konqueror (kde) dhe nautilus (gnome).\n"
"\n"
"\"Personalizim\" mundėson autorizimin e shpėrndarjes pėr pėrdorues tė "
"pėrcaktuar.\n"

#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
msgid "Mandatory package %s is missing"
msgstr "Pakoja e nevojshme %s mungon"

#: ../../any.pm:1
#, c-format
msgid ""
"You can export using NFS or Samba. Please select which you'd like to use."
msgstr ""
"A dėshironi ti trasportoni me NFS (protokol UNIX) apo Samba (protokol "
"Windows). Ju lutemi zgjedheni cilėn dėshironi ta pėrdorni."

#: ../../any.pm:1 ../../install_any.pm:1 ../../standalone.pm:1
#, c-format
msgid "The package %s needs to be installed. Do you want to install it?"
msgstr "Pakot %s duhet tė jenė tė instaluara. A dėshironi ti instaloni ato?"

#: ../../any.pm:1 ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Custom"
msgstr "Personalizim"

#: ../../any.pm:1
#, c-format
msgid "Allow all users"
msgstr "Autorizo tė gjithė pėrdoruesit"

#: ../../any.pm:1
#, c-format
msgid "No sharing"
msgstr "Asnjė ndarje"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "More"
msgstr "Mė shumė"

#: ../../any.pm:1
#, fuzzy, c-format
msgid "Here is the full list of available countries"
msgstr "Ja ku ėshtė lista komplete e tastierave nė disponibilitet"

#: ../../any.pm:1
#, fuzzy, c-format
msgid "Please choose your country."
msgstr "Ju lutemi, zgjedheni tipin e minit tuaj."

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Country"
msgstr "Vendi:"

#: ../../any.pm:1
#, c-format
msgid "Use Unicode by default"
msgstr ""

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../standalone/drakxtv:1
#, c-format
msgid "All"
msgstr "Tė gjitha"

#: ../../any.pm:1
#, c-format
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 ""
"Mandrake Linux mund ti pėrmbahen njė numėr tė madhė tė gjuhėve. Zgjedhani\n"
"gjuhėn tė cilėn dėshironi ta instaloni. E cila do tė jetė nė pėrdorim e "
"sipėr\n"
"kur ta instaloni kompletisht dhe ta rinisni sistemin tuaj nga fillimi."

#: ../../any.pm:1
#, c-format
msgid "Please choose a language to use."
msgstr "Ju lutemi zgjedheni gjuhėn e pėrdorimit."

#: ../../any.pm:1
#, c-format
msgid "Choose the window manager to run:"
msgstr "Zgjedheni njė mjedis grafik:"

#: ../../any.pm:1
#, c-format
msgid "Choose the default user:"
msgstr "Zgjedheni njė pėrdorues me marrėveshje:"

#: ../../any.pm:1
#, c-format
msgid "Do you want to use this feature?"
msgstr "A dėshironi tė pėrdorni kėtė veēori?"

#: ../../any.pm:1
#, c-format
msgid "I can set up your computer to automatically log on one user."
msgstr ""
"Pėrderisa tė niset kpmjuteri juaj, ka mundėsi qė tė kyqet automatikisht nė "
"njė pėrdorues."

#: ../../any.pm:1
#, c-format
msgid "Autologin"
msgstr "Kyqje automatike"

#: ../../any.pm:1
#, c-format
msgid "Icon"
msgstr "Ikon"

#: ../../any.pm:1
#, c-format
msgid "Shell"
msgstr "Interpretues"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Password (again)"
msgstr "Parulla (verifikim)"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../network/modem.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakbackup:1
#: ../../standalone/drakconnect:1
#, c-format
msgid "Password"
msgstr "Parulla"

#: ../../any.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "User name"
msgstr "Emėr i pėrdoruesit"

#: ../../any.pm:1
#, c-format
msgid "Real name"
msgstr "Emėri dhe mbiemri"

#: ../../any.pm:1
#, c-format
msgid "Accept user"
msgstr "Prano pėrdoruesin"

#: ../../any.pm:1 ../../diskdrake/dav.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#: ../../interactive/http.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakbackup:1 ../../standalone/scannerdrake:1
#, c-format
msgid "Done"
msgstr "Pėrfundim"

#: ../../any.pm:1
#, c-format
msgid ""
"Enter a user\n"
"%s"
msgstr ""
"Krijo njė pėrdorues\n"
"%s"

#: ../../any.pm:1
#, c-format
msgid "Add user"
msgstr "Shto njė pėrdorues"

#: ../../any.pm:1
#, c-format
msgid "This user name has already been added"
msgstr "Ky emėr i pėrdoruesit ėshtė veqse i shtuarė"

#: ../../any.pm:1
#, c-format
msgid "The user name is too long"
msgstr "Emri i pėrdoruesit ėshtė shumė i gjatė"

#: ../../any.pm:1
#, c-format
msgid ""
"The user name must contain only lower cased letters, numbers, `-' and `_'"
msgstr ""
"Emri i pėrdoruesit mund tė pėrmbajė vetėm shkonjat vogla, numra, njashtu "
"edhe shenjat `-' dhe `_'"

#: ../../any.pm:1
#, c-format
msgid "Please give a user name"
msgstr "Ju lutemi shkruani njė emėr tė pėrdoruesit"

#: ../../any.pm:1
#, c-format
msgid "This password is too simple"
msgstr "Kjo parullė ėshtė shumė e thjshtė"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Please try again"
msgstr "Ju lutemi provoni edhe njė herė"

#: ../../any.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "The passwords do not match"
msgstr "Parullat nuk janė identike"

#: ../../any.pm:1
#, c-format
msgid "(already added %s)"
msgstr "(nė shtim e sipėr %s)"

#: ../../any.pm:1
#, c-format
msgid "access to compilation tools"
msgstr "hyrje nė veglat e kompilimit"

#: ../../any.pm:1
#, c-format
msgid "access to network tools"
msgstr "hyrje nė veglat e rrjetit (network)"

#: ../../any.pm:1
#, c-format
msgid "access to administrative files"
msgstr "hyrje nė skedaret administrative"

#: ../../any.pm:1
#, c-format
msgid "allow \"su\""
msgstr "autorizim \"su\""

#: ../../any.pm:1
#, c-format
msgid "access to rpm tools"
msgstr "hyrje nė veglat rpm"

#: ../../any.pm:1
#, c-format
msgid "access to X programs"
msgstr "hyrje nė programe grafike"

#: ../../any.pm:1
#, c-format
msgid ""
"Here are the entries on your boot menu so far.\n"
"You can create additional entries or change the existing ones."
msgstr ""
"Kėto janė hyrjet e ndryshme nė nisjen ushėzuese.\n"
"Ju mund tė shtoni disa tė reja dhe ti ndryshoni hyrjet e mė parme."

#: ../../any.pm:1
#, c-format
msgid "Other OS (windows...)"
msgstr "Sistem tjetėr (windows, etj.)"

#: ../../any.pm:1
#, c-format
msgid "Other OS (MacOS...)"
msgstr "Sistem tjetėr (MacOS, etj.)"

#: ../../any.pm:1
#, c-format
msgid "Other OS (SunOS...)"
msgstr "Sistem tjetėr (SunOS, etj.)"

#: ../../any.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Linux"
msgstr "Linux"

#: ../../any.pm:1
#, c-format
msgid "Which type of entry do you want to add?"
msgstr "Ēfarė tipi tė sistemit dėshironi tė shtoni?"

#: ../../any.pm:1
#, c-format
msgid "This label is already used"
msgstr "Kjo etiketė ėshtė nė pėrdorim e sipėr"

#: ../../any.pm:1
#, c-format
msgid "You must specify a root partition"
msgstr "Ju duhet tė specifikoni njė ndarjen rrėnjėzore"

#: ../../any.pm:1
#, c-format
msgid "You must specify a kernel image"
msgstr "Ju duhet tė specifikoni imazhin e bėrthamės"

#: ../../any.pm:1
#, c-format
msgid "Empty label not allowed"
msgstr "Etiketė e zbrazėt nuk ėshtė e autorizuar"

#: ../../any.pm:1 ../../harddrake/v4l.pm:1
#, c-format
msgid "Default"
msgstr "Zgjedhje me marrėveshje"

#: ../../any.pm:1
#, c-format
msgid "NoVideo"
msgstr "NoVideo"

#: ../../any.pm:1
#, c-format
msgid "Initrd-size"
msgstr "Medhėsia e RamDiskut"

#: ../../any.pm:1
#, c-format
msgid "Append"
msgstr "Mundėsi kalimi nė bėrthamė"

#: ../../any.pm:1
#, c-format
msgid "Label"
msgstr "Etiketė"

#: ../../any.pm:1
#, c-format
msgid "Unsafe"
msgstr "Jo i sigurt"

#: ../../any.pm:1
#, c-format
msgid "Table"
msgstr "Tabelė e ndrajeve"

#: ../../any.pm:1
#, c-format
msgid "Root"
msgstr "Ndarje e Rrėnjės"

#: ../../any.pm:1
#, c-format
msgid "Read-write"
msgstr "Lexim-shkrim"

#: ../../any.pm:1
#, c-format
msgid "Initrd"
msgstr "Skedare RamDisk"

#: ../../any.pm:1
#, c-format
msgid "Video mode"
msgstr "Modė video"

#: ../../any.pm:1
#, c-format
msgid "Image"
msgstr "Imazh"

#: ../../any.pm:1
#, c-format
msgid "Default OS?"
msgstr "Sistem i eksploatimit me marrėveshje?"

#: ../../any.pm:1
#, c-format
msgid "Enable OF Boot?"
msgstr "Autorizo nisje nė l'OF?"

#: ../../any.pm:1
#, c-format
msgid "Enable CD Boot?"
msgstr "Autorizo nisje nga CD?"

#: ../../any.pm:1
#, c-format
msgid "Kernel Boot Timeout"
msgstr "Afat i nisjes udhėzuese tė bėrthamės"

#: ../../any.pm:1
#, c-format
msgid "Open Firmware Delay"
msgstr "Afat i Open Firmware"

#: ../../any.pm:1
#, c-format
msgid "Boot device"
msgstr "Mjet me nisje udhėzuese"

#: ../../any.pm:1
#, c-format
msgid "Init Message"
msgstr "Lajm i Nisjes"

#: ../../any.pm:1
#, c-format
msgid "Bootloader to use"
msgstr "Program me nisje udhėzuese pėr pėrdorim"

#: ../../any.pm:1
#, c-format
msgid "Bootloader main options"
msgstr "Mundėsit kryesore tė programit me nisje udhėzuese"

#: ../../any.pm:1
#, c-format
msgid ""
"Option ``Restrict command line options'' is of no use without a password"
msgstr ""
"Mundėsia ``Restrict command line options'' ėshtė e pa mundur pa parullė"

#: ../../any.pm:1
#, c-format
msgid "Give the ram size in MB"
msgstr "Paraqit madhėsinė e memorisė nė MB"

#: ../../any.pm:1
#, c-format
msgid "Enable multiple profiles"
msgstr "Autorizim i shumicės sė profilėve"

#: ../../any.pm:1
#, c-format
msgid "Precise RAM size if needed (found %d MB)"
msgstr "Precizo madhėsinė e memorisė nėse i nevojitet (%d MB tė gjetura)"

#: ../../any.pm:1
#, c-format
msgid "Clean /tmp at each boot"
msgstr "Zbraze repertorin /tmp nė ēdo nisje"

#: ../../any.pm:1
#, c-format
msgid "Create a bootdisk"
msgstr "Krijo njė disketė me nisje tė udhėzuar"

#: ../../any.pm:1
#, c-format
msgid "restrict"
msgstr "restrict"

#: ../../any.pm:1
#, c-format
msgid "Restrict command line options"
msgstr "Mbrojtja e pėlqimeve me parullė"

#: ../../any.pm:1
#, c-format
msgid "Delay before booting default image"
msgstr "Afat para se tė niset me udhėzim imazhi me marrėvshje"

#: ../../any.pm:1
#, c-format
msgid "compact"
msgstr "kompakt"

#: ../../any.pm:1
#, c-format
msgid "Compact"
msgstr "Kompakt"

#: ../../any.pm:1
#, c-format
msgid "Bootloader installation"
msgstr "Instalim i programit me nisje udhėzuese"

#: ../../any.pm:1
#, c-format
msgid "First sector of boot partition"
msgstr "Sektori i par nė ndarjen e nisjes me udhėzues"

#: ../../any.pm:1
#, c-format
msgid "First sector of drive (MBR)"
msgstr "Sektor i par i diskut (MBR)"

#: ../../any.pm:1
#, c-format
msgid "Where do you want to install the bootloader?"
msgstr "Ku dėshironi tė instaloni programin me nisje udhėzuese?"

#: ../../any.pm:1
#, c-format
msgid "LILO/grub Installation"
msgstr "Instalimi i LILO/grub"

#: ../../any.pm:1
#, c-format
msgid "SILO Installation"
msgstr "Instalimi i SILO"

#: ../../any.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Skip"
msgstr "Hedhe"

#: ../../any.pm:1
#, c-format
msgid "On Floppy"
msgstr "Mbi Diskete Floppy"

#: ../../any.pm:1
#, c-format
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: "
"System Commander).\n"
"\n"
"On which drive are you booting?"
msgstr ""
"Ju keni vendosur tė instaloni programin me nisje tė udhėzuar mbi njė "
"ndarje.\n"
"Kjo nėnkupton se ju posedoni njė program me nisje tė udhėzuarė nė diskun e "
"fort(shembull: System Commander).\n"
"\n"
"Cili ėshtė disku i nisjes?"

#: ../../any.pm:1
#, c-format
msgid "Creating bootdisk..."
msgstr "Krijim i njė diskete me nisje tė udhėzuar..."

#: ../../any.pm:1
#, c-format
msgid "Insert a floppy in %s"
msgstr "Futni njė disketė nė %s"

#: ../../any.pm:1
#, c-format
msgid "Choose the floppy drive you want to use to make the bootdisk"
msgstr ""
"Zgjedheni njė floopy lexues pėr ta pėrdorur nė krijimin e njė diskete me "
"nisje tė udhėzuar"

#: ../../any.pm:1
#, c-format
msgid "Second floppy drive"
msgstr "Lexuesi i dytė floppy"

#: ../../any.pm:1
#, c-format
msgid "First floppy drive"
msgstr "Lexuesi i parė floppy"

#: ../../any.pm:1
#, c-format
msgid "Sorry, no floppy drive available"
msgstr "Kemi ndjesė, asnjė lexues ilirė pėr disketat floopy"

#: ../../any.pm:1
#, c-format
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 "
"install\n"
"LILO (or grub) on your system, or another operating system removes LILO, or "
"LILO doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures. Would you like to create a bootdisk for your system?\n"
"%s"
msgstr ""
"Njė disketė me nisje tė udhėzuar mundėson nisjen e sistemin tuaj Linux\n"
"pa e pėdorur programin e nisjes me udhėzim prej diskut tė fortė. Kjo ėshtė "
"shumė e pėrdorueshme nėse ju nuk dėshironi tė instaloni\n"
"LILO (apo grub) nė sistemin tuaj, apo njė sistemė tjetėr eksploatimi qė do "
"ta zhduk LILO, nėse ai nuk funksionon me konfigurimin tuaj hardware. Njė \n"
"disketė me nisje tė udhėzuar mund tė pėrdoret njashtu edhe me\n"
"imazhė shpėtues tė Mandrake, e cila mundėson njashtu edhe rikuperimin "
"shpėtues mė tė sigurt tė sistemit tuaj,nėse ėshtė i dėmtuar. A dėshironi tė "
"krijoni njė disketė me nisje tė udhėzuar?\n"
"%s"

#: ../../any.pm:1
#, c-format
msgid ""
"\n"
"\n"
"(WARNING! You're using XFS for your root partition,\n"
"creating a bootdisk on a 1.44 Mb floppy will probably fail,\n"
"because XFS needs a very large driver)."
msgstr ""
"\n"
"\n"
"(Kujdes! Ju jeni duke pėrdorur XFS pėr ndarjen tuaj rrėnjėzore (root),\n"
"krijimi i njė diskete me nisje tė udhėzuar (bootdisk) nė disketėn 1.44 Mb "
"zakonisht\n"
"do tė dėshton, sepse XFS ka nevojė pėr njė pilotė tejet tė madhė)."

#: ../../any.pm:1
#, c-format
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 "
"install\n"
"SILO on your system, or another operating system removes SILO, or SILO "
"doesn't\n"
"work with your hardware configuration. A custom bootdisk can also be used "
"with\n"
"the Mandrake rescue image, making it much easier to recover from severe "
"system\n"
"failures.\n"
"\n"
"If you want to create a bootdisk for your system, insert a floppy in the "
"first\n"
"drive and press \"Ok\"."
msgstr ""
"Njė disktė boot mundėson njė nisje nė sistemin tuaj Linux pa kurrėfarė \n"
"mvarėsie nga njė ngarkues normal boot. Kjo ėshtė tejet e pėrdorshme nėse ju "
"nuk dėshironi tė instaloni\n"
"SILO nė system tuaj, apo nė njė sistem tjetėr operues, qė do tė zhduk SILO, "
"ose SILO nuk do tė\n"
"funksionoj nė konfigurimin e mjetit tuaj. Njė disketė boot mund tė pėrdoret "
"me njė\n"
"imazh Mandrake, i cili mbulohet mė lehtė nga disa sisteme tjera\n"
"me gabime.\n"
"\n"
"Nėse dėshironi tė krijoni njė disketė boot pėr systemin tuaj, futni nė "
"lexuesin e parė\n"
"flopi dhe shtypni mbi \"Ok\"."

#: ../../bootloader.pm:1
#, c-format
msgid "You can't install the bootloader on a %s partition\n"
msgstr ""
"Ju nuk mund tė instaloni programin e nisjes me udhėzim mbi njė ndarje %s\n"

#: ../../bootloader.pm:1
#, c-format
msgid "not enough room in /boot"
msgstr "nuk ka vend tė mjaftueshėm nė repertor /boot"

#. -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:1
#, c-format
msgid "The highlighted entry will be booted automatically in %d seconds."
msgstr "Nisje automatike nė %d sekonda."

#. -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:1
#, c-format
msgid "commands before booting, or 'c' for a command-line."
msgstr "urdhėr pėr nisje ose mbi 'c' pėr ta pėrdorur linjėn komanduese."

#. -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:1
#, c-format
msgid "Press enter to boot the selected OS, 'e' to edit the"
msgstr "Shtypni mbi hyrje pėr nisje tė udhėzuar, mbi 'e' pėr ta ndryshuar"

#. -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:1
#, c-format
msgid "Use the %c and %c keys for selecting which entry is highlighted."
msgstr "Pėrdorni ēelsat %c dhe %c pėr tė caktuar mundėsin tuaj"

#. -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:1
#, c-format
msgid "Welcome to GRUB the operating system chooser!"
msgstr "Mirė se vini nė GRUB ngarkues i sistemeve t'eksploatimit"

#: ../../bootloader.pm:1
#, c-format
msgid "Yaboot"
msgstr "Yaboot"

#: ../../bootloader.pm:1
#, c-format
msgid "Grub"
msgstr "Grub"

#: ../../bootloader.pm:1
#, c-format
msgid "LILO with text menu"
msgstr "LILO nė modė tekst"

#: ../../bootloader.pm:1
#, c-format
msgid "LILO with graphical menu"
msgstr "LILO nė modė grafik"

#: ../../bootloader.pm:1
#, c-format
msgid "SILO"
msgstr "SILO"

#. -PO: these messages will be displayed at boot time in the BIOS, use only ASCII (7bit)
#: ../../bootloader.pm:1
#, c-format
msgid ""
"Welcome to %s the operating system chooser!\n"
"\n"
"Choose an operating system from the list above or\n"
"wait %d seconds for default boot.\n"
"\n"
msgstr ""
"Mirė se vini nė %s, ngarkues i sistemit t'eksploatimit caktues!\n"
"\n"
"Zgjedheni njė sistem t'eksploatimit nė listėn e poshtė shėnuar\n"
"ose pritni %d sekonda pėr nisje tė udhėzuar.\n"
"\n"

#: ../../bootlook.pm:1 ../../ugtk2.pm:1 ../../ugtk.pm:1
#: ../../network/netconnect.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakconnect:1
#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
#, c-format
msgid "OK"
msgstr "OK"

#: ../../bootlook.pm:1
#, c-format
msgid "Yes, I want autologin with this (user, desktop)"
msgstr ""
"Po, dhėshiroj njė autokyqje me kėtė (zgjedhje e pėrdoruesit dhe tryezės)"

#: ../../bootlook.pm:1
#, c-format
msgid "No, I don't want autologin"
msgstr "Jo, nuk dėshiroj autokyqje"

#: ../../bootlook.pm:1
#, c-format
msgid "Launch the graphical environment when your system starts"
msgstr "Nise interfac e mjedisit me grafik kur sistemi juaj niset"

#: ../../bootlook.pm:1
#, c-format
msgid "System mode"
msgstr "Modė i sistemit"

#: ../../bootlook.pm:1
#, c-format
msgid "Bootsplash"
msgstr "Imazh gjatė nisjes me udhėzim"

#: ../../bootlook.pm:1
#, c-format
msgid "Lilo screen"
msgstr "Ekran i Lilo"

#: ../../bootlook.pm:1
#, c-format
msgid ""
"\n"
"Select the theme for\n"
"lilo and bootsplash,\n"
"you can choose\n"
"them separately"
msgstr ""
"\n"
"Zgjedhe njė temė pėr\n"
"lilo dhe imazhin pėr nisje tė udhėzuar,\n"
"ju mund ti zgjidhni\n"
"veqmas"

#: ../../bootlook.pm:1
#, c-format
msgid "Themes"
msgstr "Temat"

#: ../../bootlook.pm:1
#, c-format
msgid "Splash selection"
msgstr "Zgjedhės i mazhit"

#: ../../bootlook.pm:1 ../../standalone/drakbackup:1 ../../standalone/drakgw:1
#, c-format
msgid "Configure"
msgstr "Konfiguro"

#: ../../bootlook.pm:1
#, c-format
msgid ""
"You are currently using %s as your boot manager.\n"
"Click on Configure to launch the setup wizard."
msgstr ""
"Ju jeni duke pėrdorur momentalisht sistemin e eksploatimit tė qeverisur nga %"
"s.\n"
"Kliko nė Konfigurim pėr tė ndryshuar listėn e nisjes me udhėzim"

#: ../../bootlook.pm:1
#, c-format
msgid "LiLo and Bootsplash themes installation successfull"
msgstr ""
"Instalimi i temės pėr imazhė tė nisjes sė udhėzuar pėr LILO, pėrfundoi me "
"sukses"

#: ../../bootlook.pm:1
#, c-format
msgid "Theme installation failed!"
msgstr "Dėshtim gjatė instalimit tė temės"

#: ../../bootlook.pm:1 ../../standalone/draksplash:1
#, c-format
msgid "Notice"
msgstr "Njoftim"

#: ../../bootlook.pm:1 ../../fsedit.pm:1 ../../install_steps_interactive.pm:1
#: ../../install_steps.pm:1 ../../diskdrake/dav.pm:1
#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1 ../../interactive/http.pm:1
#: ../../standalone/draksplash:1
#, c-format
msgid "Error"
msgstr "Gabim"

#: ../../bootlook.pm:1
#, c-format
msgid "Relaunch 'lilo'"
msgstr "Rinise 'lilo'"

#: ../../bootlook.pm:1
#, c-format
msgid ""
"Can't relaunch LiLo!\n"
"Launch \"lilo\" as root in command line to complete LiLo theme installation."
msgstr ""
"E pa mundur nisja e Lilo!\n"
"Nise \"lilo\" nė linjėn komanduese si pėrdorues administrator (root) pėr tė "
"pėrfunduar instalimin e temės LILO."

#: ../../bootlook.pm:1
#, c-format
msgid "Make initrd 'mkinitrd -f /boot/initrd-%s.img %s'."
msgstr "Krijo initrd me 'mkinitrd -f /boot/initrd-%s.img %s'."

#: ../../bootlook.pm:1
#, c-format
msgid "Can't launch mkinitrd -f /boot/initrd-%s.img %s."
msgstr "E pa mundur nisja e mkinitrd -f /boot/initrd-%s.img %s."

#: ../../bootlook.pm:1
#, c-format
msgid ""
"Can't write /etc/sysconfig/bootsplash\n"
"File not found."
msgstr ""
"Nuk mund tė shruhet nė /etc/sysconfig/bootsplash\n"
"Skedarja nuk gjindet."

#: ../../bootlook.pm:1
#, c-format
msgid "Write %s"
msgstr "Shkruarja e %s"

#: ../../bootlook.pm:1
#, c-format
msgid "Can't write /etc/sysconfig/bootsplash."
msgstr "Nuk mund tė shruhet nė /etc/sysconfig/bootsplash."

#: ../../bootlook.pm:1
#, c-format
msgid "Lilo message not found"
msgstr "Lajmė LILO nuk gjindet"

#: ../../bootlook.pm:1
#, c-format
msgid "Copy %s to %s"
msgstr "Kopjo nga %s  %s"

#: ../../bootlook.pm:1
#, c-format
msgid "Backup %s to %s.old"
msgstr "Regjistro nga %s  %s.old"

#: ../../bootlook.pm:1
#, c-format
msgid "Create new theme"
msgstr "Krijo temė tė re"

#: ../../bootlook.pm:1
#, c-format
msgid ""
"Display theme\n"
"under console"
msgstr ""
"Ēfaqe temėn\n"
"ndėr konsol"

#: ../../bootlook.pm:1
#, c-format
msgid "Install themes"
msgstr "Intalim i temave"

#: ../../bootlook.pm:1
#, c-format
msgid "Lilo/grub mode"
msgstr "Modė Lilo/grub"

#: ../../bootlook.pm:1
#, c-format
msgid "Yaboot mode"
msgstr "Modė me nisje tė udhėzuar"

#: ../../bootlook.pm:1
#, c-format
msgid "Launch Aurora at boot time"
msgstr "Nisje e plotė grafike (Aurora)"

#: ../../bootlook.pm:1
#, c-format
msgid "Traditional Gtk+ Monitor"
msgstr "Monitor tradicionel Gtk+"

#: ../../bootlook.pm:1
#, c-format
msgid "Traditional Monitor"
msgstr "Monitor tradicionel"

#: ../../bootlook.pm:1
#, c-format
msgid "NewStyle Monitor"
msgstr "Monitor me stil tė ri"

#: ../../bootlook.pm:1
#, c-format
msgid "NewStyle Categorizing Monitor"
msgstr "Monitor me stil tė ri nė kategorizim"

#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
msgid "<control>Q"
msgstr "<control>Q"

#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
#: ../../standalone/logdrake:1
#, c-format
msgid "/File/_Quit"
msgstr "/Skedare/_Braktise"

#: ../../bootlook.pm:1 ../../standalone/drakfloppy:1
#: ../../standalone/harddrake2:1 ../../standalone/logdrake:1
#, c-format
msgid "/_File"
msgstr "/_Skedare"

#: ../../bootlook.pm:1
#, c-format
msgid "Boot Style Configuration"
msgstr "Konfigurim i Stilit tė nisjes"

#: ../../common.pm:1
#, c-format
msgid "consolehelper missing"
msgstr "mungesė e consolehelper"

#: ../../common.pm:1
#, c-format
msgid "kdesu missing"
msgstr "mungesė e kdesu"

#: ../../common.pm:1
#, c-format
msgid "Screenshots will be available after install in %s"
msgstr ""
"Tėrheqjet e ekranit (screenshots) janė tė mundura mbas instalimit nė %s"

#: ../../common.pm:1
#, c-format
msgid "Can't make screenshots before partitioning"
msgstr "E pa mundur tė bėhen tėrheqjet e ekranit (screenshots) para ndarjeve"

#: ../../common.pm:1
#, c-format
msgid "%d seconds"
msgstr "%d sekunda"

#: ../../common.pm:1
#, c-format
msgid "1 minute"
msgstr "1 minutė"

#: ../../common.pm:1
#, c-format
msgid "%d minutes"
msgstr "%d minuta"

#: ../../common.pm:1
#, c-format
msgid "TB"
msgstr "TB"

#: ../../common.pm:1
#, c-format
msgid "GB"
msgstr "GB"

#: ../../common.pm:1
#, c-format
msgid "MB"
msgstr "MB"

#: ../../common.pm:1
#, c-format
msgid "KB"
msgstr "KB"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United States"
msgstr "Shtete e Bashkuara"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Austria"
msgstr "Austria"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#: ../../standalone/drakxtv:1
#, c-format
msgid "Italy"
msgstr "Italia"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Netherlands"
msgstr "Holanda"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Sweden"
msgstr "Suedia"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Norway"
msgstr "Norvegjia"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Greece"
msgstr "Greqia"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Germany"
msgstr "Gjermania"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Czech Republic"
msgstr "Republika Ēeke"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Belgium"
msgstr "Belgjika"

#: ../../crypto.pm:1 ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "France"
msgstr "Franca"

#: ../../crypto.pm:1 ../../lang.pm:1
#, c-format
msgid "Costa Rica"
msgstr "Kosta Rika"

#: ../../fsedit.pm:1
#, c-format
msgid "Error opening %s for writing: %s"
msgstr "Gabim gjatė hapjes sė %s pėr shkruarje: %s"

#: ../../fsedit.pm:1
#, c-format
msgid "Nothing to do"
msgstr "Mos bėjė asgjė"

#: ../../fsedit.pm:1
#, c-format
msgid "Not enough free space for auto-allocating"
msgstr "Vend tė pa mjaftueshėm pėr ndarje automatike"

#: ../../fsedit.pm:1
#, c-format
msgid "You can't use an encrypted file system for mount point %s"
msgstr ""
"Ju nuk mund tė pėrdorni sistemin e skedareve tė kriptuara pėr kėtė pikė "
"montuese %s"

#: ../../fsedit.pm:1
#, c-format
msgid ""
"You need a true filesystem (ext2/ext3, reiserfs, xfs, or jfs) for this mount "
"point\n"
msgstr ""
"Ju keni nevoj pėr njė sistem tė vėrtet tė skedareve (ext2/ext3, reiserfs, "
"xfs, ose jfs)pėr kėtė pikė tė montimit\n"

#: ../../fsedit.pm:1
#, c-format
msgid "This directory should remain within the root filesystem"
msgstr ""
"Ky repertor duhet tė qėndroj nė ndarjen rrėnjėzore tė sistemit tė skedareve"

#: ../../fsedit.pm:1
#, c-format
msgid "You can't use a LVM Logical Volume for mount point %s"
msgstr ""
"Ju nuk mund tė pėrdorni njė ndarje logjike LVM pėr njė pikė montuese %s"

#: ../../fsedit.pm:1
#, c-format
msgid "There is already a partition with mount point %s\n"
msgstr "Pika montuese %s ėshtė nė pėrdorim e sipėr\n"

#: ../../fsedit.pm:1
#, c-format
msgid "Mount points must begin with a leading /"
msgstr "Pikat montuese duhet tė fillojnė me / "

#: ../../fsedit.pm:1
#, c-format
msgid "You can't use ReiserFS for partitions smaller than 32MB"
msgstr "Ju nuk mund tė pėrdorni ReiserFS  pėr ndarjet mė tė vogla se 32MB"

#: ../../fsedit.pm:1
#, c-format
msgid "You can't use JFS for partitions smaller than 16MB"
msgstr "Ju nuk mund tė pėrdorni JFS pėr ndarjet mė tė vogla se 16MB"

#: ../../fsedit.pm:1
#, c-format
msgid ""
"I can't read the partition table of device %s, it's too corrupted for me :(\n"
"I can try to go on, erasing over bad partitions (ALL DATA will be lost!).\n"
"The other solution is to not allow DrakX to modify the partition table.\n"
"(the error is %s)\n"
"\n"
"Do you agree to loose all the partitions?\n"
msgstr ""
"Tabela e ndarjes sė %s nuk mud tė lexohet sepse ėshtė tejet e dėmtuar.\n"
"Dhe ėshtė e mundur qė tė shlyhen ndarjet e dėmtuara, (TĖ GJITHA TĖ DHĖNT DTĖ "
"HUMBEN!)\n"
"Zgjidhja tjetėr ėshtė mos lejimi i DrakX-it ta ndryshojė tabelėn e "
"ndarjeve.\n"
"(gabimi ėshtė %s)\n"
"\n"
"A jeni i pajtimit qė tė hymbni tė gjitha ndarjetė?\n"

#: ../../fsedit.pm:1
#, c-format
msgid "server"
msgstr "server"

#: ../../fsedit.pm:1
#, c-format
msgid "with /usr"
msgstr "me /usr"

#: ../../fsedit.pm:1
#, c-format
msgid "simple"
msgstr "thjeshtė"

#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Enabling swap partition %s"
msgstr "Formatim i ndarjes %s"

#: ../../fs.pm:1 ../../partition_table.pm:1
#, c-format
msgid "error unmounting %s: %s"
msgstr "gabim gjatė montimit %s: %s"

#: ../../fs.pm:1
#, c-format
msgid "mounting partition %s in directory %s failed"
msgstr "montimi i ndarjes %s nė repertorin %s dėshtoj"

#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Mounting partition %s"
msgstr "Formatim i ndarjes %s"

#: ../../fs.pm:1
#, fuzzy, c-format
msgid "Checking %s"
msgstr "Kopjim i %s"

#: ../../fs.pm:1
#, c-format
msgid "Formatting partition %s"
msgstr "Formatim i ndarjes %s"

#: ../../fs.pm:1
#, c-format
msgid "Creating and formatting file %s"
msgstr "Krijimi dhe formatimi i ndarjeve %s"

#: ../../fs.pm:1
#, c-format
msgid "I don't know how to format %s in type %s"
msgstr "I pa mundur formatimi i %s nė tipin %s"

#: ../../fs.pm:1
#, c-format
msgid "%s formatting of %s failed"
msgstr "formatimi i formės %s nė formėn %s dėshtoj"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Click on \"Next ->\" if you want to delete all data and partitions present\n"
"on this hard drive. Be careful, after clicking on \"Next ->\", you will not\n"
"be able to recover any data and partitions present on this hard drive,\n"
"including any Windows data.\n"
"\n"
"Click on \"<- Previous\" to stop this operation without losing any data and\n"
"partitions present on this hard drive."
msgstr ""
"Klikoni mbi \"OK\" nėse ju dėshironi ti zhdukni tė dhėnat dhe ndarjet nė\n"
"diskun tuaj tė fort. Keni kujdes, mbasi qė tė klikoni nė \"OK\", ju nuk\n"
"keni mundesi ti rikuperoni tė dhenat dhe ndarjet prezente nė kėtė disk tė\n"
"fort, njashtu edhe nėse gjindet ndonji ndarje, me tė dhėna Windows.\n"
"\n"
"Klikoni mbi \"Anulo\" qė tė ndalni kėtė operacion, pa i humbur tė dhėnat\n"
"dhe ndarjet prezente nė kėtė disk tė fort."

#: ../../help.pm:1
#, c-format
msgid ""
"Choose the hard drive you want to erase in order to install your new\n"
"Mandrake Linux partition. Be careful, all data present on it will be lost\n"
"and will not be recoverable!"
msgstr ""
"Zgjedheni diskun e fort (hard drive) qė tė zhduket, pėr tė instaluar\n"
"ndarjen tuaj Mandrake Linux. Keni kujdes, tė gjitha tė dhėnat do tė\n"
"zjduken, dhe nuk mund tė rekuperohen!"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"As a review, DrakX will present a summary of various information it has\n"
"about your system. Depending on your installed hardware, you may have some\n"
"or all of the following entries:\n"
"\n"
" * \"Mouse\": check the current mouse configuration and click on the button\n"
"to change it if necessary.\n"
"\n"
" * \"Keyboard\": check the current keyboard map configuration and click on\n"
"the button to change that if necessary.\n"
"\n"
" * \"Country\": check the current country selection. If you are not in this\n"
"country, click on the button and choose another one.\n"
"\n"
" * \"Timezone\": By default, DrakX deduces your time zone based on the\n"
"primary language you have chosen. But here, just as in your choice of a\n"
"keyboard, you may not be in the country for which the chosen language\n"
"should correspond. You may need to click on the \"Timezone\" button to\n"
"configure the clock for the correct timezone.\n"
"\n"
" * \"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation.\n"
"\n"
" * \"Bootloader\": if you wish to change your bootloader configuration,\n"
"click that button. This should be reserved to advanced users.\n"
"\n"
" * \"Graphical Interface\": by default, DrakX configures your graphical\n"
"interface in \"800x600\" resolution. If that does not suits you, click on\n"
"the button to reconfigure your grapical interface.\n"
"\n"
" * \"Network\": If you want to configure your Internet or local network\n"
"access now, you can by clicking on this button.\n"
"\n"
" * \"Sound card\": if a sound card is detected on your system, it is\n"
"displayed here. If you notice the sound card displayed is not the one that\n"
"is actually present on your system, you can click on the button and choose\n"
"another driver.\n"
"\n"
" * \"TV card\": if a TV card is detected on your system, it is displayed\n"
"here. If you have a TV card and it is not detected, click on the button to\n"
"try to configure it manually.\n"
"\n"
" * \"ISDN card\": if an ISDN card is detected on your system, it will be\n"
"displayed here. You can click on the button to change the parameters\n"
"associated with the card."
msgstr ""
"Kėtu ju prezentojmė parametra tė ndryshėm tė sistemit tuaj. Dhe mvaret nga\n"
"nga materiali i instaluar, disa prej tyre, janė tė prezentuara, por ka prej\n"
"tyre qė nuk mund tė prezentohen.\n"
"\n"
" * \"Mini\": verifikoni konfigurimin a tanishėm tė minit, klikoni\n"
"mbi ēelėsin pėr ti ndėrruar mundėsit e tij;\n"
"\n"
" * \"Tastiera\": verifikoni konfigurimin e zgjedhur tė tastierės, klikoni\n"
"mbi ēelėsin pėr ndryshime;\n"
"\n"
" * \"Zonė orare\": DrakX, me marrėveshje, mundohet ta gjejė zonėn orare\n"
"nė tė cilėn ju gjindeni aktualisht. Edhe njė herė, ėshtė e mundur qė ju tė\n"
"mos gjindeni nė njė zonė tė pėrcaktuar orare qė ju pėrshtatet. D.m.th. ju\n"
"duhet tė klikoni mbi ēelėsin \"Zonė orare\", pėr ta identifikuar mė me\n"
"precizitet kohėn e cila duhet tė paraqitet nė orėn tuaj.\n"
"\n"
" * \"Stampues\": duke klikuar mbi ēelėsin \"Asnjė Stampues\", do tė hapet\n"
"njė konfigurim me asistent. Konsultoni kapitullin me ``Nisje Doracaku'', "
"pėr\n"
"mė shumė informacione, se si duhet ta nisni njė stampues tė ri. Njė "
"interfac\n"
"prezentė, e cila ėshtė e njėjtė me atė, qė ėshtė pėrdorur gjatė kohės sė\n"
"instalimit;\n"
"\n"
" * \"Kartelė Zėri\": nėse njė kartelė zėri ėshtė detektuar nė sistemin "
"tuaj,\n"
"ajo do tė paraqitet kėtu. Asnjė ndryshim i mundshėm nė kohėn e instalimit.\n"
"\n"
" * \"Kartelė TV\": nėse ėshtė detektuar njė kartelė TV nė sistemin tuaj, "
"ajo\n"
"do tė paraqitet kėtu. Asnjė ndryshim i mundshėm nė kohėn e instalimit.\n"
"\n"
" * \"Kartelė ISDN\": nėse ėshtė detektuar njė kartelė ISDN nė sistemin "
"tuaj,\n"
"ajoajo do tė paraqitet kėtu. Ju mund tė klikoni nė ēelės pėr ti ndryshuar "
"tė\n"
"gjithė parametrat e dhėnė pėr tė."

#: ../../help.pm:1
#, c-format
msgid ""
"\"Sound card\": if a sound card is detected on your system, it is displayed\n"
"here. If you notice the sound card displayed is not the one that is\n"
"actually present on your system, you can click on the button and choose\n"
"another driver."
msgstr ""

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Yaboot is a bootloader for NewWorld Macintosh hardware and can be used to\n"
"boot GNU/Linux, MacOS or MacOSX. Normally, MacOS and MacOSX are correctly\n"
"detected and installed in the bootloader menu. If this is not the case, you\n"
"can add an entry by hand in this screen. Be careful to choose the correct\n"
"parameters.\n"
"\n"
"Yaboot's main options are:\n"
"\n"
" * Init Message: a simple text message displayed before the boot prompt.\n"
"\n"
" * Boot Device: indicates where you want to place the information required\n"
"to boot to GNU/Linux. Generally, you set up a bootstrap partition earlier\n"
"to hold this information.\n"
"\n"
" * Open Firmware Delay: unlike LILO, there are two delays available with\n"
"yaboot. The first delay is measured in seconds and at this point, you can\n"
"choose between CD, OF boot, MacOS or Linux;\n"
"\n"
" * Kernel Boot Timeout: this timeout is similar to the LILO boot delay.\n"
"After selecting Linux, you will have this delay in 0.1 second before your\n"
"default kernel description is selected;\n"
"\n"
" * Enable CD Boot?: checking this option allows you to choose ``C'' for CD\n"
"at the first boot prompt.\n"
"\n"
" * Enable OF Boot?: checking this option allows you to choose ``N'' for\n"
"Open Firmware at the first boot prompt.\n"
"\n"
" * Default OS: you can select which OS will boot by default when the Open\n"
"Firmware Delay expires."
msgstr ""
"Yaboot ėshtė program pėr nisje tė udhėzuar nė MacIntosh. Ėshtė e mundur qė\n"
"tė niset nė GNU/Linux, MacOS, apo MacOSX nėse ėshtė prezent nė kompjuterin\n"
"tuaj. Normalisht sistemet eksploatuese prezente, duhet tė jenė tė "
"detektuara\n"
"nė fillim. Nėse nuk janė detektuar menjėherė, ju mund ti shtoni nė menyrė\n"
"manuele, hyrjet munguese nė kėtė ekran. Keni kujdes dhe zgjidhni parametrat\n"
"e saktė.\n"
"\n"
"Mundėit kryesore tė Yaboot janė: \n"
"\n"
" * Lajmė i nisjes: njė lajmė i thjeshtė do tė paraqitet para se niset;\n"
"\n"
" * Periferik me Nisje tė Udhėzuar (Boot): pėrcaktoni se ku dėshironi\n"
"t'instaloni programin pėr nisje tė udhėzuar. Zakonisht, ju duhet tė keni\n"
"konfiguruar mė heret njė ndarje me nisje tė udhėzuar (bootstrap), pėr ti\n"
"pėrmbajtur tė gjitha informacionet.\n"
"\n"
" * Kohėzgjatja e Open Firmware: nė ndryshim me LILO, janė dy kohėzgjatje\n"
"nė disponibilitet, me Yaboot. Gjatė kohėzgjatjes sė parė (e llogaritur me\n"
"sekunda), ju mund tė zgjedhni mec CD, OF, MacOS dhe Linux.\n"
"\n"
" * Kohėzgjatja e nisjes sė bėrtamės me udhėzim: kjo kohėzgjatje ėshtė e "
"njėjtė\n"
"sikur LILO. Mbasi qė ta zgjedhni Linux, ju do ta keni tė njėjtėn "
"kohėzgjatje\n"
"(nė dhjetėshin e sekondave) para se tė pranoni parametrat e bėrtamės me\n"
"marrėveshje.\n"
"\n"
" * Autorizo Nisje nga CD(ja): nėse ju e aktivizoni kėtė mundėsi, ju mund ta\n"
"zgjedhni 'C', nė mikėpretjen e parė tė nisjes sė udhėzuar.\n"
"\n"
" * Autorizo Nisje nga OF: nėse ju e aktivizoni kėtė mundėsi, ju mund ta\n"
"zgjedhni 'N', pėr Open Firmware nė mikėpritje tė parė nė nisje tė udhėzuar.\n"
"\n"
" * OS me Marrėveshje: ju mund tė zgjedhni se cili sistem do tė niset me\n"
"marrėveshje, mbasi qė tė pėrfundoj kohėzgjatja e Open Firmware."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"You can add additional entries in yaboot for other operating systems,\n"
"alternate kernels, or for an emergency boot image.\n"
"\n"
"For other OSs, the entry consists only of a label and the \"root\"\n"
"partition.\n"
"\n"
"For Linux, there are a few possible options:\n"
"\n"
" * Label: this is the name you will have to type at the yaboot prompt to\n"
"select this boot option.\n"
"\n"
" * Image: this would be the name of the kernel to boot. Typically, vmlinux\n"
"or a variation of vmlinux with an extension.\n"
"\n"
" * Root: the \"root\" device or ``/'' for your Linux installation.\n"
"\n"
" * Append: on Apple hardware, the kernel append option is often used to\n"
"assist in initializing video hardware, or to enable keyboard mouse button\n"
"emulation for the missing 2nd and 3rd mouse buttons on a stock Apple mouse.\n"
"The following are some examples:\n"
"\n"
"         video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"\n"
"         video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Initrd: this option can be used either to load initial modules before\n"
"the boot device is available, or to load a ramdisk image for an emergency\n"
"boot situation.\n"
"\n"
" * Initrd-size: the default ramdisk size is generally 4096 Kbytes. If you\n"
"need to allocate a large ramdisk, this option can be used to specify a\n"
"ramdisk larger than the default.\n"
"\n"
" * Read-write: normally the \"root\" partition is initially mounted as\n"
"read-only, to allow a file system check before the system becomes ``live''.\n"
"You can override the default with this option.\n"
"\n"
" * NoVideo: should the Apple video hardware prove to be exceptionally\n"
"problematic, you can select this option to boot in ``novideo'' mode, with\n"
"native frame buffer support.\n"
"\n"
" * Default: selects this entry as being the default Linux selection,\n"
"selectable by pressing ENTER at the yaboot prompt. This entry will also be\n"
"highlighted with a ``*'' if you press [Tab] to see the boot selections."
msgstr ""
"Ju mund tė shtoni njė hyrje plotėsuese nė yaboot, pėr tė nisur njė sistem\n"
"tjetėr eksploatues, pėr bėrthama apo pėr imazhe t'emergjencės boot.\n"
"\n"
"Pėr sisteme eksploatimi tė tjera, hyrjet pėrmbahen nė njė etiketė, me\n"
"ndarje rrėnjėzore \"root\".\n"
"\n"
"Pėr Linux, janė disa mundėsi :\n"
"\n"
" * Etiketė: ky ėshtė njė emėr i thjeshtė i cili duhet tė shkruhet nė lajmin\n"
"mikėpritės tė yaboot pėr tė aktivizuar kėtė mundėsi me nisje tė udhėzuar.\n"
"\n"
" * Imazhė: ky ėshtė njė emėr i bėrthamės pėr nisje me udhėzim (boot).\n"
"Zakonisht, vmlinux apo ndryshimi i vmlinux me njė shtesė;\n"
"\n"
" * Rrėnja: periferiku rrėnjė \"root\" apo ``/'' pėr Inslaimin e Linux;\n"
"\n"
" * Bashkangjitje: Nė materiale Apple, bėrthama bashkangjitėse ėshtė e\n"
"pėrdorur gjithnjė, pėr t'asistuar nė inicializimin e materialit video,\n"
"apo pėr tė aktivizuar ēelėsat e tastierės, dhe tė minit, konkurimi i\n"
"tastierės nė dy ēelėsatė, tė cillėt, i mungojnė minit shpeshė herė tek\n"
"Apple. Ja pra disa shembuj:\n"
"\n"
"         video=aty128fb:vmode:17,cmode:32,mclk:71 adb_buttons=103,111\n"
"hda=autotune\n"
"         video=atyfb:vmode:12,cmode:24 adb_buttons=103,111\n"
"\n"
" * Skedare RamDisk: kjo mundėsi mund tė pėrdoret pėr tė ngarkuar\n"
"modulet para se, periferiku me nisje tė udhėzuar, tė jetė nė disponim,\n"
"apo pėr tė ngarkuar njė imazhė ramdisk, pėr njė nisje t'emergjencesė.\n"
"\n"
" * Madhėsia-RamDisk: madhėsi me marrėvshje, pėr ramdisk ėshtė zakonisht\n"
"4,096 bytė. Nėse ju keni njė madhėsi mė tė madhe se kjo, atėher pėrdoreni\n"
"kėtė mundėsi;\n"
"\n"
" * Lexo-shkruaj: normalisht ndarja \"root\" ėshtė fillimisht e montuar\n"
"nė modin e leximit, pėr ta verifikuar sistemin e skedareve para se tė\n"
"jetė i aktivizuar. Me kėtė mundėsi, ju mund tė autorozoni ndarjen\n"
"rrėnjėzore tė jetė montuar direkt nė modė shkrimi.\n"
" * NoVideo: nėse kartela grafike ju paraqet shumė probleme, ju duhet\n"
"tė aktivizoni kėtė mundėsi pėr tu nisur nė modė ``novideo'', me kornizė\n"
"tė pėrkrahur nė tampon.\n"
"\n"
" * Marrėveshje: zgjidhni kėtė hyrje sikur mundėsi me marrėveshje,\n"
"aktivizojeni duke e shtypur mbi ENTER [Return], nė lajmin mikėpritės.\n"
"Kjo hyrje do tė pėrcillet me ``*'', nėse ju e shtypni [Tab] pėr tė\n"
"vėrejtur listėn me tė gjitha mundėsitė pėr zgjedhje."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"DrakX will first detect any IDE devices present in your computer. It will\n"
"also scan for one or more PCI SCSI cards on your system. If a SCSI card is\n"
"found, DrakX will automatically install the appropriate driver.\n"
"\n"
"Because hardware detection is not foolproof, DrakX will ask you if you have\n"
"a PCI SCSI installed. Clicking \" Yes\" will display a list of SCSI cards\n"
"to choose from. Click \"No\" if you know that you have no SCSI hardware in\n"
"your machine. If you're not sure, you can check the list of hardware\n"
"detected in your machine by selecting \"See hardware info \" and clicking\n"
"the \"Next ->\". Examine the list of hardware and then click on the \"Next\n"
"->\" button to return to the SCSI interface question.\n"
"\n"
"If you had to manually specify your PCI SCSI adapter, DrakX will ask if you\n"
"want to configure options for it. You should allow DrakX to probe the\n"
"hardware for the card-specific options which are needed to initialize the\n"
"adapter. Most of the time, DrakX will get through this step without any\n"
"issues.\n"
"\n"
"If DrakX is not able to probe for the options to automatically determine\n"
"which parameters need to be passed to the hardware, you'll need to manually\n"
"configure the driver."
msgstr ""
"DrakX, tani do tė detektoj gjdo IDE periferike nė kompjuterin tuaj. Ai\n"
"njashtu do tė scanon, njė apo mė shumė PCI SCSI kartela nė sistemin\n"
"tuaj. Nėse njė kartelė SCSI ėshtė gjetur nga DrakX, ai do t'instaloj\n"
"automatikisht pilotin e tij tė nevojshėm.\n"
"\n"
"Sepse detektuesi i materialit, nė disa raste nuk mund tė detektoj ndonji\n"
"pjesė, DrakX do tė ju pyes, nėse ėshtė prezente ndonjė kartelė PCI\n"
"SCSI. Klikoni mbi \"Po\", nėse ju jeni i sigurt se ėshtė njė kartelė\n"
"SCSI nė sistemin tuaj. Ju do tė jeni i informuar me njė listė tė\n"
"kartelave SCSI pėr ti zgjedhur ato. Klikoni mbi \"Jo\" nėse ju nuk\n"
"posedoni material SCSI. Nėse ju nuk jeni i sigurt, ju mund ta verifikoni\n"
"listėn e materialit tė detektuar nė makinėn tuaj, duke zgjedhur \"Verifiko\n"
"informacionet mbi materialin\" dhe kliko mbi \"OK\". Verifiko listėn e\n"
"materialit dhe kliko mbi ēelėsin \"OK\" pėr tu kthyer nė interfacėn me\n"
"pyetje tė SCSI.\n"
"\n"
"Nėse ju duhet tė specifikoni kartelėn tuaj nė mėnyrė manuale, DrakX do tė\n"
"ju pyes pėr specifikimin e mundėsive tė tija. Ju duhet tė jeloni qė DrakX\n"
"tė verifikoj automatikisht kartelėn tuaj, pėr mundėsit e nevojshme tė\n"
"pėrcaktuara.\n"
"\n"
"Ėshtė e mundur qė, DrakX tė mos jetė nė gjendje ta verifikoj mundėsit\n"
"e nevojshme. Nė kėto raste, ju duhet ti pėrcaktoni manuelisht."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Now, it's time to select a printing system for your computer. Other OSs may\n"
"offer you one, but Mandrake Linux offers two. Each of the printing systems\n"
"is best for a particular type of configuration.\n"
"\n"
" * \"pdq\" -- which is an acronym for ``print, don't queue'', is the choice\n"
"if you have a direct connection to your printer, you want to be able to\n"
"panic out of printer jams, and you do not have networked printers. (\"pdq\n"
"\" will handle only very simple network cases and is somewhat slow when\n"
"used with networks.) It's recommended that you use \"pdq \" if this is your\n"
"first experience with GNU/Linux.\n"
"\n"
" * \"CUPS\" - `` Common Unix Printing System'', is an excellent choice for\n"
"printing to your local printer or to one halfway around the planet. It is\n"
"simple to configure and can act as a server or a client for the ancient\n"
"\"lpd \" printing system, so it compatible with older operating systems\n"
"that may still need print services. While quite powerful, the basic setup\n"
"is almost as easy as \"pdq\". If you need to emulate a \"lpd\" server, make\n"
"sure to turn on the \"cups-lpd \" daemon. \"CUPS\" includes graphical\n"
"front-ends for printing or choosing printer options and for managing the\n"
"printer.\n"
"\n"
"If you make a choice now, and later find that you don't like your printing\n"
"system you may change it by running PrinterDrake from the Mandrake Control\n"
"Center and clicking the expert button."
msgstr ""
"Kėtu, ne e zgjedhim njė sistem stampues pėr kompjuterin tuaj. Sistemet "
"tjera\n"
"eksploatuese ofrojnė vetėm njė, kurse Linux ofro dy.\n"
"\n"
" * \"pdq\" -- qė do tė thotė ``print, don't queue'' (stampim pas kaluar nė\n"
"rradhitje rendore), ėshtė njė mundėsi nėse stampuesi juaj ėshtė i kyqur\n"
"direkt nė stacionin tuaj punues, dhe nėse ju dėshironi ta ndėrpreni "
"stampimin\n"
"direkt, nė rastė te ndonji problemi, dhe nėse nuk posedoni njė stampues nė "
"rrjet.\n"
"Do ti merrė parasysh rastet e thjeshta nė rrjet, mirėpo nė disa raste nuk "
"janė\n"
"tė sakta urdhėrat. Zgjedheni pdq nėse ju jeni nė njė eksperiance tė parė me "
"Linux.\n"
"Ju keni mundėsi, gjithnji ta ndėrroni sistemin tuaj, mė vonė me PrinterDrake "
"nga\n"
"Mandrake Control Center, duke klikuar mbi ēelėsin ekspert.\n"
"\n"
" * \"CUPS\" -- ``Common Unix Printing System'', ėshtė ekselentė pėr stampim\n"
"nė sistmin tuaj, me satmpues lokal, apo stampues tė cilėt gjinden nė anėn "
"tjetėr\n"
"tė botės. Ėshtė i thjeshtė dhe mund tė reagon sikur server, apo sikur njė "
"klient i\n"
"vjetėr i sistemit stampues \"lpd\". Bėhet fjalė pėr njė vegėl tejet tė "
"fuqishme,\n"
"mirėpo konfiguracionet e bazės janė tė thjeshta sikur pdq. Pėr ta konkuruar "
"nė\n"
"njė server \"lpd\" ju duhet tė niseni nė dimon \"cups-lpd\". Mė nė fund "
"cups\n"
"ofron njė interfac grafike tė thjeshtė, pėr tė stampuar dhe pėr ti zgjedhur\n"
"stampuesit."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"LILO and grub are GNU/Linux bootloaders. Normally, this stage is totally\n"
"automated. DrakX will analyze the disk boot sector and act according to\n"
"what it finds there:\n"
"\n"
" * if a Windows boot sector is found, it will replace it with a grub/LILO\n"
"boot sector. This way you will be able to load either GNU/Linux or another\n"
"OS.\n"
"\n"
" * if a grub or LILO boot sector is found, it will replace it with a new\n"
"one.\n"
"\n"
"If it cannot make a determination, DrakX will ask you where to place the\n"
"bootloader.\n"
"\n"
"\"Boot device\": in most cases, you will not change the default (\"First\n"
"sector of drive (MBR)\"), but if you prefer, the bootloader can be\n"
"installed on the second hard drive (\"/dev/hdb\"), or even on a floppy disk\n"
"(\"On Floppy\").\n"
"\n"
"Checking \"Create a boot disk\" allows you to have a rescue bot media\n"
"handy.\n"
"\n"
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
"least two situations where having a boot floppy is critical:\n"
"\n"
" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
"of your main disk (unless you are using another boot manager), to allow you\n"
"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
"your system). If at some point you need to reinstall Windows, the Microsoft\n"
"install process will rewrite the boot sector and remove your ability to\n"
"start GNU/Linux!\n"
"\n"
" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
"fair number of system tools for restoring a system that has crashed due to\n"
"a power failure, an unfortunate typing error, a forgotten root password, or\n"
"any other reason.\n"
"\n"
"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
"floppy disk must be blank or have non-critical data on it - DrakX will\n"
"format the floppy and will rewrite the whole disk."
msgstr ""
"CD-ROM(i) i instalimit Mandrake Linux, ka njė modė tė rikuperimit me "
"pėrcaktim.\n"
"Ju mund tė hyni nė tė, duke nisur kompjuterin tuaj me CD-ROM. Simbas "
"versionit\n"
"tuaj \"Bios\", ju duhet ta pėcaktoni qė tė niset me CD-ROM. Ju duhet tė\n"
"ktheheni nė disketė tė nisjes nė tė dyja rastet precize:\n"
"\n"
" * Nė momentin e instalimit tė nisjes me udhėzim, DrakX do tė rishkruaj\n"
"mbi sektorin (MBR) me pėrmbajtje tė programit udhėzues (bootloader), qė\n"
"mė nė fund tė ju mundėsoj njė nisje me Linux apo Windows (duke marrė\n"
"parasysh se ju posedoni dy sisteme t'ekxploatimit). Nėse ju e ri-instaloni\n"
"Windows-in, ai do tė rishkruhet mbi MBR, dhe nuk do tė jetė mė e mundur qė "
"ju\n"
"tė nisni Linux-in nė sistemin tuaj.\n"
"\n"
" * Nėse ndonji problem ju paraqitet dhe qė ėshtė e pa mundur nisja e\n"
"GNU/Linux, nga disku i fort (hard disk), kjo diskete ėshtė e vetmja\n"
"mundėsi qė ta nisni Linux-in falas asaj. Ajo posedon njė numėr tė\n"
"madhė veglash pėr rikuperimin e sistemit tė demtuar, pa marrė parasysh\n"
"nga dėmet e shkatuara.\n"
"\n"
"Duke klikuar nė kėtė etapė, do tė ju pyesim tė futni njė disketė.\n"
"Disketa do tė jetė kompletisht e shlyer, dhe DrakX do tė kujdeset\n"
"pėr formatimin e saj, dhe futjen e skedareve tė nevojitura."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"After you have configured the general bootloader parameters, the list of\n"
"boot options that will be available at boot time will be displayed.\n"
"\n"
"If there are other operating systems installed on your machine they will\n"
"automatically be added to the boot menu. You can fine-tune the existing\n"
"options by clicking \"Add\" to create a new entry; selecting an entry and\n"
"clicking \"Modify\" or \"Remove\" to modify or remove it. \"OK\" validates\n"
"your changes.\n"
"\n"
"You may also not want to give access to these other operating systems to\n"
"anyone who goes to the console and reboots the machine. You can delete the\n"
"corresponding entries for the operating systems to remove them from the\n"
"bootloader menu, but you will need a boot disk in order to boot those other\n"
"operating systems!"
msgstr ""
"Mbasi qė ti keni konfiguruar parametrat e pėrgjithshėm tė nisjes me "
"udhėzim,\n"
"lista i nisjeve me mundėsi, do tė jetė nė disponibilitet nė nisje tė "
"sistemit\n"
"\n"
"Nėse aty gjindet ndonji sistem tjetėr eksploatues, ai do tė jetė i shtuar\n"
"automatikisht nė menu tė nisjes. Ju mund ta kthjelloni kėtu konfigurimin\n"
"tuaj. Zgjedheni njė hyrje, klikoni mbi \"Ndrysho\" pėr tė botuar apo pėr\n"
"ta nxjerrur; mbi \"Shtim\" krijoni njė hyrje tė re. Dhe nė fund \"Pėrfurndo"
"\"\n"
"qė do tė ju mundėsoj tė kaloni nė etapėn e ardhshme.\n"
"\n"
"Ėshtė e mundur qė ju dėshironi tė kufizoni hyrjet nė kėtė sistem "
"eksploatues.\n"
"E tėra qė ju nevojitet ėshtė, hyrja nė mundėsi tė nisjes, dhe niseni me njė\n"
"disketė."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"This dialog allows to finely tune your bootloader:\n"
"\n"
" * \"Bootloader to use\": there are three choices for your bootloader:\n"
"\n"
"    * \"GRUB\": if you prefer grub (text menu).\n"
"\n"
"    * \"LILO with text menu\": if you prefer LILO with its text menu\n"
"interface.\n"
"\n"
"    * \"LILO with graphical menu\": if you prefer LILO with its graphical\n"
"interface.\n"
"\n"
" * \"Boot device\": in most cases, you will not change the default\n"
"(\"/dev/hda\"), but if you prefer, the bootloader can be installed on the\n"
"second hard drive (\"/dev/hdb\"), or even on a floppy disk (\"/dev/fd0\");\n"
"\n"
" * \"Delay before booting the default image\": after a boot or a reboot of\n"
"the computer, this is the delay given to the user at the console to select\n"
"a boot entry other than the default.\n"
"\n"
"!! Beware that if you choose not to install a bootloader (by selecting\n"
"\"Skip\"), you must ensure that you have a way to boot your Mandrake Linux\n"
"system! Be sure you know what you do before changing any of the options. !!\n"
"\n"
"Clicking the \"Advanced\" button in this dialog will offer advanced options\n"
"that are reserved for the expert user."
msgstr ""
"LILO dhe grun janė dy programe me nisje tė udhėzuar pėr GNU/Linux. "
"Normalisht\n"
"kjo etapė ėshtė kompletisht e automatizuar. Nė tė vėrtet DrakX analizon\n"
"sektorin e nisjes (master boot record), dhe reagon nė funksion me atė qė\n"
"mund tė lexoj:\n"
"\n"
" * nėse ėshtė detektuar njė sektor i nisjes Windows, ai do tė jetė i\n"
"zėvendėsuar me LILO/GRUB. D.m.th. ju mund tė nisni GNU/Linux, dhe tė gjitha\n"
"sistemet tjera eksploatuese.\n"
"\n"
" * nėse grub apo LILO janė detektuar, do tė jenė zėvendėsuar me njė version\n"
"mė tė ri;\n"
"\n"
"Nė rastė tė dyshimt, DrakX do tė ēfaqė mundėsi tė ndryshme.\n"
"\n"
" * \"Program i nisjes sė udhėzuar pėr pėrdorim\": ju keni tri mundėsi:\n"
"\n"
"    * \"GRUB\": nėse ju preferoni grub me (menu tekst);\n"
"\n"
"    * \"LILO me menu grafike\": nėse ju preferoni LILO me interfac grafike;\n"
"\n"
"    * \"LILO me modė tektsti\": nėse ju preferoni interfac LILO me modė "
"teksti;\n"
"\n"
" * \"Periferik me nisje tė udhėzuar\": nė shumicėn e rasteve ju nuk duhet "
"ta\n"
"ndėrroni nisjen e udhėzuar me marrėvshje (\"/dev/hda\"), mirėpo nėse ju\n"
"dėshironi ta bėni, programi me nisje tė udhėzuar (bootloader), mund "
"t'instalohet\n"
"nė diskun e fort tė dytė (\"/dev/hdb\"), apo njashtu edhe nė disketėn "
"floppy\n"
"(floppy disk) (\"/dev/fd0\");\n"
"\n"
" * \"Kohėzgjatja para se tė niset aktivizimi i mundėsive me marrėveshje\": "
"kur ju\n"
"e nisni kumpjuterin tuaj, bėhet fjalė pėr kohėn e cila i akordohet "
"pėrdoruesit\n"
"pėr tė nisur njė sistem tjetėr eksploatues.\n"
"\n"
"!! Kujdes, nėse ju vendosni qė tė mos instaloni programin me nisje tė "
"udhėzuar\n"
"(duke klikuar mbi \"Anulo\"), ju duhet tė jeni i sigurt se posedoni njė "
"metodė\n"
"tjetėr pėr ta nisur sistemin tuaj. Njashtu ju duhet tė jeni i sigurt se "
"ēfarė\n"
"bėni nėse ju i ndryshoni mundėsit e tij. !!\n"
"\n"
"Duke klikuar mbi ēelėsin \"Vazhdo para\" nė kėtė kutijė dialogu, do tė ju\n"
"ofrojmė shumė mundėsi pėrparuese, tė cilat janė tė rezervuara pėr eksperta."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"This is the most crucial decision point for the security of your GNU/Linux\n"
"system: you have to enter the \"root\" password. \"Root\" is the system\n"
"administrator and is the only one authorized to make updates, add users,\n"
"change the overall system configuration, and so on. In short, \"root\" can\n"
"do everything! That is why you must choose a password that is difficult to\n"
"guess - DrakX will tell you if the password that you chose too easy. As you\n"
"can see, you are not forced to enter a password, but we strongly advise you\n"
"against. GNU/Linux is as prone to operator error as any other operating\n"
"system. Since \"root\" can overcome all limitations and unintentionally\n"
"erase all data on partitions by carelessly accessing the partitions\n"
"themselves, it is important that it be difficult to become \"root\".\n"
"\n"
"The password should be a mixture of alphanumeric characters and at least 8\n"
"characters long. Never write down the \"root\" password -- it makes it too\n"
"easy to compromise a system.\n"
"\n"
"One caveat -- do not make the password too long or complicated because you\n"
"must be able to remember it!\n"
"\n"
"The password will not be displayed on screen as you type it in. To reduce\n"
"the chance of a blind typing error you will need to enter the password\n"
"twice. If you do happen to make the same typing error twice, this\n"
"``incorrect'' password will have to be used the first time you connect.\n"
"\n"
"If you wish access to this computer to be controlled by an authentication\n"
"server, clisk the \"Advanced\" button.\n"
"\n"
"If your network uses either LDAP, NIS, or PDC Windows Domain authentication\n"
"services, select the appropriate one as \"authentication\". If you do not\n"
"know which to use, ask your network administrator.\n"
"\n"
"If you happen to have problems with reminding passwords, you can choose to\n"
"have \"No password\", if your computer won't be connected to the Internet,\n"
"and if you trust anybody having access to it."
msgstr ""
"Kėtu duhet ta dini se do ta merrnji njė vendim mė tė vėshtirė, pėr sigurinė\n"
"e sistemit tuaj GNU/Linux: ju duhet tė futni sikur administrator \"root\"\n"
"parullėn tuaj. \"Root\" ėshtė administrues i sistemit me tė gjitha tė "
"drejtat\n"
"e konfigurimit, azhurnimit, shtimit tė pėrdoruesėve etj. Konkretisht \"root"
"\"\n"
"mund tė bėjė ēdo gjė nė sistemin tuaj. Dhe pėr atė arėsye ju duhet tė futni\n"
"parullėn e tij, qė ėshtė shumė veshtirė ta merrni me mend atė -- DrakX do "
"tė\n"
"ju tregoj nėse ėshtė lehtė. Siq po e shifni, ju mund tė mos e futni "
"parullėn\n"
"ne ju rekomandojmė sinqerisht kundėr kėsaj veprimtarie. Duke dituer se\n"
"gabimet bėhen shumė lehtė dhe pa ditur, njė pėrdorues me tė gjitha tė "
"drejtat,\n"
"mund tė shkatrroj tėrė sistemin tuaj, pėr kėtė arėsey parulla do tė jetė\n"
"njė barrierre hyrėse pėr tė.\n"
"\n"
"Zgjedhja e parullės duhet tė pėrmbajė sė paku 8 karaktere (shkronja, numra \n"
"etj) alfanumerik. Mos e shkruani kurrė njė parullė diku, mundohuni qė ta "
"mbani\n"
"nė mend. Naturisht duhet ta qeversini parullėn tuaj, sepse ėshtė e pa mundur "
"qė\n"
"tė mbahen nė mend 30 karaktere tė ndryshme.\n"
"\n"
"Megjithatė, mos e shkruani parullėn shumė tė gjatė apo tė komplikuar, sepse\n"
"ju duhet tė jeni nė gjendje, qė ta mbani nė mend, pa u mundur shumė.\n"
"\n"
"Parulla nuk do tė paraqitet n'ekran, sikur e shtypni nė tastierė direkt, "
"prej\n"
"nga, ju duhet ta shtypni dy herė, pėr ta zvogėluar gabimin e mundshėm. Kjo\n"
"do tė regjistrohet, dhe ju duhet ta ri-shtypni pėr tė hyrė nė sistemin tuaj\n"
"pėr tė parėn herė.\n"
"\n"
"Nė modė ekspert ju do tė pyeteni, nėse ju dėshironi tė kyqeni nė njė server\n"
"vėrtetues, sikur NIS apo LDAP.\n"
"\n"
"Nėse rrjeti i juaj pėrdorė LDAP, NIS apo njė PDC Windows, zgjedheni\n"
"njė protokol vėrtetues. Nė raste tė dyshimta, pyetni administratuesin tuja "
"tė\n"
"rrjetit.\n"
"\n"
"Ne kompjuteri juaj nuk ėshtė i kyqur nė rrjetin e internetit, zgjedhni nė\n"
"\"Skedaret lokale\" pėr njė vėrtetėsim."

#: ../../help.pm:1
#, c-format
msgid ""
"Please select the correct port. For example, the \"COM1\" port under\n"
"Windows is named \"ttyS0\" under GNU/Linux."
msgstr ""
"Ju lutemi zgjedheni portėn e saktė. Pėr shembull \"COM1\" ėshtė portė ndėr\n"
"Windows, kurse \"ttyS0\" ėshtė emėr ndėr GNU/Linux."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Usually, DrakX has no problems detecting the number of buttons on your\n"
"mouse. If it does, it assumes you have a two-button mouse and will\n"
"configure it for third-button emulation. The third-button mouse button of a\n"
"two-button mouse can be ``pressed'' by simultaneously clicking the left and\n"
"right mouse buttons. DrakX will automatically know whether your mouse uses\n"
"a PS/2, serial or USB interface.\n"
"\n"
"If for some reason you wish to specify a different type of mouse, select it\n"
"from the provided list.\n"
"\n"
"If you choose a mouse other than the default, a test screen will be\n"
"displayed. Use the buttons and wheel to verify that the settings are\n"
"correct and that the mouse is working correctly. If the mouse is not\n"
"working well, press the space bar or [Return] key to cancel the test and to\n"
"go back to the list of choices.\n"
"\n"
"Wheel mice are occasionally not detected automatically, so you will need to\n"
"select your mouse from a list. Be sure to select the one corresponding to\n"
"the port that your mouse is attached to. After selecting a mouse and\n"
"pressing the \"Next ->\" button, a mouse image is displayed on-screen.\n"
"Scroll the mouse wheel to ensure that it is activated correctly. Once you\n"
"see the on-screen scroll wheel moving as you scroll your mouse wheel, test\n"
"the buttons and check that the mouse pointer moves on-screen as you move\n"
"your mouse."
msgstr ""
"DrakX normalisht detekton sasinė e ēelėsave tė minit tuaj. Nėse nuk\n"
"i merrė me njohuri, se ju posedoni njė minė me dy ēelėsa, ai do ta\n"
"konfiguroj njė ēelės tė tretė imitues. Njashtu, DrakX do ta dijė\n"
"automatikishtė se ēfarė mini posedoni PS/2 apo USB.\n"
"\n"
"Nėse ju dėshironi t'instaloni njė tjetėr tip mini, zgjedhni njė nga\n"
"lista qė janė tė shėnuar nė tė.\n"
"\n"
"Nėse ju e zgjedhni njė tjetėr minė,qė ėshtė propozuar me\n"
"marrėveshje, DrakX do tė ju prezentoj njė ekran testi. Pėrdorni\n"
"ēelėsat dhe rrotėn pėr tu siguruar se ēdo gjė fuksionon si duhet.\n"
"Nėse mini juaj nuk funksionon si duhet, shtypni mbi shufrėn pėr hapėsirė\n"
"(space bar) apo nė [Return] pėr tė \"Anuluar\" atė zgjedhje dhe\n"
"zgjedheni pėrsėri njė tjetėr.\n"
"\n"
"Nė disa raste mitė me rrotė nuk janė tė detektuar automatikisht. Ju duhet\n"
"ta zgjedhni manuelisht, nė listėn e propozuar: Sigurohuni se keni zgjedhur\n"
"portėn e saktė tė kyqur nė minin tuaj. Mbasi qė ju e shtypni ēelėsin \"OK\"\n"
"njė imazhė i minit do trė paraqitet. Dhe mandej ju duhet ta lėvizni rrotėn\n"
"e minit tuaj pėr ta aktivizuar atė saktėsisht. Dhe testoni tė gjithė ēelsat\n"
"dhe lėvizjet a janė tė sakta."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Your choice of preferred language will affect the language of the\n"
"documentation, the installer and the system in general. Select first the\n"
"region you are located in, and then the language you speak.\n"
"\n"
"Clicking on the \"Advanced\" button will allow you to select other\n"
"languages to be installed on your workstation, thereby installing the\n"
"language-specific files for system documentation and applications. For\n"
"example, if you will host users from Spain on your machine, select English\n"
"as the default language in the tree view and \"Espanol\" in the Advanced\n"
"section.\n"
"\n"
"Note that you're not limited to choosing a single additional language. Once\n"
"you have selected additional locales, click the \"Next ->\" button to\n"
"continue.\n"
"\n"
"To switch between the various languages installed on the system, you can\n"
"launch the \"/usr/sbin/localedrake\" command as \"root\" to change the\n"
"language used by the entire system. Running the command as a regular user\n"
"will only change the language settings for that particular user."
msgstr ""
"Etapa e parė ėshtė qė ta zgjedhni gjuhėn tuaj tė preferuar.\n"
"\n"
"Zgjedheni gjuhėn tuaj tė preferuar, e cila do tė pėrdoret gjatė\n"
"instalimit tė sistemit.\n"
"\n"
"Duke klikuar mbi ēelėsin \"Vazhdo para\", programi do tė ju propozoj "
"njashtu\n"
"edhe gjuhė tjera tė cilat mund t'instalohen nė stacionin tuaj punues. Duke\n"
"zgjedhur njė gjuhė tjetėr, programi do tė ju instaloj tėrė dokumentacionin\n"
"dhe aplikacionet e nevojshme pėr pėrdorimin e kėsaj gjuhe. Pėr shembull,\n"
"nėse ju mendoni tė pranoni pėrdorues Espanjol nė serverin tuaj, zgjedheni\n"
"Anglishtėn si gjuhė kryesore, dhe nė sekcionin e vazhdueshėm, klikoni mbi\n"
"kutinė e cila i pėrketė \"Spanish|Spain\".\n"
"\n"
"Shėnim, mund tė instalohen shumė gjuhė nė sistem. Mbasi qė keni zgjedhur\n"
"ēfarėdo llogarije lokale, klikoni mbo ēelėsin \"OK\" pėr tė vazhduar.\n"
"\n"
"Pėr tė kaluar nga njė gjuhė nė njė tjetėr, ju mund ta ngarkoni urdhėrinė\n"
"\"/usr/sbin/localedrake\" me pėrparėsi administratori \"root\" pėr tė\n"
"ndėrruar tėrė sistemin e gjuhės, apo secili pėdorues pėr vetė vehten\n"
"mund ta ndėrroj gjuhėn me marrėveshje."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Depending on the default language you chose in Section , DrakX will\n"
"automatically select a particular type of keyboard configuration. However,\n"
"you might not have a keyboard that corresponds exactly to your language:\n"
"for example, if you are an English speaking Swiss person, you may have a\n"
"Swiss keyboard. Or if you speak English but are located in Quebec, you may\n"
"find yourself in the same situation where your native language and keyboard\n"
"do not match. In either case, this installation step will allow you to\n"
"select an appropriate keyboard from a list.\n"
"\n"
"Click on the \"More \" button to be presented with the complete list of\n"
"supported keyboards.\n"
"\n"
"If you choose a keyboard layout based on a non-Latin alphabet, the next\n"
"dialog will allow you to choose the key binding that will switch the\n"
"keyboard between the Latin and non-Latin layouts."
msgstr ""
"Normalisht, DrakX zgjedhė tastierėn e saktė pėr ju (mvarėsisht nga gjuha\n"
"e zgjedhur). Megjithėatė, ėshtė e mundur qė ju nuk posedoni njė tastierė\n"
"qė i pėrshtatet gjuhės suaj: pėr shmebull, nėse ju flitni Anglisht e\n"
"jetoni nė Zvicėrr, dhe dėshironi tė pėrdorni tastierės me pėrparėsi tė\n"
"Zvicrrės. Ose nėse flitni Anglisht dhe jetoni nė Quebek, ju mund tė\n"
"gjindeni nė tė njėjtin situacion. Nė tė dyja rastet, ju duhet tė ktheheni\n"
"mbrapa kėsaj etape instaluese dhe zgjidhni tastierėn pėrkatėse nga lista.\n"
"\n"
"Klikoni mbi ēelėsin \"Mė shumė\" qė tė prezentohet lista komplete e\n"
"tastierave pėrkrahėse.\n"
"\n"
"Nėse ju e zgjedhni njė tastiere e cila nuk bazohet me alfabetin latinė,\n"
"ju do tė pyeteni pėr nė dialogun e ardhshėm pėr kombinimin e ēelėsave\n"
"tė cilėt do tė ju mundėsojnė shkėmbuarjen mes tyre."

#: ../../help.pm:1
#, c-format
msgid ""
"This step is activated only if an old GNU/Linux partition has been found on\n"
"your machine.\n"
"\n"
"DrakX now needs to know if you want to perform a new install or an upgrade\n"
"of an existing Mandrake Linux system:\n"
"\n"
" * \"Install\": For the most part, this completely wipes out the old\n"
"system. If you wish to change how your hard drives are partitioned, or\n"
"change the file system, you should use this option. However, depending on\n"
"your partitioning scheme, you can prevent some of your existing data from\n"
"being over- written.\n"
"\n"
" * \"Upgrade\": this installation class allows you to update the packages\n"
"currently installed on your Mandrake Linux system. Your current\n"
"partitioning scheme and user data is not altered. Most of other\n"
"configuration steps remain available, similar to a standard installation.\n"
"\n"
"Using the ``Upgrade'' option should work fine on Mandrake Linux systems\n"
"running version \"8.1\" or later. Performing an Upgrade on versions prior\n"
"to Mandrake Linux version \"8.1\" is not recommended."
msgstr ""

#: ../../help.pm:1
#, c-format
msgid ""
"\"Country\": check the current country selection. If you are not in this\n"
"country, click on the button and choose another one."
msgstr ""

#: ../../help.pm:1
#, c-format
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"
"Mandrake Linux operating system.\n"
"\n"
"Each partition is listed as follows: \"Linux name\", \"Windows name\"\n"
"\"Capacity\".\n"
"\n"
"\"Linux name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard dive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". With IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc.\n"
"\n"
"\"Windows name\" is the letter of your hard drive under Windows (the first\n"
"disk or partition is called \"C:\")."
msgstr ""
"Janė gjetur mė shumė se njė ndarje Windows nė diskun tuaj tė fort, ju\n"
"lutemi zgjedheni njėrin pėr ta ridimenziunuar, dhe pėr tė instaluar njė\n"
"sistem tė ri eksploatues Mandrake Linux.\n"
"Ēdo ndarje ėshtė listuar simbas: \"Emri Linux\",  \"Emri Windows\"\n"
"\"Kapacitetit\".\n"
"\n"
"\"Emri Linux\" ėshtė i strukturuar: \"tipi i diskut tė fort\", \"numri i\n"
"diskut tė fort\", \"Numri i ndarjes\" (pėr shembul, \"hda1\").\n"
"\n"
" \"Tipi i diskut tė fort\" ėshtė \"hd\" nėse disku i juaj ėshtė IDE\n"
"disk i fort, dhe \"sd\" nėse ėshtė SCSI disk i fort.\n"
"\n"
" \"Numri i diskut tė fort\" ėshtė gjithnji njė shkronjė mbas \"hd\" ose\n"
"\"sd\". Pėr disqet IDE:\n"
" * \"a\" do tė thotė \"disk primare master mbi kontroluesin e parė IDE\";\n"
"\n"
" * \"b\" do tė thotė \"disk primare esklavė mbi kontroluesin e parė IDE\";\n"
"\n"
" * \"c\" do tė thotė \"disk primare master mbi kontroluesin e dytė IDE\";\n"
"\n"
" * \"d\" do tė thotė \"disk primare esklavė mbi kontroluesin e dytė IDE\";\n"
"\n"
"Me disqet SCSI, \"a\" do tė thotė \"Identiteti mė i ulėt SCSI\", \"b\" do\n"
"tė thotė  \"Identiteti i dytė mė i ulėt SCSI\", etj.\n"
"\n"
"\"Emri Windows\" ėshtė njė letėr e diskut tuaj tė fort ndėr Windows (disk\n"
"i parė ndarės quhet \"C:\")."

#: ../../help.pm:1
#, fuzzy, c-format
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"
"defined, either from a previous installation of GNU/Linux or from another\n"
"partitioning tool, you can use existing partitions. Otherwise, hard drive\n"
"partitions must be defined.\n"
"\n"
"To create partitions, you must first select a hard drive. You can select\n"
"the disk for partitioning by clicking on ``hda'' for the first IDE drive,\n"
"``hdb'' for the second, ``sda'' for the first SCSI drive and so on.\n"
"\n"
"To partition the selected hard drive, you can use these options:\n"
"\n"
" * \"Clear all\": this option deletes all partitions on the selected hard\n"
"drive\n"
"\n"
" * \"Auto allocate\": this option enables you to automatically create ext3\n"
"and swap partitions in free space of your hard drive\n"
"\n"
"\"More\": gives access to additional features:\n"
"\n"
" * \"Save partition table\": saves the partition table to a floppy. Useful\n"
"for later partition-table recovery, if necessary. It is strongly\n"
"recommended that you perform this step.\n"
"\n"
" * \"Restore partition table\": allows you to restore a previously saved\n"
"partition table from a floppy disk.\n"
"\n"
" * \"Rescue partition table\": if your partition table is damaged, you can\n"
"try to recover it using this option. Please be careful and remember that it\n"
"doesn't always work.\n"
"\n"
" * \"Reload partition table\": discards all changes and reloads the\n"
"partition table that was originally on the hard drive.\n"
"\n"
" * \"Removable media automounting\": unchecking this option will force\n"
"users to manually mount and unmount removable medias such as floppies and\n"
"CD-ROMs.\n"
"\n"
" * \"Wizard\": use this option if you wish to use a wizard to partition\n"
"your hard drive. This is recommended if you do not have a good\n"
"understanding of partitioning.\n"
"\n"
" * \"Undo\": use this option to cancel your changes.\n"
"\n"
" * \"Toggle to normal/expert mode\": allows additional actions on\n"
"partitions (type, options, format) and gives more information about the\n"
"hard drive.\n"
"\n"
" * \"Done\": when you are finished partitioning your hard drive, this will\n"
"save your changes back to disk.\n"
"\n"
"When defining the size of a partition, you can finely set the partition\n"
"size by using the Arrow keys of your keyboard.\n"
"\n"
"Note: you can reach any option using the keyboard. Navigate through the\n"
"partitions using [Tab] and the [Up/Down] arrows.\n"
"\n"
"When a partition is selected, you can use:\n"
"\n"
" * Ctrl-c to create a new partition (when an empty partition is selected)\n"
"\n"
" * Ctrl-d to delete a partition\n"
"\n"
" * Ctrl-m to set the mount point\n"
"\n"
"To get information about the different file system types available, please\n"
"read the ext2FS chapter from the ``Reference Manual''.\n"
"\n"
"If you are installing on a PPC machine, you will want to create a small HFS\n"
"``bootstrap'' partition of at least 1MB which will be used by the yaboot\n"
"bootloader. If you opt to make the partition a bit larger, say 50MB, you\n"
"may find it a useful place to store a spare kernel and ramdisk images for\n"
"emergency boot situations."
msgstr ""
"Nė kėtė etapė ju duhet tė zgjedhni se cila ndarje do tė pėrdoret pėr "
"sistemin\n"
"tuaj Mandrake Linux. Nėse ndarja e diskut ėshtė bėrė mė heret, nga njė\n"
"instalim tjetėr GNU/Linux apo nga nji vegėl tjetėr ndarėse, ju mund tė\n"
"pėrdorni ndarjet e bėra. Mes tjerash ndarjet duhen tė jenė tė pėrcaktuara\n"
"\n"
"Pėr tė krijuar njė ndarje, ju duhet tė zgjedhni diskun pėr ta pėrdorur.\n"
"Ju mund ta zgjedhni duke klikuar mbi ``hda'' pėr diskun e parė IDE, ``hdb''\n"
"pėr diskun e dytė, ``sda'' pėr dyskun e parė SCSI, dhe ashtu me radhė.\n"
"\n"
"Pėr tė ndarė diskun e fort tė zgjedhur, ju mund tė pėrdorni mundėsit me\n"
"radhė :\n"
"\n"
" * \"Zhduki tė gjitha\": kjo mundėsi do tė zhduk, tė gjitha ndarjet nė\n"
"diskun e zgjedhur;\n"
"\n"
" * \"Dhėnie automatike\": kjo mundėsi mundėson krijimin e njė sistemi\n"
"tė skedareve ext3 dhe swap tė ndarjeve, nė hapėsirėn e lirė tė disqeve "
"tuaja\n"
"\n"
"\"Mė shumė\": mundėson hyrjen nė fonksionimin e llogarive:\n"
"\n"
" * \"Regjistron tabelėn e ndarjes\": regjistro tabelėn e ndarjeve nė "
"floppy.\n"
"Kjo mundėsi ėshtė tejet praktike, pėr rikuperimin e ndarjeve tė dėmtuara.\n"
"Ėshtė tejet e rekomanduar qė tė vazhdoni nė kėtė mėnyrė;\n"
"\n"
" * \"Restauro tabelėn e ndarjes\": mundėson restaurimin e njė tabele tė\n"
"njė ndarje, tė regjistruar mė heret nė njė diskete.\n"
"\n"
" * \"Rekupero njė ndarje\": nėse tabela juaj e ndarjes ėshtė dėmtuar\n"
"ju mund tė provoni qė ta rikuperoni me kėto mundėsi. Keni kujdes dhe dijeni\n"
"se kjo nuk funksionon nė tė gjitha rastet;\n"
"\n"
" * \"Ri-ngarko tabelėn e ndarjes\": largon ndryshimet dhe ngarkon tabelėn e\n"
"ndarjeve filestare;\n"
"\n"
" * \"Zhvendosje e mediave auto-montuese\": duke shėnuar nė kėtė kuti,\n"
"CD-ROM(et) dhe disketat floppy (dhe pėrkrahje tjera) do tė ngarkohen\n"
"automatikisht.\n"
"\n"
" * \"Asistent\": pėrdore kėtė mundėsi nėse ju keni nevojė pėr tė ndarė\n"
"diskun tuaj. Kjo mundėsi ėshtė shumė e rekomandura nėse ju jeni fillestar\n"
"nė lėdėn e ndarjeve.\n"
"\n"
" * \"Zbėrthe\": pėrdore kėtė mundėsi pėr tė anuluar ndėrrimet tuaja;\n"
"\n"
" * \"Ngarkim nė modė normal/ekspert\": mundėson akcionet llogaritėse nė\n"
"ndarjet, (tipi, mundėsit, dhe format) dhe jepė mė shumė informacione;\n"
"\n"
" * \"Pėrfundo\": mbasi qė shpėrndarja do tė pėrfundoj, ky ēelės do tė ju\n"
"mundėson pėr tė regjistruar ndryshimet tuaja nė disk.\n"
"\n"
"Shėnoni: ju mund ti ndryshoni tė gjitha mundėsit pėr ndarje duke pėrdorur\n"
"tastierėn. Lundrues me shigjeta dhe [Tab].\n"
"\n"
"Mbasi tė zgjedhni ndarjen e zgjedhur, ju mund ta pėrdorni :\n"
"\n"
" * Ctrl-c pėr tė krijuar njė ndarje tė re (pėrderisa njė ndarje e zbrazėt\n"
"ėshtė zgjedhur);\n"
"\n"
" * Ctrl-d pėr tė zhdukur njė ndarje;\n"
"\n"
" * Ctrl-m pėr tė caktuar njė pikė montuese.\n"
"\n"
"Pėr tė pėrfituar mė shumė informacione mbi sistemet e skedareve, lexoni mbi\n"
"sistemin e skedareve ext3FS nė ``Doracakun referues''.\n"
"\n"
"Nėse ju jeni duke instaluar njė stacion PPC, ju duhet tė krijoni njė ndarje\n"
"tė vogėl HFS ``bootstrap'' mė sė paku 1MB, e cila do tė pėrdoret nga "
"bootloader\n"
"yaboot. Nėse ju doni tė bėni njė ndarje mė tė madhe, p.sh 50MB, ju duhet tė\n"
"gjeni njė vegėl pėr tė vendosur bėrthamat dhe imazhet ramdisk hyrėse nė "
"rastė\n"
"tė ndonji problemi."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"At this point, DrakX will allow you to choose the security level desired\n"
"for the machine. As a rule of thumb, the security level should be set\n"
"higher if the machine will contain crucial data, or if it will be a machine\n"
"directly exposed to the Internet. The trade-off of a higher security level\n"
"is generally obtained at the expense of ease of use. Refer to the \"msec\"\n"
"chapter of the ``Command Line Manual'' to get more information about the\n"
"meaning of these levels.\n"
"\n"
"If you do not know what to choose, keep the default option."
msgstr ""
"Nė kėtė etapė, ju duhet tė keni pėrfunduar nivelin e sigurisė sė duhur\n"
"pėr sistemin tuaj. Niveli i sigurimit tė duhur ėshtė i pėrcaktuar simbas\n"
"funksionit tė eksploatimit tė sistemit tė pėrdoruesve tjerė (nėse ėshtė\n"
"i kyqur direkt nė rrjetin internet) dhe simbas nivelit tė ndijėshmėrisė\n"
"sė pėrmbajtjes s'informacioneve tė sistemit (numri i kartelės kreditore\n"
"pėr shembull). Nuk duhet tė harroni se nė mėnyrė tė pėrgjithshme, aq mė\n"
"mė e madhe tė jetė siguria e sistemit, aq ėshtė mė shumė e komplikuar.\n"
"Drejtohuni nė kapitullin, \"msec\"  tė ``Doracakut referues'' pėr tė\n"
"pėrfituar mė shumė informacione mbi nivelet e sigurisė.\n"
"\n"
"Nėse ju nuk dini cilin nivelė ta zgjidhni, atėhere mbani nivelin me "
"marrėvshje."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"At the time you are installing Mandrake Linux, it is likely that some\n"
"packages have been updated since the initial release. Bugs may have been\n"
"fixed, security issues resolved. To allow you to benefit from these\n"
"updates, you are now able to download them from the Internet. Choose\n"
"\"Yes\" if you have a working Internet connection, or \"No\" if you prefer\n"
"to install updated packages later.\n"
"\n"
"Choosing \"Yes\" displays a list of places from which updates can be\n"
"retrieved. Choose the one nearest you. A package-selection tree will\n"
"appear: review the selection, and press \"Install\" to retrieve and install\n"
"the selected package( s), or \"Cancel\" to abort."
msgstr ""
"Nga momenti kur ju jeni duke instaluar Mandrake Linux, ėshtė e mundur qė\n"
"disa pako janė azhurnuar prej daljes sė atij prodhimi. Disa buge mund\n"
"tė korigjohen, njashtu dhe probleme tjera tė sigurisė. Pėr\n"
"tė ju mundėsuar tė pėrfitoni njė azhurnim, do tė jenė tė propozuara qė tė\n"
"tranferohen nga Interneti. Zgjedheni \"Po\" nėse ju posedoni njė kyqje\n"
"Internet, ose \"Jo\" nėse ju preferoni qė t'instaloni azhurnimet njė ditė\n"
"mė vonė.\n"
"\n"
"Duke zgjedhur \"PO\", lista e siteve nga tė cilat bėhen azhurnimet mund tė\n"
"telengarkohet dhe tė ēfaqet. Zgjedhni sitet mė t'afėrta. Mandej njė dru\n"
"me zgjedhje tė pakove do tė ēfaqet : verifikoni zgjedhjen, dhe klikoni mbi\n"
"\"Instalo\", pėr tė transferuar dhe instaluar azhurnimet e zgjedhura, apo\n"
" \"Anulo\" pėr tė braktisur."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Any partitions that have been newly defined must be formatted for use\n"
"(formatting means creating a file system).\n"
"\n"
"At this time, you may wish to reformat some already existing partitions to\n"
"erase any data they contain. If you wish to do that, please select those\n"
"partitions as well.\n"
"\n"
"Please note that it is not necessary to reformat all pre-existing\n"
"partitions. You must reformat the partitions containing the operating\n"
"system (such as \"/\", \"/usr\" or \"/var\") but you do not have to\n"
"reformat partitions containing data that you wish to keep (typically\n"
"\"/home\").\n"
"\n"
"Please be careful when selecting partitions. After formatting, all data on\n"
"the selected partitions will be deleted and you will not be able to recover\n"
"it.\n"
"\n"
"Click on \"Next ->\" when you are ready to format partitions.\n"
"\n"
"Click on \"<- Previous\" if you want to choose another partition for your\n"
"new Mandrake Linux operating system installation.\n"
"\n"
"Click on \"Advanced\" if you wish to select partitions that will be checked\n"
"for bad blocks on the disk."
msgstr ""
"Ndarjet tė cilat janė pėrcaktuar pėrsėri duhet tė formatohen,(qė d.m.th.\n"
"krijim i njė sistemi tė skedareve nė tė).\n"
"\n"
"Nė kėtė moment, ju mund ti ri-formatoni ndarjet ekzistuese pėr zhdukjen e\n"
"tė dhėnave prezente. Ju duhet ti zgjedhni ato njėkohėsisht.\n"
"\n"
"Duke ditur se nuk ėshtė e nevojshme tė ri-formatohet pėrmbajtja e tėrė\n"
"sistemit t'eksploatimit, (sikur \"/\", \"/usr\" or \"/var\") mirėpo nuk\n"
"ėshtė e nevojshme tė formatohen ndarjet e tė dhėnave (zakonisht nė \"/home"
"\").\n"
"Keni kujdes kur ti zgjidhni ndarjet e ri-formatuara, do tė jetė e pa mundur\n"
"tė rikuperohen tė dhėnat nė to.\n"
"\n"
"Klikoni nė \"OK\" kur ju jeni i gatshėm qė ti formatoni ndarjet.\n"
"\n"
"Klikoni nė \"Anulo\" nėse ju dėshironi tė zgjedhni njė ndarje tjetėr apo\n"
"tė instaloni njė sistemi tė ri eksploatues Mandrake Linux.\n"
"\n"
"Klikoni nė \"Vazhdo para\" nėse ju dėshironi ti zgjedhni ndarjet, pėr njė\n"
"verifikim tė sektorėve tė dėmtuar nė disk."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"There you are. Installation is now complete and your GNU/Linux system is\n"
"ready to use. Just click \"Next ->\" to reboot the system. The first thing\n"
"you should see after your computer has finished doing its hardware tests is\n"
"the bootloader menu, giving you the choice of which operating system to\n"
"start.\n"
"\n"
"The \"Advanced\" button (in Expert mode only) shows two more buttons to:\n"
"\n"
" * \"generate auto-install floppy\": to create an installation floppy disk\n"
"that will automatically perform a whole installation without the help of an\n"
"operator, similar to the installation you just configured.\n"
"\n"
"   Note that two different options are available after clicking the button:\n"
"\n"
"    * \"Replay\". This is a partially automated installation. The\n"
"partitioning step is the only interactive procedure.\n"
"\n"
"    * \"Automated\". Fully automated installation: the hard disk is\n"
"completely rewritten, all data is lost.\n"
"\n"
"   This feature is very handy when installing a number of similar machines.\n"
"See the Auto install section on our web site for more information.\n"
"\n"
" * \"Save packages selection\"(*): saves a list of the package selected in\n"
"this installation. To use this selection with another installation, insert\n"
"the floppy and start the installation. At the prompt, press the [F1] key\n"
"and type >>linux defcfg=\"floppy\" <<.\n"
"\n"
"(*) You need a FAT-formatted floppy (to create one under GNU/Linux, type\n"
"\"mformat a:\")"
msgstr ""
"Instalimi i juaj i Mandrake Linux pėrfundoi, dhe sistemi i juaj ėshtė i\n"
"gatshėm pėr pėrdorim. Klikoni mbi  \"OK\" qė tė ri-nisni sistemin tuaj.\n"
"Ju do tė keni mundėsinė ta nisni GNU/Linux ose Windows (nėse Windows\n"
"ėshtė prezentė nė diskun tuaj).\n"
"\n"
"Ēelėsi \"Vazhdo para\" (vetėm nė modė ekspert) mundėson dy zgjedhje tjera: \n"
"\n"
" * \"prodhim i njė diskete auto-instaluese\": pėr tė krijuar njė diskete\n"
"instaluese, e cila do tė ju mundėson, tė ri-zhvilloni njė instalim qė\n"
"e keni relaizuar para pak qastesh, pa ndihmėn e ndonji administratori.\n"
"\n"
"   Shėnoni, se tė dy mundėsit pėr zgjedhje do tė paraqiten mbasi qė tė\n"
"klikoni mbi ēelėsin :\n"
"\n"
"    * \"Replay\". Ėshtė njė instalim pjesėrisht automatikė, ku ėshtė\n"
"e mundur qė ti personalizoni shpėrndarjet, e diskut (veēmas).\n"
"\n"
"    * \"Automatik\". Instalim komplet automatik, disku i fort ėshtė\n"
"kompletisht i ri-shkruar, dhe tė gjitha tė dhėnat do tė zhduken.\n"
"\n"
"   Kjo mundėsi ėshtė tejet praktike, pėr instalimin e mė shumė sistemeve.\n"
"Shiqoni sekcionin-Auto instalim tė sitit ton Web.\n"
"\n"
" * \"Regjistrim i pakove tė zgjedhura\"(*): regjistrim i pakove "
"t'instaluara.\n"
"Mandej, nėse ju e bėni njė instalim tjetėr, futni disketėn nė lexues, dhe "
"hyni\n"
"nė menu ndihmuese duke shtypur ēelėsin [F1], dhe futni kėtė urdhėr me radhė\n"
">>linux defcfg=\"floppy\"<<.\n"
"\n"
"(*) Ju keni nevojė pėr njė diskete tė formatuar nė FAT (pėr ta krijuar ndėr\n"
"Linux shkruani \"mformat a:\")"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"At this point, you need to decide where you want to install the Mandrake\n"
"Linux operating system on your hard drive. If your hard drive is empty or\n"
"if an existing operating system is using all the available space you will\n"
"have to partition the drive. Basically, partitioning a hard drive consists\n"
"of logically dividing it to create the space needed to install your new\n"
"Mandrake Linux system.\n"
"\n"
"Because the process of partitioning a hard drive is usually irreversible\n"
"and can lead to lost data if there is an existing operating system already\n"
"installed on the drive, partitioning can be intimidating and stressful if\n"
"you are an inexperienced user. Fortunately, DrakX includes a wizard which\n"
"simplifies this process. Before continuing with this step, read through the\n"
"rest of this section and above all, take your time.\n"
"\n"
"Depending on your hard drive configuration, several options are available:\n"
"\n"
" * \"Use free space\": this option will perform an automatic partitioning\n"
"of your blank drive(s). If you use this option there will be no further\n"
"prompts.\n"
"\n"
" * \"Use existing partition\": the wizard has detected one or more existing\n"
"Linux partitions on your hard drive. If you want to use them, choose this\n"
"option. You will then be asked to choose the mount points associated with\n"
"each of the partitions. The legacy mount points are selected by default,\n"
"and for the most part it's a good idea to keep them.\n"
"\n"
" * \"Use the free space on the Windows partition\": if Microsoft Windows is\n"
"installed on your hard drive and takes all the space available on it, you\n"
"have to create free space for Linux data. To do so, you can delete your\n"
"Microsoft Windows partition and data (see `` Erase entire disk'' solution)\n"
"or resize your Microsoft Windows FAT partition. Resizing can be performed\n"
"without the loss of any data, provided you previously defragment the\n"
"Windows partition and that it uses the FAT format. Backing up your data is\n"
"strongly recommended.. Using this option is recommended if you want to use\n"
"both Mandrake Linux and Microsoft Windows on the same computer.\n"
"\n"
"   Before choosing this option, please understand that after this\n"
"procedure, the size of your Microsoft Windows partition will be smaller\n"
"then when you started. You will have less free space under Microsoft\n"
"Windows to store your data or to install new software.\n"
"\n"
" * \"Erase entire disk\": if you want to delete all data and all partitions\n"
"present on your hard drive and replace them with your new Mandrake Linux\n"
"system, choose this option. Be careful, because you will not be able to\n"
"undo your choice after you confirm.\n"
"\n"
"   !! If you choose this option, all data on your disk will be deleted. !!\n"
"\n"
" * \"Remove Windows\": this will simply erase everything on the drive and\n"
"begin fresh, partitioning everything from scratch. All data on your disk\n"
"will be lost.\n"
"\n"
"   !! If you choose this option, all data on your disk will be lost. !!\n"
"\n"
" * \"Custom disk partitionning\": choose this option if you want to\n"
"manually partition your hard drive. Be careful -- it is a powerful but\n"
"dangerous choice and you can very easily lose all your data. That's why\n"
"this option is really only recommended if you have done something like this\n"
"before and have some experience. For more instructions on how to use the\n"
"DiskDrake utility, refer to the ``Managing Your Partitions '' section in\n"
"the ``Starter Guide''."
msgstr ""
"Kjo etapė do tė ju mundėsoj qė tė pėrcaktoni me precizitet vendosjen e "
"instalimit\n"
"Mandrake Linux. Nėse disku i fortė i juaj ėshtė zbrazėt apo i pėrdorur nga\n"
"njė sistem tjetėr i eksploatimit, ju duhet ta shpėrndani diskun tuaj nė "
"pjesė.\n"
"Ndarje e diskut d.m.th. ta shpėrndani me precizitet qė mė fund tė krijoni "
"njė\n"
"hapėsire pėr instalimin tuaj.\n"
"\n"
"Duke ditur se efektet e proceseve tė ndarjeve nuk janė kthyese, (pėrmbajtjet "
"nė disk\n"
"do tė zhduken), ndarja nė shumicėn e rasteve ėshtė stresante dhe frikėsuese\n"
"pėr njė pėrdorues tė pa eksperimentuar. Pėr fat tė mirė njė interfac, ėshtė\n"
"caktuar pėr kėtė efekt. Para se tė niseni, konsultoni doracakėt tuaj, dhe\n"
"keni durim.\n"
"\n"
"Nėse ju gjindeni nė modė expert aplikacion DiskDrake, vegėl pėr ndarjen e\n"
"Mandrake Linux, do tė ju mundėsoj pėrcaktimin e sigurt dhe precizė tė\n"
"vendosejes sė ēdo ndarje. Nga interfaci i instalimit, ju mund tė nisni\n"
"asistentėt duke klikuar mbi ēelėsin \"Asistent\".\n"
"\n"
"Nėse ndarjet janė pėrcaktuar, dhe pa marrė parasysh, nėse ato vijnė nga\n"
"ndonji instalim tjetėr apo nga njė vegėl tjetėr shpėrndarėse, ju mjafton\n"
"thjeshtė tė zgjedhni, se nė cilėn ndarje dėshironi ta instaloni Mandrake.\n"
"\n"
"Nėse ndarjet nuk janė pėrcaktuar, ju duhet ti krijoni duke pėrdorur\n"
"asistentin. Simbas konfigurimit tė diskut tuaj, njė shumicė e mundėsive\n"
"janė nė disponibilitet :\n"
"\n"
" * \"Pėrdore hapėsirėn e lirė\": kjo mundėsi do tė provoj tė shpėrndajė\n"
"automatikisht hapėsirėn e pa pėrdorur nė diskun tuaj. Nuk do tė keni\n"
"pyetje tjera.\n"
"\n"
" * \"Pėrdori ndarjet ekzistuese\": asistenti ka detektuar njė apo mė\n"
"shumė ndarje ekzistuese nė diskun tuaj. Nėse ju dėshironi ta pėrdorni,\n"
"zgjedheni kėtė mundėsi.\n"
"\n"
" * \"Pėrdore njė hapėsirė tė lirė nė ndarje Windows\": nėse Microsft "
"Windows\n"
"ėshtė i instaluar nė diskun tuaj dhe pėrfshinė gjithė pjesėn e diskut, ju\n"
"duhet tė krijoni njė vend pėr instalimin tuaj tė Mandrake. Pėr ta realizuar\n"
"ju mund ta shlyeni tėrė diskun (shiqo nė ``Shlyeje tėrė diskun'' ose\n"
"``Modė expert'') ku ju mund tė ridimenziononi hapėsirėn e pėrdorur nga\n"
"Windows. Ridimenzionimi mund tė bėhet pa i humbur tė dhėnat nė disk,\n"
"me njė kusht, nėse ju e keni defragmentuar diskun tuaj nė Windows.\n"
"Njė regjistrim i tė dhėnave tuaja ėshtė shumė e preferuar. Kjo mundėsi,\n"
"e dyta  mund tė pėrdoret pa humbjen e tė dhėnave. Kjo zgjidhje ėshtė\n"
"tejet e rekomanduar, pėr bashkėjetesėn e Linux-it dhe Windows-it nė tė\n"
"njėjtin kompjuter.\n"
"\n"
"   Para se ta zgjidhni kėtė mundėsi, ju duhet ta kuptoni se mbas\n"
"kėsaj precedure hapėsira e Windows do tė jetė zvogėluar. D.m.th.\n"
"Disku juaj nė Windows do tė posedoj mė pakė hapėsir tė lirė pėr\n"
"instalimin e programeve apo regjistrimin e tė dhėnave me Windows.\n"
"\n"
" * \"Zhdukja e diskut nė tėrėsi\": nėse ju dėshironi ti zhdukni tė gjitha\n"
"tė dhėnat dhe aplikacionet e instaluara nė sistemin tuaj, dhe ti\n"
"zėvendėsoni me njė sistem tė ri Mandrake Linux, zgjedheni kėtė mundėsi.\n"
"Keni kujdes, sepse kjo mundėsi ėshtė e pa kthyeshme mbrapa. Ėshtė e pa\n"
"mundur tė gjindet tė dhėnat e zhdukura.\n"
"\n"
"   !! Duke zgjedhur kėtė mundėsi, pėrmbajtjet nė diskun tuaj do tė\n"
"zhduket. !!\n"
"\n"
" * \"Zhduke Windows\": kjo zgjidhje do tė zhdukė vetėm pėrmbajtjen\n"
"e diskut, dhe do tė rifillor nga zerroja. Tė gjitha tė dhėnat dhe\n"
"programet prezente nė diskun tuaj do tė zhduken.\n"
"\n"
"   !! Duke zgjedhur kėtė mundėsi, pėrmbajtjet nė diskun tuaj do tė\n"
"zhduket. !!\n"
"\n"
" * \"Modė expert\": mundėson njė ndraje manuale tė diskut tuaj.\n"
"Kini kujdes, ėshtė tejet i fuqishėm por aq edhe e rrezikshme kjo\n"
"mundėsi. Ju mund tė humbni pėrmbajtjen e tėrėsishme tė diskut tuaj.\n"
"D.m.th. Mos e zgjedhni kėtė mundėsi nėse nuk dini se ēka bėni.\n"
"Pėr tė ditur mė shumė mbi DiskDrake, pėrcaktohuni nė sekcionin\n"
"``Qeverisja e Ndarjeve Tuaja'' tė ````Pėrcjellėsit tė Pėrdoruesit''''"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Checking \"Create a boot disk\" allows you to have a rescue bot media\n"
"handy.\n"
"\n"
"The Mandrake Linux CD-ROM has a built-in rescue mode. You can access it by\n"
"booting the CD-ROM, pressing the >> F1<< key at boot and typing >>rescue<<\n"
"at the prompt. If your computer cannot boot from the CD-ROM, there are at\n"
"least two situations where having a boot floppy is critical:\n"
"\n"
" * when installing the bootloader, DrakX will rewrite the boot sector (MBR)\n"
"of your main disk (unless you are using another boot manager), to allow you\n"
"to start up with either Windows or GNU/Linux (assuming you have Windows on\n"
"your system). If at some point you need to reinstall Windows, the Microsoft\n"
"install process will rewrite the boot sector and remove your ability to\n"
"start GNU/Linux!\n"
"\n"
" * if a problem arises and you cannot start GNU/Linux from the hard disk,\n"
"this floppy will be the only means of starting up GNU/Linux. It contains a\n"
"fair number of system tools for restoring a system that has crashed due to\n"
"a power failure, an unfortunate typing error, a forgotten root password, or\n"
"any other reason.\n"
"\n"
"If you say \"Yes\", you will be asked to insert a disk in the drive. The\n"
"floppy disk must be blank or have non-critical data on it - DrakX will\n"
"format the floppy and will rewrite the whole disk."
msgstr ""
"CD-ROM(i) i instalimit Mandrake Linux, ka njė modė tė rikuperimit me "
"pėrcaktim.\n"
"Ju mund tė hyni nė tė, duke nisur kompjuterin tuaj me CD-ROM. Simbas "
"versionit\n"
"tuaj \"Bios\", ju duhet ta pėcaktoni qė tė niset me CD-ROM. Ju duhet tė\n"
"ktheheni nė disketė tė nisjes nė tė dyja rastet precize:\n"
"\n"
" * Nė momentin e instalimit tė nisjes me udhėzim, DrakX do tė rishkruaj\n"
"mbi sektorin (MBR) me pėrmbajtje tė programit udhėzues (bootloader), qė\n"
"mė nė fund tė ju mundėsoj njė nisje me Linux apo Windows (duke marrė\n"
"parasysh se ju posedoni dy sisteme t'ekxploatimit). Nėse ju e ri-instaloni\n"
"Windows-in, ai do tė rishkruhet mbi MBR, dhe nuk do tė jetė mė e mundur qė "
"ju\n"
"tė nisni Linux-in nė sistemin tuaj.\n"
"\n"
" * Nėse ndonji problem ju paraqitet dhe qė ėshtė e pa mundur nisja e\n"
"GNU/Linux, nga disku i fort (hard disk), kjo diskete ėshtė e vetmja\n"
"mundėsi qė ta nisni Linux-in falas asaj. Ajo posedon njė numėr tė\n"
"madhė veglash pėr rikuperimin e sistemit tė demtuar, pa marrė parasysh\n"
"nga dėmet e shkatuara.\n"
"\n"
"Duke klikuar nė kėtė etapė, do tė ju pyesim tė futni njė disketė.\n"
"Disketa do tė jetė kompletisht e shlyer, dhe DrakX do tė kujdeset\n"
"pėr formatimin e saj, dhe futjen e skedareve tė nevojitura."

#: ../../help.pm:1
#, c-format
msgid ""
"Finally, you will be asked whether you want to see the graphical interface\n"
"at boot. Note this question will be asked even if you chose not to test the\n"
"configuration. Obviously, you want to answer \"No\" if your machine is to\n"
"act as a server, or if you were not successful in getting the display\n"
"configured."
msgstr ""
"Mė nė fund, do tė peyteni nėse ju dėshironi tė pėrfitoni njė interfac\n"
"grafike tė nisjeve apo jo. Shėnoni se kjo pyetje do tė paraqitet edhe nėse\n"
"ju nuk e zgjedhni testimin e konfigurimit. Ėshtė tejet e dėshirueshme\n"
"qė tė pėrgjigjeni me \"Jo\" nėse kjo makinė ėshtė njė server, mbi tė\n"
"cilin asnjėri nuk do tė punon nė mode grafik."

#: ../../help.pm:1
#, c-format
msgid ""
"In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""

#: ../../help.pm:1
#, c-format
msgid ""
"Resolution\n"
"\n"
"   You can choose here resolutions and color depth between those available\n"
"for your hardware. Choose the one that best suit your needs (you will be\n"
"able to change that after installation though). Asample of the chosen\n"
"configuration is shown in the monitor."
msgstr ""

#: ../../help.pm:1
#, c-format
msgid ""
"Monitor\n"
"\n"
"   The installer can normally automatically detect and configure the\n"
"monitor connected to your machine. If it is not the case, you can choose in\n"
"this list the monitor you actually own."
msgstr ""

#: ../../help.pm:1
#, c-format
msgid ""
"X (for X Window System) is the heart of the GNU/Linux graphical interface\n"
"on which all the graphical environments (KDE, GNOME, AfterStep,\n"
"WindowMaker, etc.) bundled with Mandrake Linux rely upon.\n"
"\n"
"You will be presented the list of different parameters to change to get an\n"
"optimal graphical display: Graphic Card\n"
"\n"
"   The installer can normally automatically detect and configure the\n"
"graphic card installed on your machine. If it is not the case, you can\n"
"choose in this list the card you actually own.\n"
"\n"
"   In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs.\n"
"\n"
"\n"
"\n"
"Monitor\n"
"\n"
"   The installer can normally automatically detect and configure the\n"
"monitor connected to your machine. If it is not the case, you can choose in\n"
"this list the monitor you actually own.\n"
"\n"
"\n"
"\n"
"Resolution\n"
"\n"
"   You can choose here resolutions and color depth between those available\n"
"for your hardware. Choose the one that best suit your needs (you will be\n"
"able to change that after installation though). Asample of the chosen\n"
"configuration is shown in the monitor.\n"
"\n"
"\n"
"\n"
"Test\n"
"\n"
"   the system will try to open a graphical screen at the desired\n"
"resolution. If you can see the message during the test and answer \"Yes\",\n"
"then DrakX will proceed to the next step. If you cannot see the message, it\n"
"means that some part of the autodetected configuration was incorrect and\n"
"the test will automatically end after 12 seconds, bringing you back to the\n"
"menu. Change settings until you get a correct graphical display.\n"
"\n"
"\n"
"\n"
"Options\n"
"\n"
"   You can here choose whether you want to have your machine automatically\n"
"switch to a graphical interface at boot. Obviously, you want to check\n"
"\"No\" if your machine is to act as a server, or if you were not successful\n"
"in getting the display configured."
msgstr ""

#: ../../help.pm:1
#, c-format
msgid ""
"Graphic Card\n"
"\n"
"   The installer can normally automatically detect and configure the\n"
"graphic card installed on your machine. If it is not the case, you can\n"
"choose in this list the card you actually own.\n"
"\n"
"   In the case that different servers are available for your card, with or\n"
"without 3D acceleration, you are then proposed to choose the server that\n"
"best suits your needs."
msgstr ""

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"GNU/Linux manages time in GMT (Greenwich Mean Time) and translates it to\n"
"local time according to the time zone you selected. If the clock on your\n"
"motherboard is set to local time, you may deactivate this by unselecting\n"
"\"Hardware clock set to GMT \", which will let GNU/Linux know that the\n"
"system clock and the hardware clock are in the same timezone. This is\n"
"useful when the machine also hosts another operating system like Windows.\n"
"\n"
"The \"Automatic time synchronization \" option will automatically regulate\n"
"the clock by connecting to a remote time server on the Internet. For this\n"
"feature to work, you must have a working Internet connection. It is best to\n"
"choose a time server located near you. This option actually installs a time\n"
"server that can used by other machines on your local network."
msgstr ""
"GNU/Linux manipulon orėn nė GMT (Greenwich Mean Time) dhe e shėndėrron nė\n"
"kohė lokale simbas zonės tė cilėn ju e zgjidhni. Dhe njashtu ėshtė e mundur\n"
"tė ēkyqet kjo mundėsi duke e ēzgjedhur me \"Sistem i rregulluar me kohė nė\n"
"meridianėn Greenwich\" nė mėnyrė qė materiali i orės tė jetė i njėjtė me\n"
"atė tė sistemit. Kjo ėshtė e pėrdorshme nė shumicėn e rasteve, kur makina\n"
"pranon njė sistem tjetėr t'exploatimit, si pėr shembull Windows.\n"
"\n"
"\"Sinkronizim automatik i kohės\" mundėson rregullimin e orės automatikisht\n"
"duke u kyqur nė njė server tė kohės nė Internet. Nė listėn e cila ėshtė\n"
"prezentuar, zgjedheni njė server gjeografikisht afėrt jush. Ju duhet\n"
"tė posedoni njė kyqje Internet, qė ky tė funksionoj si duhet. Kjo do tė\n"
"instaloj nė makinėn tuaj, njė server tė kohės lokale, i cili mund tė jetė\n"
"i mundshėm, qė ai tė pėrdoret nga pėrdorues tjerė tė makinės, nė rrjetit\n"
"tuaj lokal"

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"This step is used to choose which services you wish to start at boot time.\n"
"\n"
"DrakX will list all the services available on the current installation.\n"
"Review each one carefully and uncheck those which are not always needed at\n"
"boot time.\n"
"\n"
"A short explanatory text will be displayed about a service when it is\n"
"selected. However, if you are not sure whether a service is useful or not,\n"
"it is safer to leave the default behavior.\n"
"\n"
"!! At this stage, be very careful if you intend to use your machine as a\n"
"server: you will probably not want to start any services that you do not\n"
"need. Please remember that several services can be dangerous if they are\n"
"enabled on a server. In general, select only the services you really need.\n"
"!!"
msgstr ""
"Ju mund ti zgjidhni serviset prezente pėr nisjen e sistemit tuaj me "
"udhėzim.\n"
"\n"
"Kėtu janė tė listuara tė gjitha serviset prezente me instalime vendase.\n"
"Bėjeni njė verifikim dhe eliminoni ato qė nuk nevojiten pėr njė nisje\n"
"me udhėzim.\n"
"\n"
"Ju mund tė pėrfitoni shpjegime tė shkurtėra, duke i zgjedhur ato njė nga "
"njė\n"
"Kjo d.m.th. nėse ju nuk jeni i sigurt pėr aplikacionin e njė servisi,\n"
"mirėmbani paramtrat me marrėshje.\n"
"\n"
"!! Nė kėtė etapė, vini re nė rastin e njė sistemi tė pėrcaktuar me "
"reakcione\n"
"tė server-it. Nė kėtė rast, ju dėshironi ti lejoni tė gjitha serviset e\n"
"duhura . Keni kujdes, se disa nga serviset mund tė jenė tė rrezikshme\n"
"nėse ato nuk janė tė lira nė server. Nė raste tė pėrgjithshėm ju duhet ti\n"
"zgjedhni vetėm serviset qė ju nevojiten.\n"
"!!"

#: ../../help.pm:1
#, c-format
msgid ""
"\"Printer\": clicking on the \"No Printer\" button will open the printer\n"
"configuration wizard. Consult the corresponding chapter of the ``Starter\n"
"Guide'' for more information on how to setup a new printer. The interface\n"
"presented there is similar to the one used during installation."
msgstr ""

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"You will now set up your Internet/network connection. If you wish to\n"
"connect your computer to the Internet or to a local network, click \"Next\n"
"->\". Mandrake Linux will attempt to autodetect network devices and modems.\n"
"If this detection fails, uncheck the \"Use auto detection\" box. You may\n"
"also choose not to configure the network, or to do it later, in which case\n"
"clicking the \"Cancel\" button will take you to the next step.\n"
"\n"
"When configuring your network, the available connections options are:\n"
"traditional modem, ISDN modem, ADSL connection, cable modem, and finally a\n"
"simple LAN connection (Ethernet).\n"
"\n"
"We will not detail each configuration option - just make sure that you have\n"
"all the parameters, such as IP address, default gateway, DNS servers, etc.\n"
"from your Internet Service Provider or system administrator.\n"
"\n"
"You can consult the ``Starter Guide'' chapter about Internet connections\n"
"for details about the configuration, or simply wait until your system is\n"
"installed and use the program described there to configure your connection."
msgstr ""
"Nėse ju dėshironi tė kyqni sistemin tuaj nė Internet/network, klikoni mbi\n"
"\"OK\". Autodetektimi i periferikve tė rrjetit dhe modemėve do tė niset\n"
"menjėher. Nėse ky detektim dėshton, shėnoni mbi kutinė,\n"
"\"Pėrdore auto-detektuesin\".\n"
"Ju mund tė zgjedhni njashtu edhe tė mos konfigurohet rrjeti, ose bėjeni mė\n"
"vonė. Nė kėtė rast, klikoni thjesht mbi ēelėsin\n"
"\"Anulo\".\n"
"\n"
"Tipet e kyqjes pėrkrahėse janė: modem telefonik, modem ISDN, kyqje ADSL,\n"
"modem me kablo ose thjesht me LAN (rrjeti Ethernet).\n"
"\n"
"Ne nuk do ti shpjegojmė tė gjitha konfigurimet e mundėshme nė detaje.\n"
"Ju duhet ta dini qė i posedoni tė gjitha tė dhėnat mbi furnizuesin tuaj\n"
"nga Servisi i Internetit Provider ose tė sistemit administrues.\n"
"\n"
"Ju mund tė konsultoni kapitullin ``Udhėzues i Pėrdoruesit'' me pėrmbajtje\n"
"tė kyqjeve nė Internet, pėr mė shumė detaje nė lidhje me konfigurimet\n"
"pėrkatėse tė ēdo tipi tė kyqjes. Ju keni mundėsi, njashtu ta konfiguroni\n"
"kyqjen tuaj tė Internetit, mbasi qė instalimi tė jetė pėrfunduar.\n"
"\n"
"Nėse ju dėshironi tė konfiguroni rrjetin tuaj mė vonė, ose nuk keni\n"
"pėrfunduar me Instalimin e rrjetit tuaj, klikoni mbi \"Anulo\"."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"If you told the installer that you wanted to individually select packages,\n"
"it will present a tree containing all packages classified by groups and\n"
"subgroups. While browsing the tree, you can select entire groups,\n"
"subgroups, or individual packages.\n"
"\n"
"Whenever you select a package on the tree, a description appears on the\n"
"right to let you know the purpose of the package.\n"
"\n"
"!! If a server package has been selected, either because you specifically\n"
"chose the individual package or because it was part of a group of packages,\n"
"you will be asked to confirm that you really want those servers to be\n"
"installed. By default Mandrake Linux will automatically start any installed\n"
"services at boot time. Even if they are safe and have no known issues at\n"
"the time the distribution was shipped, it is entirely possible that that\n"
"security holes are discovered after this version of Mandrake Linux was\n"
"finalized. If you do not know what a particular service is supposed to do\n"
"or why it is being installed, then click \"No\". Clicking \"Yes \" will\n"
"install the listed services and they will be started automatically by\n"
"default during boot. !!\n"
"\n"
"The \"Automatic dependencies\" option is used to disable the warning dialog\n"
"which appears whenever the installer automatically selects a package to\n"
"resolve a dependency issue. Some packages have relationships between each\n"
"other such that installation of a package requires that some other program\n"
"is already installed. The installer can determine which packages are\n"
"required to satisfy a dependency to successfully complete the installation.\n"
"\n"
"The tiny floppy disk icon at the bottom of the list allows you to load a\n"
"package list created during a previous installation. This is useful if you\n"
"have a number of machines that you wish to configure identically. Clicking\n"
"on this icon will ask you to insert a floppy disk previously created at the\n"
"end of another installation. See the second tip of last step on how to\n"
"create such a floppy."
msgstr ""
"Mė nė fund, nėse keni vendosur me zgjidhje individuale me pakot pėr "
"instalim,\n"
"DrakX do tė ju prezentoj njė dru me tė gjitha pakot tė kasifikuara simbas "
"grupit\n"
"dhe tė ndėr-grupit. Duke lundruar nėpėr dru, ju mund tė zgjedhni grupe,\n"
"dhe ndėr-grupe, apo pako individuale.\n"
"\n"
"Kudo qė ta zgjedhni njė pako e cila gjindet nė dru, njė pėrshkrim pėr tė, do "
"tė\n"
"paraqietet nė anėn e djathtė. Kur ju do tė pėrfundoni me zgjedhjet, klikoni "
"mbi\n"
"ēelėsin \"Instalo\" i cili do tė nisė procesuesin. Keni durim, sepse nga "
"tipi\n"
"i zgjedhur i instalimit, dhe numrit tė pakove tė zgjedhura, koha e "
"instalimit\n"
"do tė jetė nė pėrpjestim nga kėto dy arėsye. Njė pėrcaktim i kohės ėshtė\n"
"paraqitur nė ekran, qė do tė ju lejon kohė tė duhur pėr njė kafe "
"relaksuese.\n"
"\n"
"!! Nėse keni zgjedhur njė program qė ta pėrdorni nė server, ju duhet tė "
"vėrtetoni\n"
"qė ai duhet tė instalohet. Ndėr Mandrake, me marrėveshje tė gjithė server-"
"et\n"
"do tė nisen nga nisja udhėzuese e sistemit. Fatėkeqėsisht nga tė gjitha "
"forcat\n"
"e investuara pėr tė ofruar njė Linux tė siguruar, ėshtė e mundur qė, disa "
"gabime\n"
"tė sigurisė, do tė infektojnė server-et e instaluar, deri nė datėn e "
"publikimit.\n"
"Nėse ju nuk e dini pėr ēfarė arėsye nevojitet njė server, apo pėr ēfarė "
"ėshtė\n"
"i instaluar, klikoni mbi \"Jo\". Duke klikuar mbi \"Po\", serveri do tė\n"
"dhe tė gjitha serviset e ofruara nė nisje tė sietmit !!\n"
".\n"
"Mundėsia \"Mvarėsit eutomatike\" do tė ēzgjedhė paralajmėrimet tė cilat\n"
"paraqiten ēdo herė kur instaluesi zgjedhė njė pako tė re. Ky paralajmėrim\n"
"paraqitet sepse DrakX, ėshtė i pėrcaktuar qė kur njė pako tė jetė nė\n"
"funksion i duhet njė tjetėr, d.m.th. mvaret nga pakoja tjetėr\n"
"\n"
"Ikona e vogėl e disketės floppy (floppy disk), e cila paraqitet poshtė\n"
"nė listė, mundėson rikuperimin e listės sė pakove tė zgjedhura gjatė njė\n"
"instalimi tjetėr. Duke klikuar mbi tė, do tė ju pyesim qė ta futni njė\n"
"disketė e cila ėshtė krijuar gjatė njė instalimi tė mėparshėm. Verifiko\n"
"shėnimin e dytė t'etapės sė fundit, qė do tė ju mėsoj se si duhet ta\n"
"krijoni njė disketė tė tillė."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"It is now time to specify which programs you wish to install on your\n"
"system. There are thousands of packages available for Mandrake Linux, and\n"
"to make it simpler to manage the packages have been placed into groups of\n"
"similar applications.\n"
"\n"
"Packages are sorted into groups corresponding to a particular use of your\n"
"machine. Mandrake Linux has four predefined installations available. You\n"
"can think of these installation classes as containers for various packages.\n"
"You can mix and match applications from the various containers, so a\n"
"``Workstation'' installation can still have applications from the\n"
"``Development'' container installed.\n"
"\n"
" * \"Workstation\": if you plan to use your machine as a workstation,\n"
"select one or more of the applications that are in the workstation\n"
"container.\n"
"\n"
" * \"Development\": if plan on using your machine for programming, choose\n"
"the appropriate packages from the container.\n"
"\n"
" * \"Server\": if your machine is intended to be a server, select which of\n"
"the more common services you wish to install on your machine.\n"
"\n"
" * \"Graphical Environment\": this is where you will choose your preferred\n"
"graphical environment. At least one must be selected if you want to have a\n"
"graphical interface available.\n"
"\n"
"Moving the mouse cursor over a group name will display a short explanatory\n"
"text about that group. If you unselect all groups when performing a regular\n"
"installation (as opposed to an upgrade), a dialog will pop up proposing\n"
"different options for a minimal installation:\n"
"\n"
" * \"With X\": install the minimum number of packages possible to have a\n"
"working graphical desktop.\n"
"\n"
" * \"With basic documentation\": installs the base system plus basic\n"
"utilities and their documentation. This installation is suitable for\n"
"setting up a server.\n"
"\n"
" * \"Truly minimal install\": will install the absolute minimum number of\n"
"packages necessary to get a working Linux system. With this installation\n"
"you will only have a command line interface. The total size of this\n"
"installation is 65 megabytes.\n"
"\n"
"You can check the \"Individual package selection\" box, which is useful if\n"
"you are familiar with the packages being offered or if you want to have\n"
"total control over what will be installed.\n"
"\n"
"If you started the installation in \"Upgrade\" mode, you can unselect all\n"
"groups to avoid installing any new package. This is useful for repairing or\n"
"updating an existing system."
msgstr ""
"Tani ėshtė momenti pėr ti zgjedhur pakot qė duhet tė instalohen nė sistemin\n"
"tuaj. Duhet ta dini se Mandrake Linux pėrmban me mijėra pako tė instalimit,\n"
"dhe nuk ėshtė me rendėsi qė ti njifti tė gjitha pėr mendėsh\n"
"\n"
"Nėse ju jeni duke bėrė njė instalim normal nga CD-ROMi, nė fillim do tė\n"
"pyeteni nga  sistemi pėr pėrcaktimin pėrmbajtjes sė CD-sė (vetėm nė mode\n"
"Expert). Verifikoni etiketatė dhe klikoni nė kutiat pėrkatėse.\n"
"Klikoni mbi \"OK\" kur ju jeni i gatshėm tė vazhdoni\n"
"\n"
"Pakot janė tė grupuara simbas naturės s'instalimit. Dhe grupet janė tė "
"shpėrndara\n"
"nė katėr sekcione kryesore :\n"
" * \"Stacion Punues\": nėse ju mendoni ta pėrdorni stacionin punues nė "
"kėtė,\n"
"mėnyrė, zgjedhni njė apo mė shumė grupe pėrkatėse.\n"
"\n"
" * \"Zhvillim\": nėse makina juaj do tė pėrdoret pėr krijimin e programeve,\n"
"zgjedhni grupet e dėshiruara;\n"
"\n"
" * \"Server\": nėse makina juaj do tė pėrdoret sikur server, ju mund ti "
"zghedhni\n"
"serviset pėrkatėse instaluese.\n"
"\n"
" * \"Mjedis Grafik\": Ky grup do tė ju mundėsoj pėrcaktimin e mjedisit "
"grafik\n"
"qė deshironi ta keni nė sistemin tuaj. Natyrisht, ju duhet tė posedoni "
"minimun\n"
"njė qė tė mund tė pėrdorni sistemin tuaj nė modė grafik.\n"
"\n"
"Duke e vendosur minin ndėr emrin e njė grupi, ju do ta vėreni ēfaqjen e njė\n"
"pėrshkrimi tė shkurt t'atij grupi. Nėse ju i ēzhgjidhni tė gjitha grupet "
"gjatė\n"
"instalimit standard (me kundėrshtim t'azhurnimit), njė dialog do tė ēfaqet "
"me\n"
"propozime tė ndryshme zgjedhėse, pėr njė instalim minimal :\n"
"\n"
" * \"Me X\": instalohet pakot minimale tė mundėshme, pėr tė patur njė "
"mjedis\n"
"punues grafik nė tryezė ;\n"
"\n"
" * \"Me dokumentin bazues\": instalohet sistemi i bazės, me disa pėrdorues\n"
"tė tjerė tė bazės dhe dokumnetacionet e tyre. Ky instalim ėshtė i "
"pėrdorshėm\n"
"sikuer bazė pėr montimin e njė serveri ;\n"
"\n"
" * \"Instalim tejet minimal\": do tė instaloj mė sė paku qė ėshtė e mundur\n"
"nė sistemin punues Linux, vetėm nė linjė komanduese. Kėtij instalimi "
"nevojiten\n"
"65MB vendė tė zbrazėt.\n"
"\n"
"Ju mund tė shėnoni mbi mundėsinė \"Zgjedhje individuale e pakove\". Kjo "
"mundėsi\n"
"ėshtė e pėrdorshme nėse ju dini saktėsishtė cilat pako duhet ti instaloni "
"ose\n"
"nėse dėshironi tė keni njė knotrol totale gjatė instaimit.\n"
"\n"
"Nėse ju keni vazhduar tė instaloni nė modė \"Azhurnim\", ju mund ti "
"ēzgjedhni\n"
"tė gjitha grupet qė ti shmangeni instalimit tė programeve tė reja. Kjo "
"mundėsi\n"
"ėshtė tejet e pėrdorshme pėr restaurimin e sistemit tė dėmtuar."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"The Mandrake Linux installation is distributed on several CD-ROMs. DrakX\n"
"knows if a selected package is located on another CD-ROM so it will eject\n"
"the current CD and ask you to insert the correct CD as required."
msgstr ""
"Pakot e nevojshme pėr Instalimin e Linux Mandrake janė tė shpėrndara nė "
"shumė\n"
"CDROM-e. Fatėmirėsisht, DrakX i njef tė gjitha lokacinet pakove nė CDROM-e.\n"
"Ai do ta qetė jashtė CD-nė qė gjindet nė lexuesin e CD-ve, dhe do tė ju "
"pyes, qė ta futni CD-nė e nevojshme nė lexues."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Here are Listed the existing Linux partitions detected on your hard drive.\n"
"You can keep the choices made by the wizard, since they are good for most\n"
"common installations. If you make any changes, you must at least define a\n"
"root partition (\"/\"). Do not choose too small a partition or you will not\n"
"be able to install enough software. If you want to store your data on a\n"
"separate partition, you will also need to create a \"/home\" partition\n"
"(only possible if you have more than one Linux partition available).\n"
"\n"
"Each partition is listed as follows: \"Name\", \"Capacity\".\n"
"\n"
"\"Name\" is structured: \"hard drive type\", \"hard drive number\",\n"
"\"partition number\" (for example, \"hda1\").\n"
"\n"
"\"Hard drive type\" is \"hd\" if your hard drive is an IDE hard drive and\n"
"\"sd\" if it is a SCSI hard drive.\n"
"\n"
"\"Hard drive number\" is always a letter after \"hd\" or \"sd\". For IDE\n"
"hard drives:\n"
"\n"
" * \"a\" means \"master hard drive on the primary IDE controller\";\n"
"\n"
" * \"b\" means \"slave hard drive on the primary IDE controller\";\n"
"\n"
" * \"c\" means \"master hard drive on the secondary IDE controller\";\n"
"\n"
" * \"d\" means \"slave hard drive on the secondary IDE controller\".\n"
"\n"
"With SCSI hard drives, an \"a\" means \"lowest SCSI ID\", a \"b\" means\n"
"\"second lowest SCSI ID\", etc."
msgstr ""
"Lista e lartė shėnuar identifikon ndrajet GNU/Linux tė detektuara nė\n"
"sistemin tuaj. Ju mund tė pranoni zgjedhjet e propzuara nga asistenti\n"
"i cili ėshtė i mirė se ardhur nė shumicėn e rasteve nė instalim.\n"
"Nėse bėni ndonji ndryshim, ju duhet tė posedoni mė sė paku njė ndarje\n"
"root (\"/\"). Mos zgjidhni ndarje shumė tė vogla sepse nuk do tė keni\n"
"mundėsi tė instaloni programe tė mjaftueshme. Nėse dėshironi ti mbani\n"
"tė dhėnat tuaja nė njė ndarje veqmas nga ndarje primare root, atėherė\n"
"ju duhet tė krijoni njė ndarje \"/home\" (ky manupulim ėshtė i mundshėm\n"
"nėse posedoni mė sė paku njė ndarje GNU/Linux pėr ta konfiguruar)\n"
"\n"
"Secila ndraje ėshtė e listuar nė kė mėnyrė: \"Emri\", \"Kapaciteti\".\n"
"\n"
"\"Emri\" ėshtė i strukturuar simbas: \"tipi i disku tė fort\", \"numri i "
"diskut tė fort\",\n"
"\"numri i ndrajes\" (pėr shembull, \"hda1\").\n"
"\n"
"\"Tipi i diskut tė fort\" nėse ėshtė disk i fort \"hd\" ėshtė disk i fort "
"IDE dhe\n"
"nėse ėshtė disk i fort \"sd\" ėshtė disk i fort SCSI.\n"
"\n"
"\"Numri diskut tė fort\" ėshtė gjithnji i shėnuar mbasė \"hd\" ose \"sd\". "
"Pėr\n"
"disqet e forta IDE:\n"
"\n"
" * \"a\" do tė thotė \"disku i fort master nė kontrolluesin primar IDE\";\n"
"\n"
" * \"b\" do tė thotė \"disku i fort esklavė nė kontrolluesin primar IDE\";\n"
"\n"
" * \"c\" do tė thotė \"disku i fort master nė kontrolluesin sekondar IDE\";\n"
"\n"
" * \"d\" do tė thotė \"disku i fort esklavė nė kontrolluesin sekondar IDE"
"\".\n"
"\n"
"Me disqet SCSI, \"a\" do tė thotė \"mė i vogli SCSI ID\", dhe \"b\" do tė "
"thotė\n"
"\"i dyti dhe mė i vogli me radhė SCSI ID\", etj."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"GNU/Linux is a multi-user system, meaning each user can have their own\n"
"preferences, their own files and so on. You can read the ``Starter Guide''\n"
"to learn more about multi-user systems. But unlike \"root\", which is the\n"
"system administrator, the users you add at this point will not be\n"
"authorized to change anything except their own files and their own\n"
"configuration, protecting the system from unintentional or malicious\n"
"changes that impact the system as a whole. You will have to create at least\n"
"one regular user for yourself -- this is the account which you should use\n"
"for routine, day-to-day use. Although it is very easy to log in as \"root\"\n"
"to do anything and everything, it may also be very dangerous! A mistake\n"
"could mean that your system would not work any more. If you make a serious\n"
"mistake as a regular user, the worst that will happen is that you will lose\n"
"some information, but not affect the entire system.\n"
"\n"
"The first field asks you for a real name. Of course, this is not mandatory\n"
"-- you can actually enter whatever you like. DrakX will use the first word\n"
"you typed in and copy it to the \"User name\" field, which is the name this\n"
"user will enter to log onto the system. If you like, you may override the\n"
"default and change the username. The next step is to enter a password. From\n"
"a security point of view, a non-privileged (regular) user password is not\n"
"as crucial as the \"root\" password, but that is no reason to neglect it by\n"
"making it blank or too simple: after all, your files could be the ones at\n"
"risk.\n"
"\n"
"Once you click on \"Accept user\", you can add other users. Add a user for\n"
"each one of your friends: your father or your sister, for example. Click\n"
"\"Next ->\" when you have finished adding users.\n"
"\n"
"Clicking the \"Advanced\" button allows you to change the default \"shell\"\n"
"for that user (bash by default).\n"
"\n"
"When you are finished adding all users, you will be asked to choose a user\n"
"that can automatically log into the system when the computer boots up. If\n"
"you are interested in that feature (and do not care much about local\n"
"security), choose the desired user and window manager, then click \"Next\n"
"->\". If you are not interested in this feature, uncheck the \"Do you want\n"
"to use this feature?\" box."
msgstr ""
"GNU/Linux ėshtė njė sistem multi-pėrdorues, qė d.m.th. nė shumicėn e rasteve "
"pėr\n"
"secilin pėrdorues mund tė posedoj pėlqime tė ndryshme pėr skedaret e tyre "
"etj.\n"
"Pėr mė shumė infomacione, konsultoni doracakun e pėrdoruesit.\n"
"Pėrkundarzi nė \"root\", i cili ėshtė administrator, mirėpo pėrdoruesit e "
"shtuar\n"
"nė kėtė vend, do tė kenė leje pėr qeverisje vetėm nė skedaret e tyre. "
"Pėrdoruesi\n"
"administrator duhet tė krijoj njė konto normale. Dhe falas atij pėrdoruesi "
"duhet\n"
"tė kyqet pėr ti formuluar pikat e tij ditore. Pa marrė pasysh se do tė jetė\n"
"shumė praktikė qė ti ofroj tė gjitha hyrjet nė tė, kjo situatė mundė tė "
"jetė\n"
"tejet e rrezikshme duke zhdukur skedaret e rėndishme apo duke i zėvendėsur "
"me\n"
"tė tjera. Njė pėrdorues normal pa leje pėr hyrje nė skedare tė ndieshme, "
"nuk\n"
"mund tė shkaktoj dėme kudo qoftė.\n"
"\n"
"Nė fillim duhet tė futni emrin e vėrtet tė personit. Njashtu, ju mund tė\n"
"shkruani ēfarė tė doni. DrakX do ta pranoj fjalėn e parė tė fuftur dhe do "
"ta\n"
"dėrgojė tek \"Emri i login\". Emėr i cili do tė pėrdoret pėr kyqje nė "
"sistem.\n"
"Ju mund ta ndryshoni. Tani duhet tė futni parullėn. Kjo nuk ėshtė aq "
"vėshtirė\n"
"ėshtė vetėm parulla pėr administratorin (root), mirėpo nuk ėshtė njė arėsye\n"
"pėr tė shkruar 123456. Mbasė tė tjerash, kjo mund ti vendos skedaret tuaja\n"
"nė rrezik.\n"
"\n"
"Nėse klikoni mbi \"Prano pėrdoruesin\", do tė keni mundėsinė pėr tė shtuar\n"
"pėrdorues tė tjerė. Krijoni pėrdorues tė ndryshėm pėr ēdo personė me "
"mundėsi\n"
"pėr ta pėrdorur kompjuterin. Mbasi qė tė gjithė pėrdoruesit janė tė "
"pėrcaktuar klikoni mbi  \"Pėrfundim\".\n"
"\n"
"Nėse klikoni mbi \"Vazhdo para\", ju mund tė zgjedhni njė \"shell\" vetėm "
"pėr atė\n"
"pėrdorues (bash ėshtė shell me marrėveshje).\n"
"\n"
"Kur ju e pėrfundoni shtuarjen e pėrdoruesve, do tė keni mundėsinė tė "
"zgjedhni njė\n"
"pėrdorues qė tė kyqet automatikisht kur kpjuteri juaj niset nga fillimi.\n"
"Nėse ju interson ky sistem nė tė ardhmėn (dhe nuk kujdeseni shumė pėr "
"sigurinė\n"
"lokale), zgjedheni pėrdoruesin e caktuar dhe dritaren administruese, dhe\n"
"klikoni mbi \"Po\". Nėse kjo nuk ju interson nė t'ardhmėn, atėherė klikoni "
"mbi \"Jo\"."

#: ../../help.pm:1
#, fuzzy, c-format
msgid ""
"Before continuing, you should carefully read the terms of the license. It\n"
"covers the entire Mandrake Linux distribution. If you do agree with all the\n"
"terms in it, check the \"Accept\" box. If not, simply turn off your\n"
"computer."
msgstr ""
"Para se tė vazhdoni mė tutje, ju duhet ti lexoni termet e kushteve pėr\n"
"pėrdorimin e licencės. Kjo mbulon tėrė shpėrndarjen e Mandrake Linux,\n"
"nėse ju pėr ēfarėdo arėsye nuk jeni dakord me kėto kushte, klikoni mbi\n"
"\"Refuso\". Instalimi do tė pėrfundoj menjė herė. Pėr tė vazhduar,\n"
"klikoni mbi ēelėsin \"Prano\"."

#: ../../install2.pm:1
#, c-format
msgid "You must also format %s"
msgstr "Ju duhet njashtu ta formatoni %s"

#: ../../install2.pm:1
#, 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 ""
"Nuk mund tė hyjė nė modulet tė cilat i pėrkasin bėrthamės suaj (skedarja %s "
"ėshtė nė mungesė), kjo zakonisht do tė thotė se disketa juaj me nisje tė "
"udhėzuar nuk ėshtė nė sinkronizim, me burimin instalues (ju lutemi krijoni "
"njė disketė tė re)"

#: ../../install_any.pm:1
#, c-format
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 ""
"Njė gabim ėshtė paraqitur - asnjė periferik i vlefshėm s'ėshtė gjetuar pėr "
"tė krijuar ndarje tė reja. Verifikoni materialin tuaj pėr kėto ngatėrrime "

#: ../../install_any.pm:1 ../../partition_table.pm:1
#, c-format
msgid "Error reading file %s"
msgstr "Gabim gjatė leximit tė skedares %s"

#: ../../install_any.pm:1
#, c-format
msgid ""
"To use this saved packages selection, boot installation with ``linux "
"defcfg=floppy''"
msgstr ""
"Pėr ta pėrdorur kėtė regjistrim dhe zgjedhjet e pakove, rinisni instalimin "
"me urdhėrin ``linux defcfg=floppy''"

#: ../../install_any.pm:1
#, c-format
msgid "This floppy is not FAT formatted"
msgstr "Kjo disketė nuk ėshtė nė formėn FAT"

#: ../../install_any.pm:1
#, c-format
msgid "Insert a FAT formatted floppy in drive %s"
msgstr "Futni njė disketė tė formatuar nė FAT (format DOS/Windows) %s"

#: ../../install_any.pm:1
#, c-format
msgid "Can't use broadcast with no NIS domain"
msgstr "Nuk mund tė pėrdoret mundėsia broadcast pa njė pronė NIS"

#: ../../install_any.pm:1
#, c-format
msgid ""
"The following packages will be removed to allow upgrading your system: %s\n"
"\n"
"\n"
"Do you really want to remove these packages?\n"
msgstr ""
"Pakot a radhitura do tė ē'instalohen pėt tė azhurnuar sistemin tuaj: %s\n"
"\n"
"\n"
"A dėshironi me tė vėrtetė ti ē'instaloni?\n"

#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1
#, c-format
msgid "No"
msgstr "Jo"

#: ../../install_any.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../modules/interactive.pm:1 ../../standalone/drakgw:1
#, c-format
msgid "Yes"
msgstr "Po"

#: ../../install_any.pm:1
#, c-format
msgid ""
"You have selected the following server(s): %s\n"
"\n"
"\n"
"These servers are activated by default. They don't have any known security\n"
"issues, but some new ones could be found. In that case, you must make sure\n"
"to upgrade as soon as possible.\n"
"\n"
"\n"
"Do you really want to install these servers?\n"
msgstr ""
"Ju keni zgjedhur server(et) e radhitur: %s\n"
"\n"
"\n"
"Kėta server janė t'aktivizuar me marrėveshje. Ata nuk kanė ndonji dalje\n"
"tė siguruar, mirėpo probleme tė reja mund tė paraqiten. Nė ato momente\n"
"ju duhet tė jeni i sigurt qė ti azhurnoni serverat tuja sa mė shpejt.\n"
"\n"
"\n"
"A dėshironi me tė vėrtetė tė instaloni kėta server?\n"

#: ../../install_gtk.pm:1
#, c-format
msgid "System configuration"
msgstr "Konfigurim i sistemit"

#: ../../install_gtk.pm:1
#, c-format
msgid "System installation"
msgstr "Instalim i sistemit"

#: ../../install_interactive.pm:1
#, c-format
msgid "Bringing down the network"
msgstr "Ndalje e interfac nė rrjet (network)"

#: ../../install_interactive.pm:1
#, c-format
msgid "Bringing up the network"
msgstr "Nisje e interfac nė rrjet (network)"

#: ../../install_interactive.pm:1
#, c-format
msgid "Partitioning failed: %s"
msgstr "Ndarja ka dėshtuar: %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "The DrakX Partitioning wizard found the following solutions:"
msgstr "DrakX me asistentin ndarės ka gjetur kėto zgjedhje:"

#: ../../install_interactive.pm:1
#, c-format
msgid "I can't find any room for installing"
msgstr "Nuk mund tė gjejė vend tė mjaftueshėm pėr instalim"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"You can now partition %s.\n"
"When you are done, don't forget to save using `w'"
msgstr ""
"Ju mund ta shpėrndani tani %s.\n"
"Kur tė pėrfundoni, mos harroni ta regjistroni ndryshimet duke pėrdorur `w'"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use fdisk"
msgstr "Pėrdore fdisk"

#: ../../install_interactive.pm:1
#, c-format
msgid "Custom disk partitioning"
msgstr "Shpėrndarje e personalizuar"

#: ../../install_interactive.pm:1
#, c-format
msgid "ALL existing partitions and their data will be lost on drive %s"
msgstr "Tė gjitha ndarjet dhe tė dhėnat nė disqe to do tė zhduken %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "You have more than one hard drive, which one do you install linux on?"
msgstr ""
"Ju posedoni mė shumė se njė disk tė fort (hard drive), nė cilin dėshironi tė "
"instaloni linux?"

#: ../../install_interactive.pm:1
#, c-format
msgid "Erase entire disk"
msgstr "Shlyej tė gjithė disqet"

#: ../../install_interactive.pm:1
#, c-format
msgid "Remove Windows(TM)"
msgstr "Zhdukeni Windows(TM)"

#: ../../install_interactive.pm:1
#, c-format
msgid "There is no FAT partition to resize (or not enough space left)"
msgstr ""
"Asnjė ndarje FAT pėr tė ridimenziunuar (ose nuk ka hapėsirė tė mjaftueshme)"

#: ../../install_interactive.pm:1
#, c-format
msgid "FAT resizing failed: %s"
msgstr "Ridimenzionimi i ndarjes FAT dėshtoj: %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "Resizing Windows partition"
msgstr "Llogaritje e kufijve tė sistemit tė skedareve tė Windows"

#: ../../install_interactive.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resizing"
msgstr "Ridimenzionim"

#: ../../install_interactive.pm:1
#, c-format
msgid "partition %s"
msgstr "ndarja %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "Which size do you want to keep for Windows on"
msgstr "Cilėn madhėsi dėshironi ta rezervoni pėr Windows"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"WARNING!\n"
"\n"
"DrakX will now resize your Windows partition. Be careful:\n"
"this operation is dangerous. If you have not already done\n"
"so, you should first exit the installation, run scandisk\n"
"under Windows (and optionally run defrag), then restart the\n"
"installation. You should also backup your data.\n"
"When sure, press Ok."
msgstr ""
"KUJDES!\n"
"\n"
"DrakX tani do tė ridimenzionoj ndarjen tuaj Windows. Keni kujdes:\n"
"ky operacion ėshtė i rrezikshėm. Nėse ju nuk e keni bėrė, ėshtė\n"
"dashur ti regjistroni tė dhėnat tuaja, dhe tė nisni programet\n"
"scandisk nė Windows (dhe njashtu tė niset defrag), dhe mandej\n"
"riniseni instalimin nė kėtė ndarje.\n"
"Nėse ju jeni i sigurt, shtypni mbi OK."

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"Your Windows partition is too fragmented. Please reboot your computer under "
"Windows, run the ``defrag'' utility, then restart the Mandrake Linux "
"installation."
msgstr ""
"Ndarja juaj Windows ėshtė e pa defragmentuar. Ju lutemi riniseni kompjuterin "
"tuaj nė Windows, the niseni programin pėr defragmentim ``defrag'', dhe "
"mandej riniseni instalimin e Mandrake Linux "

#: ../../install_interactive.pm:1
#, c-format
msgid "Computing the size of the Windows partition"
msgstr "Pėrdore hapėsirėn e ndarjes Windows"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"The FAT resizer is unable to handle your partition, \n"
"the following error occured: %s"
msgstr ""
"Programi i ridimenzionimit i ndarjeve FAT nuk mund ta qeverisė\n"
"ndarjen tuaj. Gabimi me radhė ėshtė paraqitur: %s"

#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to resize?"
msgstr "Cilėn ndarje dėshironi ta ridimenziononi?"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use the free space on the Windows partition"
msgstr "Pėrdore hapėsirėn e lirė nė ndarjen Windows"

#: ../../install_interactive.pm:1
#, c-format
msgid "There is no FAT partition to use as loopback (or not enough space left)"
msgstr ""
"Asnjė ndarje FAT pėr ta pėrdorur sikur loopback (ose nuk ka hapėsirė tė "
"mjaftueshme)"

#: ../../install_interactive.pm:1
#, c-format
msgid "Swap partition size in MB: "
msgstr "Madhėsia e ndarjes swap nė MB: "

#: ../../install_interactive.pm:1
#, c-format
msgid "Root partition size in MB: "
msgstr "Madhėsi e ndarjes rrėnjore nė MB: "

#: ../../install_interactive.pm:1
#, c-format
msgid "Choose the sizes"
msgstr "Zgjedhje e madhėsive"

#: ../../install_interactive.pm:1
#, c-format
msgid "Which partition do you want to use for Linux4Win?"
msgstr "Cilėn ndarje dėshironi ta pėrdorni pėr Linux4Win"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use the Windows partition for loopback"
msgstr "Pėrdore ndarjen Windows pėr loopback"

#: ../../install_interactive.pm:1
#, c-format
msgid "There is no existing partition to use"
msgstr "Asnjė ndarje egzistuese pėr pėrdorim"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use existing partitions"
msgstr "Pėrdori ndarjet egzistuese"

#: ../../install_interactive.pm:1
#, c-format
msgid "Not enough free space to allocate new partitions"
msgstr "Nuk posedon vendė tė mjaftueshėm, pėr tė krijuar ndarje tė reja"

#: ../../install_interactive.pm:1
#, c-format
msgid "Use free space"
msgstr "Hapėsirė e lirė e pėrdorur"

#: ../../install_interactive.pm:1 ../../install_steps.pm:1
#, c-format
msgid "You must have a FAT partition mounted in /boot/efi"
msgstr "Ju duhet tė posedoni njė ndarje FAT tė montuar nė /boot/efi"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"You don't have a swap partition.\n"
"\n"
"Continue anyway?"
msgstr ""
"Ju nuk posedoni njė ndarje swap.\n"
"\n"
"Vazhdoni pa marrė parasysh?"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"You must have a root partition.\n"
"For this, create a partition (or click on an existing one).\n"
"Then choose action ``Mount point'' and set it to `/'"
msgstr ""
"Ju duhet tė posedoni njė ndarje rrėnjėzore (root).\n"
"Pėr kėtė, krijoni njė ndarje (apo klikoni mbi njė qė ekziston).\n"
"Mandej klikoni mbi akcionin ``Pikė montuese'' dhe zgjedheni `/'"

#: ../../install_interactive.pm:1
#, c-format
msgid ""
"Some hardware on your computer needs ``proprietary'' drivers to work.\n"
"You can find some information about them at: %s"
msgstr ""
"Disa periferik prezent nė sistemin tuaj u nevojiten pilotė ``pronari'' pėr\n"
"tė funksionuar si duhet. Ju mund tė gjeni mė shumė informacione pėrkatėse "
"kėtu: %s"

#: ../../install_messages.pm:1
#, c-format
msgid ""
"Congratulations, installation is complete.\n"
"Remove the boot media and press return to reboot.\n"
"\n"
"\n"
"For information on fixes which are available for this release of Mandrake "
"Linux,\n"
"consult the Errata available from:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Information on configuring your system is available in the post\n"
"install chapter of the Official Mandrake Linux User's Guide."
msgstr ""
"Urime, instalimi mori fund.\n"
"Nxerreni disketėn apo CD-ROM(in) dhe shtypni mbi Enter.\n"
"\n"
"\n"
"Pėr tė gjitha informacionet pėr korigjimet nė disponibilitė pėr kėtė version "
"tė Linux Mandrake, duhet tė konsultoni Errata, e lirė\n"
"nga:\n"
"\n"
"\n"
"%s\n"
"\n"
"\n"
"Informacionet mbi konfigurimin e sistemit tuaj janė tė lira\n"
"nė kapitullin e doracakut pėr pėrdorimin e Mandrake Linux"

#: ../../install_messages.pm:1
#, fuzzy, c-format
msgid "http://www.mandrakelinux.com/en/91errata.php3"
msgstr "http://www.mandrakelinux.com/en/90errata.php3"

#: ../../install_messages.pm:1
#, c-format
msgid ""
"\n"
"Warning\n"
"\n"
"Please read carefully the terms below. If you disagree with any\n"
"portion, you are not allowed to install the next CD media. Press 'Refuse' \n"
"to continue the installation without using these media.\n"
"\n"
"\n"
"Some components contained in the next CD media are not governed\n"
"by the GPL License or similar agreements. Each such component is then\n"
"governed by the terms and conditions of its own specific license. \n"
"Please read carefully and comply with such specific licenses before \n"
"you use or redistribute the said components. \n"
"Such licenses will in general prevent the transfer,  duplication \n"
"(except for backup purposes), redistribution, reverse engineering, \n"
"de-assembly, de-compilation or modification of the component. \n"
"Any breach of agreement will immediately terminate your rights under \n"
"the specific license. Unless the specific license terms grant you such\n"
"rights, you usually cannot install the programs on more than one\n"
"system, or adapt it to be used on a network. In doubt, please contact \n"
"directly the distributor or editor of the component. \n"
"Transfer to third parties or copying of such components including the \n"
"documentation is usually forbidden.\n"
"\n"
"\n"
"All rights to the components of the next CD media belong to their \n"
"respective authors and are protected by intellectual property and \n"
"copyright laws applicable to software programs.\n"
msgstr ""
"\n"
"Kujdes\n"
"\n"
"Ju lutemi lexoni me vėmendje dokumentin e prezentuar. Nė rats se nuk\n"
"pajtoheni me tė, ju nuk do jeni i detyruar t'instaloni cd-rom(et)\n"
"me radhė. Nė kėtė rast, Klikoni mbi ēelėsin 'Refuzo' pėr tė vazhduar\n"
"instalimin pas kėto media.\n"
"\n"
"\n"
"Disa prej komponimeve tė pėrmbajtura nė CD-met e ardhshme, nuk janė\n"
"ndėr licencat e GPL apo diēka tė tillė, qė nuk mundėson kopjimin apo\n"
"ndryshimin e tė dhėnave. Secili komponent i programeve ėshtė i shpėrndarė\n"
"ndėr termet e licencės sė tij personale. A keni dėshirė qė ti referoheni\n"
"dhe ti nėnshtroheni para se t'instaloni apo ti shpėrndani. Zakonisht, kėto\n"
"licenca nuk autorizojnė kopjimin e (pėrveq regjistrimit tė tyre),\n"
"shpėrdarjeve, dekompilimit, shpėrbėrjen, inzhinierim tė mbrapėm dhe\n"
"ndryshimin i programeve nė tė cilin pėrputhen. Tė gjitha kundėrshtimet\n"
"me termet e licencės aplikuese, shtynė kah prishja e kontratės, pa\n"
"kurrėfar kundėrshtimi dhe ēfarėdo tė drejte tjetėr, apo akcioni nga "
"anajuaj.\n"
"Vetėm nėse kushti i licencės, ju autorizon njė gjė tė tillė, ju nuk mund\n"
"t'instaloni ato programe, nė ndonji kompjuter tjetėr (d.m.th vetėm nė njė\n"
"kompjuter), apo t'adaptoni programet pėr njė pėrdorim nė rrjet. Rasti\n"
"i fundit, kontaktoni shpėrndarėsin (shitėsin) e programit pėr tė pranuar\n"
"licencėn. Shpėrndarje e njė pjese e kopive tė programeve, apo tė\n"
"dokumnetacionit, i cili gjindet nė to, ėshtė i ndaluar.\n"
"\n"
"Tė gjitha tė drejtat, titujt dhe rėndėsit tė kėtyre programeve janė\n"
"pronėsia n'ekskluzivitet t'autorėve tė tyre, dhe njashtu janė tė\n"
"mbrojtur nga titujt, tė drejtat intelektuale, dhe drejtė botimi aplikues i "
"programeve.\n"

#: ../../install_messages.pm:1
#, c-format
msgid ""
"Introduction\n"
"\n"
"The operating system and the different components available in the Mandrake "
"Linux distribution \n"
"shall be called the \"Software Products\" hereafter. The Software Products "
"include, but are not \n"
"restricted to, the set of programs, methods, rules and documentation related "
"to the operating \n"
"system and the different components of the Mandrake Linux distribution.\n"
"\n"
"\n"
"1. License Agreement\n"
"\n"
"Please read this document carefully. This document is a license agreement "
"between you and  \n"
"MandrakeSoft S.A. which applies to the Software Products.\n"
"By installing, duplicating or using the Software Products in any manner, you "
"explicitly \n"
"accept and fully agree to conform to the terms and conditions of this "
"License. \n"
"If you disagree with any portion of the License, you are not allowed to "
"install, duplicate or use \n"
"the Software Products. \n"
"Any attempt to install, duplicate or use the Software Products in a manner "
"which does not comply \n"
"with the terms and conditions of this License is void and will terminate "
"your rights under this \n"
"License. Upon termination of the License,  you must immediately destroy all "
"copies of the \n"
"Software Products.\n"
"\n"
"\n"
"2. Limited Warranty\n"
"\n"
"The Software Products and attached documentation are provided \"as is\", "
"with no warranty, to the \n"
"extent permitted by law.\n"
"MandrakeSoft S.A. will, in no circumstances and to the extent permitted by "
"law, be liable for any special,\n"
"incidental, direct or indirect damages whatsoever (including without "
"limitation damages for loss of \n"
"business, interruption of business, financial loss, legal fees and penalties "
"resulting from a court \n"
"judgment, or any other consequential loss) arising out of  the use or "
"inability to use the Software \n"
"Products, even if MandrakeSoft S.A. has been advised of the possibility or "
"occurence of such \n"
"damages.\n"
"\n"
"LIMITED LIABILITY LINKED TO POSSESSING OR USING PROHIBITED SOFTWARE IN SOME "
"COUNTRIES\n"
"\n"
"To the extent permitted by law, MandrakeSoft S.A. or its distributors will, "
"in no circumstances, be \n"
"liable for any special, incidental, direct or indirect damages whatsoever "
"(including without \n"
"limitation damages for loss of business, interruption of business, financial "
"loss, legal fees \n"
"and penalties resulting from a court judgment, or any other consequential "
"loss) arising out \n"
"of the possession and use of software components or arising out of  "
"downloading software components \n"
"from one of Mandrake Linux sites  which are prohibited or restricted in some "
"countries by local laws.\n"
"This limited liability applies to, but is not restricted to, the strong "
"cryptography components \n"
"included in the Software Products.\n"
"\n"
"\n"
"3. The GPL License and Related Licenses\n"
"\n"
"The Software Products consist of components created by different persons or "
"entities.  Most \n"
"of these components are governed under the terms and conditions of the GNU "
"General Public \n"
"Licence, hereafter called \"GPL\", or of similar licenses. Most of these "
"licenses allow you to use, \n"
"duplicate, adapt or redistribute the components which they cover. Please "
"read carefully the terms \n"
"and conditions of the license agreement for each component before using any "
"component. Any question \n"
"on a component license should be addressed to the component author and not "
"to MandrakeSoft.\n"
"The programs developed by MandrakeSoft S.A. are governed by the GPL License. "
"Documentation written \n"
"by MandrakeSoft S.A. is governed by a specific license. Please refer to the "
"documentation for \n"
"further details.\n"
"\n"
"\n"
"4. Intellectual Property Rights\n"
"\n"
"All rights to the components of the Software Products belong to their "
"respective authors and are \n"
"protected by intellectual property and copyright laws applicable to software "
"programs.\n"
"MandrakeSoft S.A. reserves its rights to modify or adapt the Software "
"Products, as a whole or in \n"
"parts, by all means and for all purposes.\n"
"\"Mandrake\", \"Mandrake Linux\" and associated logos are trademarks of "
"MandrakeSoft S.A.  \n"
"\n"
"\n"
"5. Governing Laws \n"
"\n"
"If any portion of this agreement is held void, illegal or inapplicable by a "
"court judgment, this \n"
"portion is excluded from this contract. You remain bound by the other "
"applicable sections of the \n"
"agreement.\n"
"The terms and conditions of this License are governed by the Laws of "
"France.\n"
"All disputes on the terms of this license will preferably be settled out of "
"court. As a last \n"
"resort, the dispute will be referred to the appropriate Courts of Law of "
"Paris - France.\n"
"For any question on this document, please contact MandrakeSoft S.A.  \n"
msgstr ""
"Parathėnie\n"
"\n"
"Sistemi i eksploatimit dhe i komponimeve tė tjera nė disponibilitet nė \n"
"shpėrndarjen Mandrake Linux janė t'emruara \"Produkte Software\".\n"
"Produketet Software pėrmbajnė , mirėpo nuk i nėnshtrohen bashkėsisė \n"
"sė programeve, tė mė parme, rregullave dhe dukumentacionit \n"
"mbi eksploatimin e sistemeve dhe komponimeve tė ndryshme tė \n"
"shpėrndarjes Mandrake Linux.\n"
"\n"
"\n"
"1. Licenca\n"
"\n"
"Ju lutemi lexoni me vėmendje dokumentin vijues. Ky dokument pėrmban \n"
"kontratėn e licencės mes jush dhe \n"
"MandrakeSoft S.A. i pėrmbajtur nė programe.\n"
"Duke instaluar, riprodhuar apo pėrdoruar programet nė ēfarėdo \n"
"mėnyre \n"
"qė janė shėnuar, dhe ju i njifni, i  pranoni kontratat, termet \n"
"dhe kushtet e licencės.\n"
"Nėse ju nuk pajtoheni me kėto terme tė licencės, ju nuk jeni i detyruar "
"t'instaloni, dufyshoni apo pėr ti pėrdorur \n"
"Produketet Software. \n"
"Nė rast tė pėrpjekjes, t'instalimit, dyfishimit apo pėrdorimit tė "
"Produketeve Software nė ēfarėdo mėnyre qė nuk pėrputhen \n"
"me termet dhe kondicionet e Licencės tė drejtat tuaja do tė shuhen ndėr "
"kėtė \n"
"Licencė. Nė rast se pėrfundohet Licenca, ju duhet ti shkatėrroni tė gjitha "
"kopjet e\n"
"Produkteve Software.\n"
"\n"
"\n"
"2. Kufizim i Garancės\n"
"\n"
"Produktet Software dhe dokumnetacionet e bashkangjitura janė tė furnizuar "
"\"siq janė\" pa garancė, dhe \n"
"pėrgjegjėsitė vijuese me ligj.\n"
"MandrakeSoft S.A. nuk merrė kurrėfarė pėrgjegjėsie nė prodhimin e ndinji "
"porblemi, dėmi direkt, (duke mos marrė parasysh kufizimet e dėmeve \n"
"nė humbje tė biznisit, ndaljen e biznisit, humbjes finaciare dhe dėnimet nga "
"gjykata, \n"
"apo ēfarėdo hymbje tjetėr) me shlyerjen e jashtė pėrdorimit apo mos lejimin "
"e pėrdorimit tė Software, dėmshpėrblimet duhet \n"
"tė kthehen nga vendosmėria Produkteve, edhe pse MandrakeSoft S.A. ėshtė i "
"informuar \n"
"pėr arritjen e njė dėmi.\n"
"\n"
"KĖSHILLĖ NĖ MBAJTJEN APO PĖRDORIMIN E PROGRAMEVE TĖ NDALUARA NĖ DISA SHTETE\n"
"\n"
"N'asnjė mėnyrė, as MandrakeSoft S.A. apo furnizuesit e tij nuk mund tė "
"jenė \n"
"pėrgjegjės, pėr arėsye tė njė dėmi special, direkt apo indirekt (duke mos "
"pėrfshirė \n"
"kifizimin e dėmit, humbjes sė benificimit, ndėrprerjeve punuese humbjes sė \n"
"informacioneve komercializuese apo humbje tjera njashtudėnimet dhe "
"shpėrblimet duhet tė derdhen simbas\n"
"njė vendimi gjygjėsor) i cili do tė bėjė njė pėrdorim \n"
"apo njė transferim tė Mandrake Linux tė programeve tė ndaluara nė "
"legjitimitet, nga i cili ju bėni pjesė.\n"
"Ky njoftim i pėrketė njashtu edhe disa programeve tė \n"
"kriptografisė tė furnizuar me programe.\n"
"\n"
"\n"
"3. Licenca GPL dhe Licenca tė tjera\n"
"Programet janė me pėrmbajtje modulesh, programet janė krijuar nga pesrona tė "
"ndryshėm. Pjesa mė e madhe \n"
"janė tė qeverisur ndėr termet dhe kushtet e GNU General Public \n"
"Licencė, e quajtur \"GPL\", apo licencė e njėjtė. Pjesėn mė tė madhe tė "
"kėtyre licencave mund ta pėrdoroni, \n"
"ti dyfishoni, ti adaptoni apo ti rishpėrndani modulet. Ju lutemi lexoni me "
"vėmendje termet \n"
"dhe kushtet e licencės, pajtimet pėr secilin komponent para se ta pėrdorni "
"njėrin nga ta. Secila pyetje \n"
"pėr licencat e komponeneteve duhet t'adresohet autorit dhe jo tek "
"MandrakeSoft.\n"
"Program Zhvilluesi nga MandrakeSoft S.A. ėshtė i qeverisur nga Licencat GPL. "
"Shkrimet nė Dokumentacione \n"
"nga MandrakeSoft S.A. janė tė qeverisura nga licenca e specifikuar. Ju "
"lutemi referohuni nė dokumentacion pėr \n"
"mė shumė detaje.\n"
"\n"
"\n"
"4. Pėrparėsit e tė Drjetave Intelektuale\n"
"\n"
"Tė gjitha tė drejtat e komponentevetė Software tė Produkteve, i takojnė "
"autorėve dhe janė \n"
"tė mbrojtura nga pėrparėsit intelektuale, tė drejtat e botimit, dheaplikimi "
"i ligjeve nė software programet.\n"
"MandrakeSoft S.A. rezervon tė drejtat pėr ndryshimin dhe adaptimin e "
"Software Produkteve, nė tėrėsi apo nė njė \n"
"pjesė, d.m.th. tė gjitha propozimet e mundshme.\n"
"\"Mandrake\", \"Mandrake Linux\" dhe logot e shoqėruara janė markė "
"shpėrndarėse e MandrakeSoft S.A.  \n"
"\n"
"\n"
"5. Ligjet Qeveritare\n"
"\n"
"Nėse njė pėlqim vendoset me kėtė kontrat, duhet tė jetė deklaruar me zero \n"
"ilegalisht apo i p'aplikuar nga njė gjykatė kompetente kjo vendosje, do tė "
"tėrhiqet nga kontrata \n"
"prezente.\n"
"Termet dhe kushtet janė tė Licensuara, dhe tė qeverisura nga Ligjet "
"Franceze.\n"
"Tė gjitha diskucionet nė termet e licencės mund tė rregullohen jashtė ligjit "
"nė mėnyrė miqėsore. Nėse nuk jeni dakord \n"
"rasti duhet ti parqitet nė gjykatėn tribunale nė Paris - France.\n"
"Pėr mė shumė pyetje nė lidhje me kėtė dokument, ju lutemi kontaktoni "
"MandrakeSoft S.A.  \n"

#: ../../install_steps_auto_install.pm:1 ../../install_steps_stdio.pm:1
#, c-format
msgid "Entering step `%s'\n"
msgstr "Nisje e etapės `%s'\n"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Go on anyway?"
msgstr "Vathdo pa marrė parasysh?"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error installing packages:"
msgstr "Njė gabim gjatė instalimit tė pakove:"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "There was an error ordering packages:"
msgstr "Njė gabim gjatė radhitjes sė pakove:"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Change your Cd-Rom!\n"
"\n"
"Please insert the Cd-Rom labelled \"%s\" in your drive and press Ok when "
"done.\n"
"If you don't have it, press Cancel to avoid installation from this Cd-Rom."
msgstr ""
"Ndėrroje Cd-Rom tuaj!\n"
"\n"
"Ju lutemi futni Cd-Rom e emruar \"%s\" nė lexuesin tuaj dhe shtypni mbi Ok.\n"
"Nėse ju nuk e posedoni, shtypni mbi ēelėsin Anulo qė mė nė fund tė mos "
"instaloni asgjė nga ky Cd-Rom."

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Refuse"
msgstr "Rrefuzo"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#: ../../standalone/drakautoinst:1
#, c-format
msgid "Accept"
msgstr "Prano"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Installing package %s"
msgstr "Instalimi i pakove %s"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "%d packages"
msgstr "%d pakot"

#: ../../install_steps_gtk.pm:1
#, fuzzy, c-format
msgid "No details"
msgstr "Detajet"

#: ../../install_steps_gtk.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Details"
msgstr "Detajet"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Please wait, preparing installation..."
msgstr "Keni durim ju lutemi, pregatitje pėr instalim..."

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Time remaining "
msgstr "Koha e mbetur"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Estimating"
msgstr "Vlerėsim nė sipėr"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Installing"
msgstr "Instalim"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the packages you want to install"
msgstr "Zgjedhi pakot tė cilat dėshironi t'instaloni"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Minimal install"
msgstr "Instalim minimal"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Updating package selection"
msgstr "Azhurnim i pakove tė zgjedhura"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Load/Save on floppy"
msgstr "Ngarko/Regjistro nė disketė"

#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "<- Previous"
msgstr "<- Mėparshėm"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#: ../../standalone/drakbackup:1
#, c-format
msgid "Install"
msgstr "Instalo"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Show automatically selected packages"
msgstr "Paraqiti automatikisht pakot e zgjedhura"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't unselect this package. It must be upgraded"
msgstr "Ju nuk mund ta ēzgjedhni kėtė pako. Ju duhet ta azhurnoni"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"This package must be upgraded.\n"
"Are you sure you want to deselect it?"
msgstr ""
"Kjo pako duhet tė azhurnohet.\n"
"A jeni i sigurt pėr ēzgjedhjen e tij?"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't unselect this package. It is already installed"
msgstr "Ju nuk mund ta ēzgjedhni kėtė pako. Ėshtė e instaluar mė parė"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "This is a mandatory package, it can't be unselected"
msgstr "Kjo ėshtė njė pako e nevojshme, dhe nuk mund ēzgjedhet"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "You can't select/unselect this package"
msgstr "Ju nuk mund ta zgjedhni/ēzgjedhni kėtė pako"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be removed"
msgstr "Pakot e radhitura do tė zhduken"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "The following packages are going to be installed"
msgstr "Pakot e radhitura do tė instalohen"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid ""
"You can't select this package as there is not enough space left to install it"
msgstr ""
"Nu nuk mund tė zgjidhni kėtė pako, sepse nuk ka vend tė mjaftueshėm pėr ta "
"instaluar"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Importance: %s\n"
msgstr "Rėndėsia: %s\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Size: %d KB\n"
msgstr "Madhėsia: %d KB\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Version: %s\n"
msgstr "Versioni: %s\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Name: %s\n"
msgstr "Emri: %s\n"

#: ../../install_steps_gtk.pm:1
#, c-format
msgid "Bad package"
msgstr "Pako e keqe"

#: ../../install_steps_gtk.pm:1 ../../mouse.pm:1 ../../services.pm:1
#: ../../diskdrake/hd_gtk.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Other"
msgstr "Tjetėr"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Total size: %d / %d MB"
msgstr "Madhėsi totale: %d / %d MB"

#: ../../install_steps_gtk.pm:1 ../../interactive.pm:1 ../../my_gtk.pm:1
#: ../../ugtk2.pm:1 ../../interactive/newt.pm:1
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Next ->"
msgstr "Tjetri ->"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Individual package selection"
msgstr "Zgjedhni pakot individualisht"

#: ../../install_steps_gtk.pm:1 ../../ugtk2.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../diskdrake/hd_gtk.pm:1
#: ../../interactive/gtk.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#, c-format
msgid "Help"
msgstr "Ndihmė"

#: ../../install_steps_gtk.pm:1 ../../install_steps_interactive.pm:1
#, c-format
msgid "Package Group Selection"
msgstr "Zgjedhni grupet e pakove"

#: ../../install_steps_gtk.pm:1
#, c-format
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 "
"this,\n"
"press `F1' when booting on CDROM, then enter `text'."
msgstr ""
"Kopjuteri juaj posedon sasi tė vogėl tė memorisė. Ju mund tė ndesheni me\n"
"disa probleme gjatė instalimit tė Mandrake Linux. Nėse kjo ndodhė, ju\n"
"ju mund tė vazhdoni nė njė instalim nė modė teksti. Pėr kėtė sgtypni mbi\n"
"`F1' kut tė niseni me njė nisje tė udhėzuar nė CDROM, dhe fytni urdhėrin "
"`text'."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Save packages selection"
msgstr "Regjistro"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Automated"
msgstr "Automatizuar"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Replay"
msgstr "Rilexo"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"The auto install can be fully automated if wanted,\n"
"in that case it will take over the hard drive!!\n"
"(this is meant for installing on another box).\n"
"\n"
"You may prefer to replay the installation.\n"
msgstr ""
"Auto instalimi mund tė bėhet me instalim tė automatizuar, nėse\n"
"dėshironi, ai do tė merė kontrolin mbi disku tuaj tė fort!!\n"
"(ėshtė i pėrcaktuar pėr instalimin njodnjė makine tjetėr).\n"
"\n"
"A dėshironi ta pėrsėritni instalimin.\n"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Generate auto install floppy"
msgstr "Krijo njė disketė auto instaluese"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Reboot"
msgstr "Rinise"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Some steps are not completed.\n"
"\n"
"Do you really want to quit now?"
msgstr ""
"Disa etapa nuk kanė pėrfunruar.\n"
"\n"
"A dėshironi me tė vėrtetė ta braktisni tani?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Creating auto install floppy..."
msgstr "Krijim i njė diskete auto instaluese..."

#: ../../install_steps_interactive.pm:1 ../../standalone/drakautoinst:1
#, c-format
msgid "Insert a blank floppy in drive %s"
msgstr "Futni njė disketė tė zbrazėt nė lexuesin e disketave %s"

#: ../../install_steps_interactive.pm:1
#, 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"
" reboot, hold down Command-Option-O-F at reboot and enter:\n"
" setenv boot-device %s,\\\\:tbxi\n"
" Then type: shut-down\n"
"At your next boot you should see the bootloader prompt."
msgstr ""
"Ndoshta ju duhet tė ndėrroni lexuesin me nisje tė udhėzuar tė Open\n"
" Firmware, pėr tė aktivizuar programin me nisje tė udhėzuar. Nėse ju\n"
" vėreni njė hyrje tė programit me nisje tė udhėzuar, gjatė nisjes sė\n"
" sistemit tuaj, shtypni mbi Command-Option-O-F dhe rinisni sistemin tuaj\n"
" futni: setenv boot-device %s,\\\\:tbxi. Mandej shtypni: shut-down\n"
"Nė nisjes tjetėr tė sistemit tuaj, ju do ta vėreni hyrjen e programit me "
"nisje tė udhėzuar."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Installation of bootloader failed. The following error occured:"
msgstr ""
"Instalimi i programit me nisje tė udhėzuar dėshtoj. Gabim e radhiturajanė:"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Installing bootloader"
msgstr "Instalim i programit me nisje tė udhėzuar"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Error installing aboot, \n"
"try to force installation even if that destroys the first partition?"
msgstr ""
"Gabim gjatė instalimit aboot, \n"
"mundohu me instalim forcues, edhe pse ai do tė shkatėrroj ndarjen e parė?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Do you want to use aboot?"
msgstr "A dėshironi tė pėrdorni aboot?"

#: ../../install_steps_interactive.pm:1
#, c-format
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 or some other means to boot your machine"
msgstr ""
"Me sa duket makina juaj posedon njė arqitekturė tė vjetėr apo tė pa\n"
" njoftur, programi pėr nisje tė udhėzuar yabbot nuk do tė funksionoj.\n"
"Dhe instalimi do tė vazhdoj mė tutje, mirėpo ju\n"
" duhet tė posedoni BootX qė te nisni sistemin tuaj"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing bootloader..."
msgstr "Pregatitje e programit me nisje tė udhėzuar..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Domain Admin Password"
msgstr "Patulla e Administruesit tė Pronės"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Domain Admin User Name"
msgstr "Emri i Administruesit tė Pronės"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Windows Domain"
msgstr "Pronė Windows"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Authentication Windows Domain"
msgstr "Vėrtetėsim i Pronės Windows"

#: ../../install_steps_interactive.pm:1
#, c-format
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 ""
"Qė kjo tė punoj si duhet me njė kontrolues kryesore tė pronės (PDC) Windows "
"2000, ju duhet me siguri qė ta sinjalizoni administratorin tė nisė:  C:"
"\\>net localgroup \"Pre-Windows 2000 Compatible Access\" secili /shton dhe "
"ri-nisė serverin.\n"
"Ju njashtu keni nevojė pėr emrin pėrdorues dhe parullėn e njė administratori "
"tė pronės pėr tu bashkuar makinėn me pronėn Windows(TM).\n"
"Nėse rrjeti nėse ėshtė ende i aktivizuar, prona do tė bashkohet mbasė etapės "
"konfiguruese tė rrjetit.\n"
"Nėse kjo etapė dėshton nga ndonji arrėsye, e nėse vėrtetėsimi nuk "
"funksionon, niseni 'smbpasswd -j DOMAIN -U USER%%PASSWORD' duke pėrdorur "
"pronėn tuaj Windows(tm), emrin tuaj nė pėrsorues dhe parullėn, mbasė nisjes "
"sė sistemit.\n"
"Urdhėri 'wbinfo -t' do tė testoj funksionimin e vėrtetėsimit."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NIS Server"
msgstr "Server NIS"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NIS Domain"
msgstr "Pronė NIS"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Authentication NIS"
msgstr "Vėrtetėsim NIS"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NIS"
msgstr "NIS"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "LDAP Server"
msgstr "Srever LDAP"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "LDAP Base dn"
msgstr "Rrėnja (dn) LDAP"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Authentication LDAP"
msgstr "Vėrtetėsim LDAP"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "LDAP"
msgstr "LDAP"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Local files"
msgstr "Skedare lokale"

#: ../../install_steps_interactive.pm:1 ../../network/modem.pm:1
#: ../../standalone/drakconnect:1 ../../standalone/logdrake:1
#, c-format
msgid "Authentication"
msgstr "Vėrtetėsim"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "This password is too short (it must be at least %d characters long)"
msgstr ""
"Kjo parullė ėshtė shumė e shkurtėr (duhet tė jetė mė sė paku prej %d "
"simboleve)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No password"
msgstr "Ska nevojė pėr parullė"

#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
msgid "Set root password"
msgstr "Parulla root"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You have not configured X. Are you sure you really want this?"
msgstr ""

#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#, c-format
msgid "Services: %d activated for %d registered"
msgstr "Serviset: %d tė aktivizuara pėr %d e regjitruara"

#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#, c-format
msgid "Services"
msgstr "Serviset"

#: ../../install_steps_interactive.pm:1 ../../services.pm:1
#: ../../standalone/drakbackup:1
#, c-format
msgid "System"
msgstr "Sistemi"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Bootloader"
msgstr "Bootloader"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Boot"
msgstr "Ndarje e Rrėnjės"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "disabled"
msgstr "ēaktivizuar"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "activated"
msgstr "aktivizoje tani"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Firewall"
msgstr "Murė-i-Zjarrtė/Router"

#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
msgid "Security"
msgstr "Siguria"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Security Level"
msgstr "Nivel i Sigurisė:"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "not configured"
msgstr "i pa konfiguruar"

#: ../../install_steps_interactive.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Network"
msgstr "Rrjeti"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Network & Internet"
msgstr "Interfac rrjeti"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Graphical interface"
msgstr "Interfac grafike"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "Hardware"
msgstr "HardDrake"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "TV card"
msgstr "Kartelė TV"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No sound card detected. Try \"harddrake\" after installation"
msgstr "Asnjė kartelė e vėrejtur. Provo \"harddrake\" mbasė instalimit"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Run \"sndconfig\" after installation to configure your sound card"
msgstr "Nise \"sndconfig\" mbasė instalimit pėr tė konfiguruar kartėlėn tuaj"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Do you have an ISA sound card?"
msgstr "A posedoni njė kartelė zėri ISA?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Sound card"
msgstr "Kartelė zėri"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Remote CUPS server"
msgstr "Server nė distancė CUPS"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No printer"
msgstr "Asnjė stampues"

#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer"
msgstr "Stampues"

#: ../../install_steps_interactive.pm:1 ../../harddrake/data.pm:1
#, c-format
msgid "Mouse"
msgstr "Mini"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Timezone"
msgstr "Zonė orare"

#: ../../install_steps_interactive.pm:1 ../../standalone/keyboarddrake:1
#, c-format
msgid "Keyboard"
msgstr "Tastierė"

#: ../../install_steps_interactive.pm:1 ../../steps.pm:1
#, c-format
msgid "Summary"
msgstr "Pėrmbledhje"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "NTP Server"
msgstr "Server NTP"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Automatic time synchronization (using NTP)"
msgstr "Sinkronizim automatik i orės (via NTP)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Hardware clock set to GMT"
msgstr "Orė Sistemi e rregulluar nė Kohėn Uneverzale (GMT)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Which is your timezone?"
msgstr "Cila ėshtė zona juaj orare?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Contacting the mirror to get the list of available packages..."
msgstr "Transferim i listės sė pasqyreve me pako tė lira..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose a mirror from which to get the packages"
msgstr "Zgjedheni njė pasqyre nga e cila do tė transferoni pakot"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Contacting Mandrake Linux web site to get the list of available mirrors..."
msgstr ""
"Kyqje ne sitin Mandrake Linux pėr tė pranuar listėn e lirė tė pasqyreve..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You now have the opportunity to download updated packages. These packages\n"
"have been updated after the distribution was released. They may\n"
"contain security or bug fixes.\n"
"\n"
"To download these packages, you will need to have a working Internet \n"
"connection.\n"
"\n"
"Do you want to install the updates ?"
msgstr ""
"Tani keni mundėsinė qė tė transferoni azhurnimet tė krijuara qė nga\n"
"dalja e tyre nė pėrdorim. Ėshtė e mundur qė tė ketė korigjime\n"
"tė sigurisė dhe rregullimit tė problemeve me bug.\n"
"\n"
"Pėr ti transferuar pakot e dhėnuara, ju duhet tė posedoni njė kyqje \n"
"nė rrjetin e internetit.\n"
"\n"
"A dėshironi tė instaloni kėto azhurnime ?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Update Modules floppy in drive %s"
msgstr "Ju lutemi futni disketėn e Azhurnimit tė Moduleve nė lexues %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please insert the Boot floppy used in drive %s"
msgstr ""
"Ju lutemi futni disketėn me nisje tė udhėzuar (Boot floppy) tė pėrdorur nė "
"lexues %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Post-install configuration"
msgstr "Konfigurim i postit-instalues"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Installing package %s\n"
"%d%%"
msgstr ""
"Instalim i pakove %s\n"
"%d%%"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Preparing installation"
msgstr "Pregatitje pėr instalim"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Cd-Rom labeled \"%s\""
msgstr "Etiketė Cd-Rom \"%s\""

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"If you have all the CDs in the list below, click Ok.\n"
"If you have none of those CDs, click Cancel.\n"
"If only some CDs are missing, unselect them, then click Ok."
msgstr ""
"Nėse ju posedoni tė gjitha CD-tė nė listėn vijuese, kliko mbi Ok.\n"
"Nėse ju nuk posedoni asnjė nga kėto CD-e, kliko mbi Anulo.\n"
"Nėse vetėm disa nga CD-tė mungojnė, ēzgjedhi, dhe kliko Ok."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Truly minimal install (especially no urpmi)"
msgstr "Instalim me tė vėrtet minimal (nė veēanti pa urpmi)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "With basic documentation (recommended!)"
msgstr "Me dokumentacion tė bazės (rekomanduar!)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "With X"
msgstr "Me X"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"You haven't selected any group of packages.\n"
"Please choose the minimal installation you want:"
msgstr ""
"Ju nuk keni zgjedhur asnjė grup tė pakove.\n"
"Ju lutemi zgjedhni njė instalim minimal tė dėshiruar:"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Type of install"
msgstr "Tip i instalimit"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Selected size is larger than available space"
msgstr "Madhėsia e zgjedhur ėshtė shumė mė e gjatė se sa hapėsira e lirė"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Insert a floppy containing package selection"
msgstr "Futni disketėn me pėrmbajtje tė pakove tė zgjedhura"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Loading from floppy"
msgstr "Ngarkim nga disketa"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Package selection"
msgstr "Zgjedhje e pakos"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Save on floppy"
msgstr "Regjistro nė disketė"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Load from floppy"
msgstr "Ngarko nga disketa"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Please choose load or save package selection on floppy.\n"
"The format is the same as auto_install generated floppies."
msgstr ""
"Ju lutemi zgjedhni ngarkimin apo regjistroni pakot nė floppy diskė.\n"
"Forma ėshtė e njėjtė sikur nė disketė me tėrheqje t'instalimit automatikė."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Your system does not have enough space left for installation or upgrade (%d "
"> %d)"
msgstr ""
"Sistemi juaj nuk posedon hapėsirė tė mjaftueshme pėr instalim apo azhurnim (%"
"d > %d)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Finding packages to upgrade..."
msgstr "Gjetja pakove pėr t'azhurnuar..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking at packages already installed..."
msgstr "Kėrkim i pakove t'instaluara mė parė..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking for available packages..."
msgstr "Kėrkim i pakove disponible..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Looking for available packages and rebuilding rpm database..."
msgstr ""
"Kėrkim i pakove disponible dhe rikpnstruimi i bazės sė tė dhėnave rpm..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Not enough swap space to fulfill installation, please add some"
msgstr ""
"Swap ėshtė i pamjaftueshėm pėr ta pėrfundur instalimin, ju lutemi njė sasi"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid ""
"Failed to check filesystem %s. Do you want to repair the errors? (beware, "
"you can loose data)"
msgstr ""
"Gabim gjatė verifikimit tė sistemit tė skedareve %s. A dėshironi ti "
"korigjoni gabim? (kujdes ju mund ti humbni tė dhėnat)"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Check bad blocks?"
msgstr "Verifikim i bloqeve tė dėmtuara?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the partitions you want to format"
msgstr "Zgjedhni ndarjet qė dėshironi ti formatoni"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "You need to reboot for the partition table modifications to take place"
msgstr ""
"Ju duhet ta rinisni sistemin qė ndryshimet tė jenė trasportuar nė tabelė qė "
"tė jenė marrė parasysh"

#: ../../install_steps_interactive.pm:1
#, c-format
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 ""
"Nuk ka hepėsirė tė lirė, pėr ndarjen me nisje tė udhėzuar (bootstrap) me 1MB!"
"Instalimi do tė vazhdoj, ju duhet tė krijoni njė ndarje me nisje tė udhėzuar"
"(bootstrap) nė DiskDrake"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Choose the mount points"
msgstr "Zgjedhni pikat montuese"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Scanning partitions to find mount points"
msgstr "Scanim i ndarjeve pėr tė gjetur pikėn montuese"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "No partition available"
msgstr "Asnjė ndarje e lirė"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring IDE"
msgstr "Konfigurim IDE"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "IDE"
msgstr "IDE"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Configuring PCMCIA cards..."
msgstr "Konfigurim i kartelės PCMCIA..."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "PCMCIA"
msgstr "PCMCIA"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Button 3 Emulation"
msgstr "Imitues i Ēelėsit 3"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Button 2 Emulation"
msgstr "Imitues i Ēelėsit 2"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Buttons emulation"
msgstr "Imitues i Ēelėsave"

#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
#, c-format
msgid "Please choose which serial port your mouse is connected to."
msgstr ""
"Ju lutemi zgjedheni portėn e serisė, nė tė cilėn ėshtė kyqur mini i juaj."

#: ../../install_steps_interactive.pm:1 ../../standalone/mousedrake:1
#, c-format
msgid "Mouse Port"
msgstr "Porta e Minit"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your type of mouse."
msgstr "Ju lutemi zgjedheni tipin e minit tuaj."

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade"
msgstr "Azhurno"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Upgrade %s"
msgstr "Azhurno %s"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Is this an install or an upgrade?"
msgstr "Ėshtė ky njė instalim apo azhurnim?"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Install/Upgrade"
msgstr "Instalo/Azhurno"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Here is the full list of keyboards available"
msgstr "Ja ku ėshtė lista komplete e tastierave nė disponibilitet"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "Please choose your keyboard layout."
msgstr "Ju lutemi zgjedhni tipin tuaj tė tastierės"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "License agreement"
msgstr "Licenc e pajtueshmėrisė"

#: ../../install_steps_interactive.pm:1
#, fuzzy, c-format
msgid "default:LTR"
msgstr "default"

#: ../../install_steps_interactive.pm:1
#, c-format
msgid "An error occurred"
msgstr "Njė gabim ėshtė paraqitur"

#: ../../install_steps_newt.pm:1
#, c-format
msgid ""
"  <Tab>/<Alt-Tab> between elements  | <Space> selects | <F12> next screen "
msgstr ""
"<Tab> para /<Alt-Tab> mbrapa  | <Space> zgedhjet | <F12> ekrani tjetėr "

#: ../../install_steps_newt.pm:1
#, c-format
msgid "Mandrake Linux Installation %s"
msgstr "Instalimi i Mandrake Linux %s"

#: ../../install_steps.pm:1
#, c-format
msgid "No floppy drive available"
msgstr "Asnjė lexues i disketave nuk ėshtė i lirė"

#: ../../install_steps.pm:1
#, c-format
msgid "Welcome to %s"
msgstr "Mirė se vini nė %s"

#: ../../install_steps.pm:1
#, c-format
msgid ""
"Some important packages didn't get installed properly.\n"
"Either your cdrom drive or your cdrom is defective.\n"
"Check the cdrom on an installed computer using \"rpm -qpl Mandrake/RPMS/*.rpm"
"\"\n"
msgstr ""
"Disa pako me rėndėsi nuk janė instalur nė mėnyrė korrekte.\n"
"Ėshtė e mundur qė cdrom lexuesi apo cdromi-i janė nė defekt.\n"
"Verifikoni cdrom-in nė njė kompjuter t'instalur, duke shtypur urdhėrin \"rpm "
"-qpl Mandrake/RPMS/*.rpm\"\n"

#: ../../install_steps.pm:1
#, c-format
msgid "Duplicate mount point %s"
msgstr "Pikė montuese dyfisht %s"

#: ../../install_steps.pm:1
#, c-format
msgid ""
"An error occurred, but I don't know how to handle it nicely.\n"
"Continue at your own risk."
msgstr ""
"Njė gabim ėshtė paraqitur, dhe duket s'ėshtė vėshtir tė zgjidhet.\n"
"Ju mund tė vazhdoni, mirėpo ju jeni pėrgjegjės."

#: ../../interactive.pm:1 ../../harddrake/sound.pm:1
#: ../../standalone/drakxtv:1 ../../standalone/harddrake2:1
#: ../../standalone/service_harddrake:1
#, c-format
msgid "Please wait"
msgstr "Njė moment ju lutemi"

#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
#: ../../Xconfig/resolution_and_depth.pm:1 ../../interactive/http.pm:1
#: ../../interactive/newt.pm:1 ../../interactive/stdio.pm:1
#: ../../standalone/drakbackup:1 ../../standalone/draksec:1
#, c-format
msgid "Ok"
msgstr "Ok"

#: ../../interactive.pm:1 ../../my_gtk.pm:1 ../../ugtk2.pm:1
#: ../../interactive/newt.pm:1
#, c-format
msgid "Finish"
msgstr "Pėrfundo"

#: ../../interactive.pm:1 ../../standalone/draksec:1
#, c-format
msgid "Basic"
msgstr "Bazik"

#: ../../interactive.pm:1
#, c-format
msgid "Advanced"
msgstr "Vazhdo para"

#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, c-format
msgid "Remove"
msgstr "Zhduke"

#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#, c-format
msgid "Modify"
msgstr "Ndryshoje"

#: ../../interactive.pm:1 ../../interactive/gtk.pm:1
#: ../../standalone/drakbackup:1 ../../standalone/drakfont:1
#, c-format
msgid "Add"
msgstr "Shto"

#: ../../interactive.pm:1
#, c-format
msgid "Choose a file"
msgstr "Zgjedhe njė skedare"

#: ../../keyboard.pm:1
#, c-format
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 ""
"Kėtu ju mund tė zgjidhni ēelėsin apo kombinacionin i cili\n"
"ka mundėsin tė kalojė nė tipe tė ndryshme te tastierave\n"
"(shembull: latin apo jo latin)"

#: ../../keyboard.pm:1
#, c-format
msgid "Right \"Windows\" key"
msgstr "Ēelės \"Windows\" djathtas"

#: ../../keyboard.pm:1
#, c-format
msgid "Left \"Windows\" key"
msgstr "Ēelės \"Windows\" majtas"

#: ../../keyboard.pm:1
#, c-format
msgid "\"Menu\" key"
msgstr "Ēelėsi \"Menu\""

#: ../../keyboard.pm:1
#, c-format
msgid "Alt and Shift keys simultaneously"
msgstr "Ēelėsat Alt dhe Shift tė njėkohshėm"

#: ../../keyboard.pm:1
#, c-format
msgid "Ctrl and Alt keys simultaneously"
msgstr "Ēelėsat Ctrl dhe Alt tė njėkohshėm"

#: ../../keyboard.pm:1
#, c-format
msgid "CapsLock key"
msgstr "Ēelėsi CapsLock (shkronja tė mėdha shtypi)"

#: ../../keyboard.pm:1
#, c-format
msgid "Control and Shift keys simultaneously"
msgstr "Ēelėsat Control dhe Shift tė njėkohshėm"

#: ../../keyboard.pm:1
#, c-format
msgid "Both Shift keys simultaneously"
msgstr "Dy ēelėsa Shift tė njėkohshėm"

#: ../../keyboard.pm:1
#, c-format
msgid "Right Alt key"
msgstr "Ēelės Alt djathtas"

#: ../../keyboard.pm:1
#, c-format
msgid "Yugoslavian (latin)"
msgstr "Jugoslave (latine)"

#: ../../keyboard.pm:1
#, c-format
msgid "Vietnamese \"numeric row\" QWERTY"
msgstr "Vietnamisht \"kolonė numerike\" QWERTY"

#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard (international)"
msgstr "Tastiere e SHBA (internacional)"

#: ../../keyboard.pm:1
#, c-format
msgid "US keyboard"
msgstr "tastierė e SHBA"

#: ../../keyboard.pm:1
#, c-format
msgid "UK keyboard"
msgstr "tastierė nė Anglishte"

#: ../../keyboard.pm:1
#, c-format
msgid "Ukrainian"
msgstr "Ukrahinės"

#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (modern \"Q\" model)"
msgstr "Turke (model modern \"Q\""

#: ../../keyboard.pm:1
#, c-format
msgid "Turkish (traditional \"F\" model)"
msgstr "Turke (model tradicionel \"F\")"

#: ../../keyboard.pm:1
#, c-format
msgid "Tajik keyboard"
msgstr "Tajik tastiere"

#: ../../keyboard.pm:1
#, c-format
msgid "Thai keyboard"
msgstr "Tajlandeze tastiere"

#: ../../keyboard.pm:1
#, c-format
msgid "Tamil (Typewriter-layout)"
msgstr "Tamile (makinė shtypėse)"

#: ../../keyboard.pm:1
#, c-format
msgid "Tamil (ISCII-layout)"
msgstr "Tamile (ISCII-layout)"

#: ../../keyboard.pm:1
#, c-format
msgid "Serbian (cyrillic)"
msgstr "Serbe (qirilicė)"

#: ../../keyboard.pm:1
#, c-format
msgid "Slovakian (QWERTY)"
msgstr "Slovakishte (QWERTY)"

#: ../../keyboard.pm:1
#, c-format
msgid "Slovakian (QWERTZ)"
msgstr "Slovakishte (QWERTZ)"

#: ../../keyboard.pm:1
#, c-format
msgid "Slovenian"
msgstr "Sllovene"

#: ../../keyboard.pm:1
#, c-format
msgid "Swedish"
msgstr "Suedisht"

#: ../../keyboard.pm:1
#, c-format
msgid "Russian (Yawerty)"
msgstr "Rusishtė (Yawerty)"

#: ../../keyboard.pm:1
#, c-format
msgid "Russian"
msgstr "Rusisht"

#: ../../keyboard.pm:1
#, c-format
msgid "Romanian (qwerty)"
msgstr "Romainshte (qwerty"

#: ../../keyboard.pm:1
#, c-format
msgid "Romanian (qwertz)"
msgstr "Romainshte (qwertz)"

#: ../../keyboard.pm:1
#, c-format
msgid "Canadian (Quebec)"
msgstr "Kanadeze (Kebek)"

#: ../../keyboard.pm:1
#, c-format
msgid "Portuguese"
msgstr "Portugeze"

#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwertz layout)"
msgstr "Polonishte (qwertz)"

#: ../../keyboard.pm:1
#, c-format
msgid "Polish (qwerty layout)"
msgstr "Polonishte (qwerty)"

#: ../../keyboard.pm:1
#, c-format
msgid "Norwegian"
msgstr "Norvegjist"

#: ../../keyboard.pm:1
#, c-format
msgid "Dutch"
msgstr "Holandishte"

#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (US)"
msgstr "Maltė (US)"

#: ../../keyboard.pm:1
#, c-format
msgid "Maltese (UK)"
msgstr "Maltė (UK)"

#: ../../keyboard.pm:1
#, c-format
msgid "Mongolian (cyrillic)"
msgstr "Mongolishte (qirilicė)"

#: ../../keyboard.pm:1
#, c-format
msgid "Myanmar (Burmese)"
msgstr "Myanmar (Burmese)"

#: ../../keyboard.pm:1
#, c-format
msgid "Macedonian"
msgstr "Maqedone"

#: ../../keyboard.pm:1
#, c-format
msgid "Malayalam"
msgstr "Malajalam"

#: ../../keyboard.pm:1
#, c-format
msgid "Latvian"
msgstr "Latvien"

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian \"phonetic\" QWERTY"
msgstr "Lituanisė \"fonetik\" Lituanisė"

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian \"number row\" QWERTY"
msgstr "Lituanisė \"vijė e numrave\" QWERTY"

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (new)"
msgstr "Lituanisė AZERTY (e re)"

#: ../../keyboard.pm:1
#, c-format
msgid "Lithuanian AZERTY (old)"
msgstr "Lituanisė AZERTY (e vjetėr)"

#: ../../keyboard.pm:1
#, c-format
msgid "Laotian"
msgstr "Laotien"

#: ../../keyboard.pm:1
#, c-format
msgid "Latin American"
msgstr "Latino-Amerikane"

#: ../../keyboard.pm:1
#, c-format
msgid "Korean keyboard"
msgstr "Koreane tastiere"

#: ../../keyboard.pm:1
#, c-format
msgid "Japanese 106 keys"
msgstr "Japonishtė 106 ēelėsa"

#: ../../keyboard.pm:1
#, c-format
msgid "Inuktitut"
msgstr "Inuktitut"

#: ../../keyboard.pm:1
#, c-format
msgid "Italian"
msgstr "Italiane"

#: ../../keyboard.pm:1
#, c-format
msgid "Icelandic"
msgstr "Islandisht"

#: ../../keyboard.pm:1
#, c-format
msgid "Iranian"
msgstr "Iranisht"

#: ../../keyboard.pm:1
#, c-format
msgid "Israeli (Phonetic)"
msgstr "Izraelisht (fonetik)"

#: ../../keyboard.pm:1
#, c-format
msgid "Israeli"
msgstr "Izraelisht"

#: ../../keyboard.pm:1
#, c-format
msgid "Croatian"
msgstr "Kroatishtė"

#: ../../keyboard.pm:1
#, c-format
msgid "Hungarian"
msgstr "Hungarishtė"

#: ../../keyboard.pm:1
#, c-format
msgid "Gurmukhi"
msgstr "Gurmuki"

#: ../../keyboard.pm:1
#, c-format
msgid "Gujarati"
msgstr "Gujarati"

#: ../../keyboard.pm:1
#, c-format
msgid "Greek"
msgstr "Greqishtė"

#: ../../keyboard.pm:1
#, c-format
msgid "Georgian (\"Latin\" layout)"
msgstr "Gjeorgjishte (disponibilitet \"Latinė\")"

#: ../../keyboard.pm:1
#, c-format
msgid "Georgian (\"Russian\" layout)"
msgstr "Gjeorgjishte (disponibilitet \"Rus\")"

#: ../../keyboard.pm:1
#, c-format
msgid "French"
msgstr "Fragjisht"

#: ../../keyboard.pm:1
#, c-format
msgid "Finnish"
msgstr "Finlandisht"

#: ../../keyboard.pm:1
#, c-format
msgid "Spanish"
msgstr "Spanjollisht"

#: ../../keyboard.pm:1
#, c-format
msgid "Estonian"
msgstr "Estonisht"

#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (Swedish)"
msgstr "Dvorak (Suedishte)"

#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (Norwegian)"
msgstr "Dvorak (Norvegjishte)"

#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak (US)"
msgstr "Dvorak (SHBA)"

#: ../../keyboard.pm:1
#, c-format
msgid "Danish"
msgstr "Danishte"

#: ../../keyboard.pm:1
#, c-format
msgid "Devanagari"
msgstr "Devanagari"

#: ../../keyboard.pm:1
#, c-format
msgid "German (no dead keys)"
msgstr "Gjermanishte (pa ēelėsa tė vdekur)"

#: ../../keyboard.pm:1
#, c-format
msgid "German"
msgstr "Gjerman"

#: ../../keyboard.pm:1
#, c-format
msgid "Czech (QWERTY)"
msgstr "Ēek (QWERTY)"

#: ../../keyboard.pm:1
#, c-format
msgid "Czech (QWERTZ)"
msgstr "Ēek (QWERTZ)"

#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (French layout)"
msgstr "Zvicėrr (frangjishte)"

#: ../../keyboard.pm:1
#, c-format
msgid "Swiss (German layout)"
msgstr "Zvicėrr (gjermanishte)"

#: ../../keyboard.pm:1
#, c-format
msgid "Belarusian"
msgstr "Belorus"

#: ../../keyboard.pm:1
#, c-format
msgid "Bosnian"
msgstr "Boshjak"

#: ../../keyboard.pm:1
#, c-format
msgid "Brazilian (ABNT-2)"
msgstr "Brazilishte (ABNT-2)"

#: ../../keyboard.pm:1
#, c-format
msgid "Bulgarian (BDS)"
msgstr "Bulgarishte (BDS)"

#: ../../keyboard.pm:1
#, c-format
msgid "Bulgarian (phonetic)"
msgstr "Bulgarishte (fonetik)"

#: ../../keyboard.pm:1
#, c-format
msgid "Bengali"
msgstr "Bengali"

#: ../../keyboard.pm:1
#, c-format
msgid "Belgian"
msgstr "Belgjik"

#: ../../keyboard.pm:1
#, c-format
msgid "Azerbaidjani (latin)"
msgstr "Azerbeigjan (latine)"

#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (phonetic)"
msgstr "Armenisht (fonetic)"

#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (typewriter)"
msgstr "Armenisht (makinė shtypėse)"

#: ../../keyboard.pm:1
#, c-format
msgid "Armenian (old)"
msgstr "Armenisht (vjetėr)"

#: ../../keyboard.pm:1
#, c-format
msgid "Albanian"
msgstr "Shqip"

#: ../../keyboard.pm:1
#, c-format
msgid "Polish"
msgstr "Polonisht"

#: ../../keyboard.pm:1
#, c-format
msgid "Dvorak"
msgstr "Dvorak"

#: ../../lang.pm:1
#, c-format
msgid "Zimbabwe"
msgstr "Zimbabve"

#: ../../lang.pm:1
#, c-format
msgid "Zambia"
msgstr "Zambia"

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "South Africa"
msgstr "Afrika Jugore"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Serbia"
msgstr "serik"

#: ../../lang.pm:1
#, c-format
msgid "Mayotte"
msgstr "Majoto"

#: ../../lang.pm:1
#, c-format
msgid "Yemen"
msgstr "Jemeni"

#: ../../lang.pm:1
#, c-format
msgid "Samoa"
msgstr "Samoa"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Wallis and Futuna"
msgstr "Ishujt Vallis dhe Futuna"

#: ../../lang.pm:1
#, c-format
msgid "Vanuatu"
msgstr "Vanuatu"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Vietnam"
msgstr "Viet Nami"

#: ../../lang.pm:1
#, c-format
msgid "Virgin Islands (U.S.)"
msgstr "Virgin Islands (SH.B.A)"

#: ../../lang.pm:1
#, c-format
msgid "Virgin Islands (British)"
msgstr "Ishujt Virgjėr (Britanike)"

#: ../../lang.pm:1
#, c-format
msgid "Venezuela"
msgstr "Venezuela"

#: ../../lang.pm:1
#, c-format
msgid "Saint Vincent and the Grenadines"
msgstr "Vincenti i Shenjė dhe Grenadina"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Vatican"
msgstr "Latvien"

#: ../../lang.pm:1
#, c-format
msgid "Uzbekistan"
msgstr "Uzbekistani"

#: ../../lang.pm:1
#, c-format
msgid "Uruguay"
msgstr "Uruguaji"

#: ../../lang.pm:1
#, c-format
msgid "United States Minor Outlying Islands"
msgstr "Ishujt Minorė tė Shteteve tė Bashkuara"

#: ../../lang.pm:1
#, c-format
msgid "Uganda"
msgstr "Uganda"

#: ../../lang.pm:1
#, c-format
msgid "Ukraine"
msgstr "Ukraina"

#: ../../lang.pm:1
#, c-format
msgid "Tanzania"
msgstr ""

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Taiwan"
msgstr "Tailanda"

#: ../../lang.pm:1
#, c-format
msgid "Tuvalu"
msgstr "Tuvalu"

#: ../../lang.pm:1
#, c-format
msgid "Trinidad and Tobago"
msgstr "Trinidad dhe Tobago"

#: ../../lang.pm:1
#, c-format
msgid "Turkey"
msgstr "Turqia"

#: ../../lang.pm:1
#, c-format
msgid "Tonga"
msgstr "Tonga"

#: ../../lang.pm:1
#, c-format
msgid "Tunisia"
msgstr "Tunizia"

#: ../../lang.pm:1
#, c-format
msgid "Turkmenistan"
msgstr "Turkmenistani"

#: ../../lang.pm:1
#, c-format
msgid "East Timor"
msgstr "Timori Lindor"

#: ../../lang.pm:1
#, c-format
msgid "Tokelau"
msgstr "Tokelau"

#: ../../lang.pm:1
#, c-format
msgid "Tajikistan"
msgstr "Tagjikistani"

#: ../../lang.pm:1
#, c-format
msgid "Thailand"
msgstr "Tailanda"

#: ../../lang.pm:1
#, c-format
msgid "Togo"
msgstr "Togo"

#: ../../lang.pm:1
#, c-format
msgid "French Southern Territories"
msgstr "Teritoret Franqeze Jugore"

#: ../../lang.pm:1
#, c-format
msgid "Chad"
msgstr "Qadi"

#: ../../lang.pm:1
#, c-format
msgid "Turks and Caicos Islands"
msgstr "Turqia dhe Ishujt e Kaikos"

#: ../../lang.pm:1
#, c-format
msgid "Swaziland"
msgstr "Swazilandi"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Syria"
msgstr "Surinami"

#: ../../lang.pm:1
#, c-format
msgid "El Salvador"
msgstr "El Salvator"

#: ../../lang.pm:1
#, c-format
msgid "Sao Tome and Principe"
msgstr "Sao Tome dhe Principali"

#: ../../lang.pm:1
#, c-format
msgid "Suriname"
msgstr "Surinami"

#: ../../lang.pm:1
#, c-format
msgid "Somalia"
msgstr "Somalia"

#: ../../lang.pm:1
#, c-format
msgid "Senegal"
msgstr "Senegali"

#: ../../lang.pm:1
#, c-format
msgid "San Marino"
msgstr "San Marino"

#: ../../lang.pm:1
#, c-format
msgid "Sierra Leone"
msgstr "Sierra Leone"

#: ../../lang.pm:1
#, c-format
msgid "Slovakia"
msgstr "Sllovakia"

#: ../../lang.pm:1
#, c-format
msgid "Svalbard and Jan Mayen Islands"
msgstr "Ishujt Svalbard dhe Jan Majen"

#: ../../lang.pm:1
#, c-format
msgid "Slovenia"
msgstr "Sllovenia"

#: ../../lang.pm:1
#, c-format
msgid "Saint Helena"
msgstr "Helena e Shenjėt"

#: ../../lang.pm:1
#, c-format
msgid "Singapore"
msgstr "Singapuri"

#: ../../lang.pm:1
#, c-format
msgid "Sudan"
msgstr "Sudani"

#: ../../lang.pm:1
#, c-format
msgid "Seychelles"
msgstr "Sejqelesi"

#: ../../lang.pm:1
#, c-format
msgid "Solomon Islands"
msgstr "Ishujt Solomon"

#: ../../lang.pm:1
#, c-format
msgid "Saudi Arabia"
msgstr "Arabia Saudite"

#: ../../lang.pm:1
#, c-format
msgid "Rwanda"
msgstr "Ruanda"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Russia"
msgstr "Rusisht"

#: ../../lang.pm:1
#, c-format
msgid "Romania"
msgstr "Rumania"

#: ../../lang.pm:1
#, c-format
msgid "Reunion"
msgstr "Ishujt e bashkuar"

#: ../../lang.pm:1
#, c-format
msgid "Qatar"
msgstr "Katar"

#: ../../lang.pm:1
#, c-format
msgid "Palau"
msgstr "Palau"

#: ../../lang.pm:1
#, c-format
msgid "Paraguay"
msgstr "Paraguaji"

#: ../../lang.pm:1
#, c-format
msgid "Portugal"
msgstr "Portugalia"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Palestine"
msgstr "Zgjedhe shtegun"

#: ../../lang.pm:1
#, c-format
msgid "Puerto Rico"
msgstr "Puerto Riko"

#: ../../lang.pm:1
#, c-format
msgid "Pitcairn"
msgstr "Pitkairn"

#: ../../lang.pm:1
#, c-format
msgid "Saint Pierre and Miquelon"
msgstr "Pierre dhe Miqueloni i Shenjėt"

#: ../../lang.pm:1
#, c-format
msgid "Poland"
msgstr "Polonia"

#: ../../lang.pm:1
#, c-format
msgid "Pakistan"
msgstr "Pakistani"

#: ../../lang.pm:1
#, c-format
msgid "Philippines"
msgstr "Filipinet"

#: ../../lang.pm:1
#, c-format
msgid "Papua New Guinea"
msgstr "Papuea e Re Guiniziane"

#: ../../lang.pm:1
#, c-format
msgid "French Polynesia"
msgstr "Polinezia Franqeze"

#: ../../lang.pm:1
#, c-format
msgid "Peru"
msgstr "Peru"

#: ../../lang.pm:1
#, c-format
msgid "Panama"
msgstr "Panamaja"

#: ../../lang.pm:1
#, c-format
msgid "Oman"
msgstr "Omani"

#: ../../lang.pm:1
#, c-format
msgid "New Zealand"
msgstr "Zelanda e Re"

#: ../../lang.pm:1
#, c-format
msgid "Niue"
msgstr "Niu"

#: ../../lang.pm:1
#, c-format
msgid "Nauru"
msgstr "Nauri"

#: ../../lang.pm:1
#, c-format
msgid "Nepal"
msgstr "Nepali"

#: ../../lang.pm:1
#, c-format
msgid "Nicaragua"
msgstr "Nikaragua"

#: ../../lang.pm:1
#, c-format
msgid "Nigeria"
msgstr "Nigeria"

#: ../../lang.pm:1
#, c-format
msgid "Norfolk Island"
msgstr "Ishulli Norfolk"

#: ../../lang.pm:1
#, c-format
msgid "Niger"
msgstr "Nigeri"

#: ../../lang.pm:1
#, c-format
msgid "New Caledonia"
msgstr "Kaledonia e Re"

#: ../../lang.pm:1
#, c-format
msgid "Namibia"
msgstr "Namibia"

#: ../../lang.pm:1
#, c-format
msgid "Mozambique"
msgstr "Mazambiku"

#: ../../lang.pm:1
#, c-format
msgid "Malaysia"
msgstr "Malejzia"

#: ../../lang.pm:1
#, c-format
msgid "Mexico"
msgstr "Meksiko"

#: ../../lang.pm:1
#, c-format
msgid "Malawi"
msgstr "Malevia"

#: ../../lang.pm:1
#, c-format
msgid "Maldives"
msgstr "Maldivia"

#: ../../lang.pm:1
#, c-format
msgid "Mauritius"
msgstr "Mauritiusi"

#: ../../lang.pm:1
#, c-format
msgid "Malta"
msgstr "Malta"

#: ../../lang.pm:1
#, c-format
msgid "Montserrat"
msgstr "Montserati"

#: ../../lang.pm:1
#, c-format
msgid "Mauritania"
msgstr "Mauritania"

#: ../../lang.pm:1
#, c-format
msgid "Martinique"
msgstr "Martinika"

#: ../../lang.pm:1
#, c-format
msgid "Northern Mariana Islands"
msgstr "Ishujt Mariane tė Veriut"

#: ../../lang.pm:1
#, c-format
msgid "Mongolia"
msgstr "Mongolia"

#: ../../lang.pm:1
#, c-format
msgid "Myanmar"
msgstr "Mjanmari"

#: ../../lang.pm:1
#, c-format
msgid "Mali"
msgstr "Mali"

#: ../../lang.pm:1
#, c-format
msgid "Macedonia"
msgstr "Maqedonia"

#: ../../lang.pm:1
#, c-format
msgid "Marshall Islands"
msgstr "Ishujt Marshall"

#: ../../lang.pm:1
#, c-format
msgid "Madagascar"
msgstr "Madagaskari"

#: ../../lang.pm:1
#, c-format
msgid "Moldova"
msgstr "Moldova"

#: ../../lang.pm:1
#, c-format
msgid "Monaco"
msgstr "Monako"

#: ../../lang.pm:1
#, c-format
msgid "Morocco"
msgstr "Maroku"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Libya"
msgstr "Liberia"

#: ../../lang.pm:1
#, c-format
msgid "Latvia"
msgstr "Latvia"

#: ../../lang.pm:1
#, c-format
msgid "Luxembourg"
msgstr "Luksemburgu"

#: ../../lang.pm:1
#, c-format
msgid "Lithuania"
msgstr "Lituania"

#: ../../lang.pm:1
#, c-format
msgid "Lesotho"
msgstr "Lesoto"

#: ../../lang.pm:1
#, c-format
msgid "Liberia"
msgstr "Liberia"

#: ../../lang.pm:1
#, c-format
msgid "Sri Lanka"
msgstr "Sri Lanka"

#: ../../lang.pm:1
#, c-format
msgid "Liechtenstein"
msgstr "Lieshtenshtajni"

#: ../../lang.pm:1
#, c-format
msgid "Saint Lucia"
msgstr "Luqia e Shenjėt"

#: ../../lang.pm:1
#, c-format
msgid "Lebanon"
msgstr "Libia"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Laos"
msgstr "Kyqjet"

#: ../../lang.pm:1
#, c-format
msgid "Kazakhstan"
msgstr "Kazakstani"

#: ../../lang.pm:1
#, c-format
msgid "Cayman Islands"
msgstr "Ishujt e Cejlanit"

#: ../../lang.pm:1
#, c-format
msgid "Kuwait"
msgstr "Kuvajti"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Korea"
msgstr "Mė shumė"

#: ../../lang.pm:1
#, c-format
msgid "Korea (North)"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Saint Kitts and Nevis"
msgstr "Saint Kitts dhe Nevis"

#: ../../lang.pm:1
#, c-format
msgid "Comoros"
msgstr "Komoresi"

#: ../../lang.pm:1
#, c-format
msgid "Kiribati"
msgstr "Kiribati"

#: ../../lang.pm:1
#, c-format
msgid "Cambodia"
msgstr "Kambogjia"

#: ../../lang.pm:1
#, c-format
msgid "Kyrgyzstan"
msgstr "Kirgistani"

#: ../../lang.pm:1
#, c-format
msgid "Kenya"
msgstr "Kenia"

#: ../../lang.pm:1
#, c-format
msgid "Japan"
msgstr "Japonia"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Jordan"
msgstr "Jordania"

#: ../../lang.pm:1
#, c-format
msgid "Jamaica"
msgstr "Jamaika"

#: ../../lang.pm:1
#, c-format
msgid "Iceland"
msgstr "Islanda"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Iran"
msgstr "Iraki"

#: ../../lang.pm:1
#, c-format
msgid "Iraq"
msgstr "Iraki"

#: ../../lang.pm:1
#, c-format
msgid "British Indian Ocean Territory"
msgstr "Teritor Britanikė nė Oqeanin e Indisė"

#: ../../lang.pm:1
#, c-format
msgid "India"
msgstr "India"

#: ../../lang.pm:1
#, c-format
msgid "Israel"
msgstr "Izraeli"

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Ireland"
msgstr "Irlanda"

#: ../../lang.pm:1
#, c-format
msgid "Indonesia"
msgstr "Indonezia"

#: ../../lang.pm:1
#, c-format
msgid "Hungary"
msgstr "Hungaria"

#: ../../lang.pm:1
#, c-format
msgid "Haiti"
msgstr "Haiti"

#: ../../lang.pm:1
#, c-format
msgid "Croatia"
msgstr "Kroacia"

#: ../../lang.pm:1
#, c-format
msgid "Honduras"
msgstr "Hundurasi"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "Heard and McDonald Islands"
msgstr "Ishujt Hard dhe McDonald"

#: ../../lang.pm:1
#, c-format
msgid "Hong Kong"
msgstr "Hong Kongu"

#: ../../lang.pm:1
#, c-format
msgid "Guyana"
msgstr "Guijana"

#: ../../lang.pm:1
#, c-format
msgid "Guinea-Bissau"
msgstr "Guinea-Bisau"

#: ../../lang.pm:1
#, c-format
msgid "Guam"
msgstr "Guam"

#: ../../lang.pm:1
#, c-format
msgid "Guatemala"
msgstr "Guatemala"

#: ../../lang.pm:1
#, fuzzy, c-format
msgid "South Georgia and the South Sandwich Islands"
msgstr "Gjeorgjia e Jugut dhe Ishujt Sandwich tė Jugut"

#: ../../lang.pm:1
#, c-format
msgid "Equatorial Guinea"
msgstr "Guinea e Ekuatorit"

#: ../../lang.pm:1
#, c-format
msgid "Guadeloupe"
msgstr "Godeloup"

#: ../../lang.pm:1
#, c-format
msgid "Guinea"
msgstr "Guinea"

#: ../../lang.pm:1
#, c-format
msgid "Gambia"
msgstr "Gambia"

#: ../../lang.pm:1
#, c-format
msgid "Greenland"
msgstr "Grenlanda"

#: ../../lang.pm:1
#, c-format
msgid "Gibraltar"
msgstr "Gjilbrartari"

#: ../../lang.pm:1
#, c-format
msgid "Ghana"
msgstr "Kana"

#: ../../lang.pm:1
#, c-format
msgid "French Guiana"
msgstr "Guiana Franqeze"

#: ../../lang.pm:1
#, c-format
msgid "Georgia"
msgstr "Gjeorgjia"

#: ../../lang.pm:1
#, c-format
msgid "Grenada"
msgstr "Grenada"

#: ../../lang.pm:1 ../../network/tools.pm:1
#, c-format
msgid "United Kingdom"
msgstr "Mbretėri e Bashkuar"

#: ../../lang.pm:1
#, c-format
msgid "Gabon"
msgstr "Gaboni"

#: ../../lang.pm:1
#, c-format
msgid "Faroe Islands"
msgstr "Ishujt e Faroes"

#: ../../lang.pm:1
#, c-format
msgid "Micronesia"
msgstr "Mikronezia"

#: ../../lang.pm:1
#, c-format
msgid "Falkland Islands (Malvinas)"
msgstr "Ishujt e Maluines"

#: ../../lang.pm:1
#, c-format
msgid "Fiji"
msgstr "Figji"

#: ../../lang.pm:1
#, c-format
msgid "Finland"
msgstr "Finlanda"

#: ../../lang.pm:1
#, c-format
msgid "Ethiopia"
msgstr "Etiopia"

#: ../../lang.pm:1
#, c-format
msgid "Spain"
msgstr "Spanja"

#: ../../lang.pm:1
#, c-format
msgid "Eritrea"
msgstr "Eritrea"

#: ../../lang.pm:1
#, c-format
msgid "Western Sahara"
msgstr "Sahara Pėrendimore"

#: ../../lang.pm:1
#, c-format
msgid "Egypt"
msgstr "Egjipti"

#: ../../lang.pm:1
#, c-format
msgid "Estonia"
msgstr "Estonia"

#: ../../lang.pm:1
#, c-format
msgid "Ecuador"
msgstr "Ekuatori"

#: ../../lang.pm:1
#, c-format
msgid "Algeria"
msgstr "Algjeria"

#: ../../lang.pm:1
#, c-format
msgid "Dominican Republic"
msgstr "Republika Domenikane"

#: ../../lang.pm:1
#, c-format
msgid "Dominica"
msgstr "Dominika"

#: ../../lang.pm:1
#, c-format
msgid "Denmark"
msgstr "Danimarka"

#: ../../lang.pm:1
#, c-format
msgid "Djibouti"
msgstr "Gjibuti"

#: ../../lang.pm:1
#, c-format
msgid "Cyprus"
msgstr "Qipro"

#: ../../lang.pm:1
#, c-format
msgid "Christmas Island"
msgstr "Ishujt e Kristlėindjes"

#: ../../lang.pm:1
#, c-format
msgid "Cape Verde"
msgstr "Kapi i Gjelbėrt"

#: ../../lang.pm:1
#, c-format
msgid "Cuba"
msgstr "Kuba"

#: ../../lang.pm:1
#, c-format
msgid "Colombia"
msgstr "Kolumbia"

#: ../../lang.pm:1
#, c-format
msgid "China"
msgstr "Kina"

#: ../../lang.pm:1
#, c-format
msgid "Cameroon"
msgstr "Kameruni"

#: ../../lang.pm:1
#, c-format
msgid "Chile"
msgstr "Qili"

#: ../../lang.pm:1
#, c-format
msgid "Cook Islands"
msgstr "Ishujt Kuk"

#: ../../lang.pm:1
#, c-format
msgid "Cote d'Ivoire"
msgstr "Bregu Ivoare"

#: ../../lang.pm:1
#, c-format
msgid "Switzerland"
msgstr "Zvicėrra"

#: ../../lang.pm:1
#, c-format
msgid "Congo (Brazzaville)"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Central African Republic"
msgstr "Republika Qendro Afrikane"

#: ../../lang.pm:1
#, c-format
msgid "Congo (Kinshasa)"
msgstr ""

#: ../../lang.pm:1
#, c-format
msgid "Cocos (Keeling) Islands"
msgstr "Ishujt e Kokosit"

#: ../../lang.pm:1
#, c-format
msgid "Canada"
msgstr "Kanada"

#: ../../lang.pm:1
#, c-format
msgid "Belize"
msgstr "Belizi"

#: ../../lang.pm:1
#, c-format
msgid "Belarus"
msgstr "Rusia e Bardhė"

#: ../../lang.pm:1
#, c-format
msgid "Botswana"
msgstr "Botsvana"

#: ../../lang.pm:1
#, c-format
msgid "Bouvet Island"
msgstr "Ishulli Buve"

#: ../../lang.pm:1
#, c-format
msgid "Bhutan"
msgstr "Bhutan"

#: ../../lang.pm:1
#, c-format
msgid "Bahamas"
msgstr "Bahamas"

#: ../../lang.pm:1
#, c-format
msgid "Brazil"
msgstr "Brazili"

#: ../../lang.pm:1
#, c-format
msgid "Bolivia"
msgstr "Bolivia"

#: ../../lang.pm:1
#, c-format
msgid "Brunei Darussalam"
msgstr "Brunei i Sulltanit"

#: ../../lang.pm:1
#, c-format
msgid "Bermuda"
msgstr "Bermude"

#: ../../lang.pm:1
#, c-format
msgid "Benin"
msgstr "Benini"

#: ../../lang.pm:1
#, c-format
msgid "Burundi"
msgstr "Burundi"

#: ../../lang.pm:1
#, c-format
msgid "Bahrain"
msgstr "Bahrein"

#: ../../lang.pm:1
#, c-format
msgid "Bulgaria"
msgstr "Bulgaria"

#: ../../lang.pm:1
#, c-format
msgid "Burkina Faso"
msgstr "Burkina Faso"

#: ../../lang.pm:1
#, c-format
msgid "Bangladesh"
msgstr "Bangladeshi"

#: ../../lang.pm:1
#, c-format
msgid "Barbados"
msgstr "Barbadi"

#: ../../lang.pm:1
#, c-format
msgid "Bosnia and Herzegovina"
msgstr "Bosnja dhe Herzegovina"

#: ../../lang.pm:1
#, c-format
msgid "Azerbaijan"
msgstr "Azerbejgjani"

#: ../../lang.pm:1
#, c-format
msgid "Aruba"
msgstr "Aruba"

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Australia"
msgstr "Australia"

#: ../../lang.pm:1
#, c-format
msgid "American Samoa"
msgstr "Samoa Amerikane"

#: ../../lang.pm:1 ../../standalone/drakxtv:1
#, c-format
msgid "Argentina"
msgstr "Argjentina"

#: ../../lang.pm:1
#, c-format
msgid "Antarctica"
msgstr "Antarktika"

#: ../../lang.pm:1
#, c-format
msgid "Angola"
msgstr "Angola"

#: ../../lang.pm:1
#, c-format
msgid "Netherlands Antilles"
msgstr "Holanda e Atiles"

#: ../../lang.pm:1
#, c-format
msgid "Armenia"
msgstr "Armenia"

#: ../../lang.pm:1
#, c-format
msgid "Albania"
msgstr "Shqipėria"

#: ../../lang.pm:1
#, c-format
msgid "Anguilla"
msgstr "Anguila"

#: ../../lang.pm:1
#, c-format
msgid "Antigua and Barbuda"
msgstr "Antigua dhe Barbuda"

#: ../../lang.pm:1
#, c-format
msgid "United Arab Emirates"
msgstr "Emiratet e Bashkuara Arabe"

#: ../../lang.pm:1
#, c-format
msgid "Andorra"
msgstr "Andora"

#: ../../lang.pm:1
#, c-format
msgid "Afghanistan"
msgstr "Afganistani"

#: ../../loopback.pm:1
#, c-format
msgid "Circular mounts %s\n"
msgstr "Pikė montuese cirkulare %s\n"

#: ../../lvm.pm:1
#, c-format
msgid "Remove the logical volumes first\n"
msgstr "Zhdukni nė fillim volumet logjike\n"

#: ../../modules.pm:1
#, c-format
msgid ""
"PCMCIA support no longer exists for 2.2 kernels. Please use a 2.4 kernel."
msgstr ""
"Pėrmbajtja e PCMCIA s'ėshtė mė nė disponibilitet me bėrthameėn 2.2. "
"Pėrdoreni bėrthamen 2.4."

#: ../../mouse.pm:1
#, c-format
msgid "MOVE YOUR WHEEL!"
msgstr "DUHET TA LĖVIZNI RROTĖN!"

#: ../../mouse.pm:1
#, c-format
msgid "To activate the mouse,"
msgstr "Pėr ta aktivizuar minin,"

#: ../../mouse.pm:1
#, c-format
msgid "Please test the mouse"
msgstr "Ju lutemi testoni minin"

#: ../../mouse.pm:1
#, c-format
msgid "No mouse"
msgstr "Asnjė min"

#: ../../mouse.pm:1
#, c-format
msgid "none"
msgstr "asnjė"

#: ../../mouse.pm:1
#, c-format
msgid "3 buttons"
msgstr "3 ēelėsa"

#: ../../mouse.pm:1
#, c-format
msgid "2 buttons"
msgstr "2 ēelėsa"

#: ../../mouse.pm:1
#, c-format
msgid "1 button"
msgstr "1 ēelės"

#: ../../mouse.pm:1
#, c-format
msgid "busmouse"
msgstr "min bus"

#: ../../mouse.pm:1
#, c-format
msgid "Kensington Thinking Mouse"
msgstr "Kensington Thinking Mouse"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech Mouse (serial, old C7 type)"
msgstr "Logitech Mouse (serik, tip i vjetėr C7)"

#: ../../mouse.pm:1
#, c-format
msgid "MM HitTablet"
msgstr "MM HitTablet"

#: ../../mouse.pm:1
#, c-format
msgid "MM Series"
msgstr "MM Serik"

#: ../../mouse.pm:1
#, c-format
msgid "Genius NetMouse"
msgstr "Genius NetMouse"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech MouseMan+/FirstMouse+"
msgstr "Logitech MouseMan+/FirstMouse+"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech CC Series"
msgstr "Logitech CC Serijalet"

#: ../../mouse.pm:1
#, c-format
msgid "Mouse Systems"
msgstr "Sistemet e Minjėve"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech MouseMan"
msgstr "Logitech MouseMan"

#: ../../mouse.pm:1
#, c-format
msgid "Microsoft IntelliMouse"
msgstr "Microsoft IntelliMouse"

#: ../../mouse.pm:1
#, c-format
msgid "Generic 3 Button Mouse"
msgstr "Mini satandard me 3 ēelėsa"

#: ../../mouse.pm:1
#, c-format
msgid "Generic 2 Button Mouse"
msgstr "Mini satandard me 2 ēelėsa"

#: ../../mouse.pm:1
#, c-format
msgid "serial"
msgstr "serik"

#: ../../mouse.pm:1
#, c-format
msgid "Microsoft Explorer"
msgstr "Microsoft Explorer"

#: ../../mouse.pm:1
#, c-format
msgid "Wheel"
msgstr "Rrotė"

#: ../../mouse.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Generic"
msgstr "Pėrgjithshėm"

#: ../../mouse.pm:1
#, c-format
msgid "Genius NetScroll"
msgstr "Genius NetScrol"

#: ../../mouse.pm:1
#, c-format
msgid "GlidePoint"
msgstr "GlidePoint"

#: ../../mouse.pm:1
#, c-format
msgid "Generic PS2 Wheel Mouse"
msgstr "Mini standard PS2 me rrotė"

#: ../../mouse.pm:1
#, c-format
msgid "Logitech MouseMan+"
msgstr "Logitech MouseMan+"

#: ../../mouse.pm:1 ../../security/level.pm:1
#, c-format
msgid "Standard"
msgstr "Standard"

#: ../../mouse.pm:1
#, c-format
msgid "Sun - Mouse"
msgstr "Sun - Mini"

#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Toggle between flat and group sorted"
msgstr "Kalo mes radhitjes simbas alfabetit dhe grupeve"

#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Collapse Tree"
msgstr "Zvogėloje Drurin Gjinealogjik"

#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Expand Tree"
msgstr "Qeverise Drurin Gjinealogjik"

#: ../../my_gtk.pm:1 ../../services.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Info"
msgstr "Informacion"

#: ../../my_gtk.pm:1 ../../ugtk2.pm:1
#, c-format
msgid "Is this correct?"
msgstr "Ėshtė kjo korrekt"

#: ../../my_gtk.pm:1
#, c-format
msgid "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"
msgstr "-adobe-utopia-regular-r-*-*-25-*-*-*-p-*-iso8859-*,*-r-*"

#: ../../partition_table.pm:1
#, c-format
msgid "Error writing to file %s"
msgstr "Gabim gjatė shkrimit tė skedares %s"

#: ../../partition_table.pm:1
#, c-format
msgid "Bad backup file"
msgstr "Regjistrim i dobėt i skedares"

#: ../../partition_table.pm:1
#, c-format
msgid "Restoring from file %s failed: %s"
msgstr "Rregullim i pa mundur nga skedarja %s: %s"

#: ../../partition_table.pm:1
#, c-format
msgid ""
"You have a hole in your partition table but I can't use it.\n"
"The only solution is to move your primary partitions to have the hole next "
"to the extended partitions."
msgstr ""
"Ju posedoni njė vendė tė zbazėt nė ndarjen e tabelės, tė cilėn nuk mund ta "
"pėrdori.\n"
"E vetmja mundėsi ėshtė qė ta zhvendosni nė ndarje primare, nė njė mėnyrė qė, "
"ajo zbraztėsi tė jetė e vendosur kundėr ndarjeve tė zgjatura."

#: ../../partition_table.pm:1
#, c-format
msgid "Extended partition not supported on this platform"
msgstr "Ndarjet e zgjtura nuk janė tė pėrkrahura nė kėtė platėformė"

#: ../../partition_table.pm:1
#, c-format
msgid "mount failed: "
msgstr "dėshtim gjatė montimit: "

#: ../../pkgs.pm:1
#, c-format
msgid "maybe"
msgstr "ndoshta"

#: ../../pkgs.pm:1
#, c-format
msgid "nice"
msgstr "mirė"

#: ../../pkgs.pm:1
#, c-format
msgid "very nice"
msgstr "shumė mirė"

#: ../../pkgs.pm:1
#, c-format
msgid "important"
msgstr "me rėndėsi"

#: ../../pkgs.pm:1
#, c-format
msgid "must have"
msgstr "duhet pa tjetėr"

#: ../../raid.pm:1
#, c-format
msgid "Not enough partitions for RAID level %d\n"
msgstr "Vend i pa mjaftueshėm i RAID pėr nivelin %d\n"

#: ../../raid.pm:1
#, c-format
msgid "mkraid failed"
msgstr "dėshtim i mkraid"

#: ../../raid.pm:1
#, c-format
msgid "mkraid failed (maybe raidtools are missing?)"
msgstr "dėshtim i mkraid (ndoshta veglat grabitėse mungojnė?)"

#: ../../raid.pm:1
#, c-format
msgid "Can't add a partition to _formatted_ RAID md%d"
msgstr "Nuk mund tė shtoj njė ndarje nė _formatimin_ RAID md%d"

#: ../../services.pm:1
#, c-format
msgid "Stop"
msgstr "Ndale"

#: ../../services.pm:1
#, c-format
msgid "Start"
msgstr "Nise"

#: ../../services.pm:1
#, c-format
msgid "On boot"
msgstr "Nė nisje tė udhėzuar"

#: ../../services.pm:1
#, c-format
msgid ""
"No additional information\n"
"about this service, sorry."
msgstr ""
"Asnjė informacion mbi\n"
"kėtė servise, kemi ndjesė."

#: ../../services.pm:1
#, c-format
msgid "Services and deamons"
msgstr "Server dhe servise"

#: ../../services.pm:1
#, c-format
msgid "stopped"
msgstr "ndalur"

#: ../../services.pm:1
#, c-format
msgid "running"
msgstr "aktiv"

#: ../../services.pm:1
#, c-format
msgid "Choose which services should be automatically started at boot time"
msgstr ""
"Zgjedhni cilat servise duhet tė nisen automatikishtė nė nisjen e sistemit"

#: ../../services.pm:1
#, c-format
msgid "Database Server"
msgstr "Server i bazės sė tė dhėnave"

#: ../../services.pm:1
#, c-format
msgid "Remote Administration"
msgstr "Administrim nė distancė"

#: ../../services.pm:1
#, c-format
msgid "File sharing"
msgstr "Shpėrndarje e Skedareve"

#: ../../services.pm:1
#, c-format
msgid "Internet"
msgstr "Internet"

#: ../../services.pm:1
#, c-format
msgid "Printing"
msgstr "Shtypje"

#: ../../services.pm:1
#, c-format
msgid "Starts the X Font Server (this is mandatory for XFree to run)."
msgstr "Nise serverin X tė Polisave (ėshtė e nevojshme pėr XFree tė niset)."

#: ../../services.pm:1
#, c-format
msgid "Load the drivers for your usb devices."
msgstr "Ngarko pilotėt pėr mjetet e kyqura nė usb."

#: ../../services.pm:1
#, c-format
msgid ""
"Syslog is the facility by which many daemons use to log messages\n"
"to various system log files.  It is a good idea to always run syslog."
msgstr ""
"Syslog ėshtė njė servise i cili pėrdoret nga shumė servise tjera pėr tė\n"
"regjistruar raportet aktive. Ėdhtė njė ide tejet e mirė qė tė jetė i "
"aktivizuar gjithnjė."

#: ../../services.pm:1
#, c-format
msgid "Launch the sound system on your machine"
msgstr "Nise sistemin e qeverisjes sė zėrit nė makinėn tuaj"

#: ../../services.pm:1
#, c-format
msgid ""
"The rwho protocol lets remote users get a list of all of the users\n"
"logged into a machine running the rwho daemon (similiar to finger)."
msgstr ""
"Protokoli rwho mundėson qė pėrdoruesit nė distancė tė furnizohen me listėn\n"
"e pėrdoruesve tė kyqur nė njė makinė e cila vė nė punė deamon rwho (njėjtė "
"sikur finger). "

#: ../../services.pm:1
#, c-format
msgid ""
"The rusers protocol allows users on a network to identify who is\n"
"logged in on other responding machines."
msgstr ""
"Protokoli rusers mundėson qė pėrdoruesit tė njoftohen pėr tė gjithė "
"pėrdoruesit\n"
"te cilėt janė tė kyqur nė tė njėjtin rrjet."

#: ../../services.pm:1
#, c-format
msgid ""
"The rstat protocol allows users on a network to retrieve\n"
"performance metrics for any machine on that network."
msgstr ""
"Protokoli rstat mudėson qė pėrdoruesit nė tė njėjtin rrjet tė pėrfitojnė\n"
"tė drejta tė barabarta nga secila makinė e cila ėshtė e lidhur nė ate rrjet."

#: ../../services.pm:1
#, c-format
msgid ""
"The routed daemon allows for automatic IP router table updated via\n"
"the RIP protocol. While RIP is widely used on small networks, more complex\n"
"routing protocols are needed for complex networks."
msgstr ""
"Servisi routed mundėson azhurnimin automatik tė tabelės IP route via\n"
"protokolit RIP. Duke marrė para syshė se RIP pėrdoret nė rrjetet\n"
"e vogla, dhe prtokolet mė komplekse nevojiten pėr rrjete mė komplekse."

#: ../../services.pm:1
#, c-format
msgid ""
"Assign raw devices to block devices (such as hard drive\n"
"partitions), for the use of applications such as Oracle"
msgstr ""
"Mundėson paraqitjen e mjeteve tė tipit blok (pėr shembull shpėrndarjen e "
"diskut\n"
"tė fort), pėr tė pėrdorur nė aplikacionet sikur Oracle."

#: ../../services.pm:1
#, c-format
msgid ""
"Saves and restores system entropy pool for higher quality random\n"
"number generation."
msgstr ""
"Regjistron dhe riparon sistemin entropi pėr njė prodhim mė tė mirė\n"
"tė numrave tė rastit."

#: ../../services.pm:1
#, c-format
msgid ""
"Postfix is a Mail Transport Agent, which is the program that moves mail from "
"one machine to another."
msgstr ""
"Postfix ėshtė njė agjent trasnportues i letrave (Mail Transport Agent), i "
"cilimundėson ndėrrimin e letrave elektronike mes makinave."

#: ../../services.pm:1
#, c-format
msgid ""
"The portmapper manages RPC connections, which are used by\n"
"protocols such as NFS and NIS. The portmap server must be running on "
"machines\n"
"which act as servers for protocols which make use of the RPC mechanism."
msgstr ""
"portmapper qeverisė kyqjen RPC e cila pėrdoret nė serveret sikur NFS\n"
"dhe NIS. Serveri portmap duhet tė niset nė makinat\n"
"tė cilat e luajnė rolin e njė serveri pėr protokolėt qė pėrdorin njė "
"mekanizėm RPC."

#: ../../services.pm:1
#, c-format
msgid ""
"PCMCIA support is usually to support things like ethernet and\n"
"modems in laptops.  It won't get started unless configured so it is safe to "
"have\n"
"it installed on machines that don't need it."
msgstr ""
"PCMCIA mundėson pėrdorimin e mjeteve PCCARD si pėr shembull ethernet she "
"modem\n"
"nė kompjuter celularė. Ky servise nuk do tė niset pas u konfigururar nė "
"mėnyrė korrekte.\n"
"I cili mund tė aktivizohet pa kurrėfarė rreziku nėse nuk e posedon kėtė mjet."

#: ../../services.pm:1
#, c-format
msgid "Support the OKI 4w and compatible winprinters."
msgstr "Pėrkrahja e stampuesve winprinters OKI 4w ėshtė e pajtueshme."

#: ../../services.pm:1
#, c-format
msgid ""
"Automatically switch on numlock key locker under console\n"
"and XFree at boot."
msgstr ""
"Kyqje automatike e njė mbyllje numerike me ēelės me mbyllės nė konsollė\n"
"she XFree nė nisje tė udhėzuar."

#: ../../services.pm:1
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP\n"
"networks. This service provides NFS file locking functionality."
msgstr ""
"NFS ėshtė njė protokol i popullarizuar pėr shpėrndarjen e skedareve duke "
"kaluar\n"
"rrjetin TCP/IP. Ky servis mundėson mbylljen e funksionimit tė serverit NFS."

#: ../../services.pm:1
#, c-format
msgid ""
"NFS is a popular protocol for file sharing across TCP/IP networks.\n"
"This service provides NFS server functionality, which is configured via the\n"
"/etc/exports file."
msgstr ""
"NFS ėshtė njė protokol i popullarizuar pėr shpėrndarjen e skedareve duke "
"kaluar\n"
"rrjetin TCP/IP. Ky servis mundėson funksionimin e serverit NFS, i cili "
"konfigurohet\n"
"mes rrjetit ne skedaren /etc/exports."

#: ../../services.pm:1
#, c-format
msgid ""
"Activates/Deactivates all network interfaces configured to start\n"
"at boot time."
msgstr ""
"Aktivizon/ēaktivizon mbarė rrjetin e interfacit tė konfiguruar qė\n"
"niset nė nisje tė udhėzuar (boot)."

#: ../../services.pm:1
#, c-format
msgid ""
"Mounts and unmounts all Network File System (NFS), SMB (Lan\n"
"Manager/Windows), and NCP (NetWare) mount points."
msgstr ""
"Monton dhe ēmonton mbarė Rrjetin e Sistemit tė Skedareve (NFS), SMB (Lan\n"
"Manager/Windows), dhe pikat montuese NCP (NetWare)."

#: ../../services.pm:1
#, c-format
msgid ""
"named (BIND) is a Domain Name Server (DNS) that is used to resolve host "
"names to IP addresses."
msgstr ""
"Emri (BIND) ėshtė njė Pronė Emėr Server (DNS) i cili pėdoret pėr zgjedhur "
"ftuesin e emruar nė adresėn IP."

#: ../../services.pm:1
#, c-format
msgid ""
"Linux Virtual Server, used to build a high-performance and highly\n"
"available server."
msgstr ""
"Linux Virtual Server, pėdoret pėr ndėrtimin e njė serveri me\n"
"pėrbushje-tė-lartė dhe tejet-tė-lartė"

#: ../../services.pm:1
#, c-format
msgid ""
"lpd is the print daemon required for lpr to work properly. It is\n"
"basically a server that arbitrates print jobs to printer(s)."
msgstr ""
"lpd ėshtė server stampues pėrdoret pėr funksionimin e urdhėrit lpr.\n"
"Mundėson qeverisjen e skedareve tė radhitura nė vijėn e shtypjes "
"nėstampuesin e caktuar."

#: ../../services.pm:1
#, c-format
msgid ""
"Linuxconf will sometimes arrange to perform various tasks\n"
"at boot-time to maintain the system configuration."
msgstr ""
"Linuxconf kryen disa pika nė nisje, qė mė nė fund ai posedon njė\n"
"mundėsi tė mirėmbajė sistemin e konfiguruar me parė."

#: ../../services.pm:1
#, c-format
msgid "Automatic detection and configuration of hardware at boot."
msgstr "Zbulues automatik dhe konfigurim i materialit nė nisje tė sistemit."

#: ../../services.pm:1
#, c-format
msgid ""
"Automatic regeneration of kernel header in /boot for\n"
"/usr/include/linux/{autoconf,version}.h"
msgstr ""
"Prodhues automatik i bėrthamės nė /nisje tė udhėzuar (/boot) pėr\n"
"/usr/include/linux/{autoconf,version}.h"

#: ../../services.pm:1
#, c-format
msgid ""
"This package loads the selected keyboard map as set in\n"
"/etc/sysconfig/keyboard.  This can be selected using the kbdconfig utility.\n"
"You should leave this enabled for most machines."
msgstr ""
"Kjo pako aktivizon njė disponibilitet tė tastierės tė pėrcaktuar nė "
"skedaren\n"
"/etc/sysconfig/keyboard. Kjo mund tė zgjidhet duke pėrdorur kbdconfig.\n"
"Ky servise duhet tė jetė i aktivizuar nė shumicėn e makinave."

#: ../../services.pm:1
#, c-format
msgid ""
"Launch packet filtering for Linux kernel 2.2 series, to set\n"
"up a firewall to protect your machine from network attacks."
msgstr ""
"Nise njė filter tė pakos nė rrjet, pėr serinė e bėrthamės Linux 2.2,\n"
"qė mė nė fund tė vejė nė vend tė duhur, njė murė-tė-zjarrtė (firewall)pėr tė "
"mbrojtur makinėn tuaj nga sulmet e rrjetit internet."

#: ../../services.pm:1
#, c-format
msgid ""
"The internet superserver daemon (commonly called inetd) starts a\n"
"variety of other internet services as needed. It is responsible for "
"starting\n"
"many services, including telnet, ftp, rsh, and rlogin. Disabling inetd "
"disables\n"
"all of the services it is responsible for."
msgstr ""
"Superserveri i internetit daemon (i quajtur inetd) niset nė njė mėnyrė\n"
"tė ndryshme nga serviset e tjera tė nevojitura nė internet. Ėshtė pėrgjegjės "
"pėr nisjen\n"
"e njė shumice tė serviseve, duke pėrfshirė telnet, ftp, rsh dhe rlogin.Nėse "
"ēkyqet inetd\n"
"ai do tė ēkyqen tė gjtha serviset e rradhitura me lartė."

#: ../../services.pm:1
#, c-format
msgid ""
"Apache is a World Wide Web server. It is used to serve HTML files and CGI."
msgstr ""
"Apache ėshtė njė server web (HTTP). Pėrdoret pėr tė krijuar skedare HTML dhe "
"CGI."

#: ../../services.pm:1
#, c-format
msgid ""
"HardDrake runs a hardware probe, and optionally configures\n"
"new/changed hardware."
msgstr ""
"HardDrake nisė njė detektues tė materialit, dhe konfiguron\n"
"materialin e ri tė gjetur nė kėrkim."

#: ../../services.pm:1
#, c-format
msgid ""
"GPM adds mouse support to text-based Linux applications such the\n"
"Midnight Commander. It also allows mouse-based console cut-and-paste "
"operations,\n"
"and includes support for pop-up menus on the console."
msgstr ""
"GPM shton njė pėrkrahje pėr pėrdorimin e minit nė aplikacionet nė modė "
"tekst\n"
"si pėr shembull Midnight Commander. Njashtu mundėson edhe pėrdorimin e "
"operacionitkopjo-dhe-ngjitė,\n"
"dhe pėrfshin pėrkrahjen e menyve nė konsolė."

#: ../../services.pm:1
#, c-format
msgid ""
"cron is a standard UNIX program that runs user-specified programs\n"
"at periodic scheduled times. vixie cron adds a number of features to the "
"basic\n"
"UNIX cron, including better security and more powerful configuration options."
msgstr ""
"Cron ėshtė njė planifikues standard UNIX i cili nis programet e "
"sepcifikuara\n"
"nė njė kohė periodike tė pėrcaktuar. vixie cron shton njė numėr tė caktuar "
"funksionesh,nė bazė\n"
"UNIX, duke pėrfshirė njė siguri mė tė pėrsosur me mundėsi konfigurimi."

#: ../../services.pm:1
#, c-format
msgid ""
"Runs commands scheduled by the at command at the time specified when\n"
"at was run, and runs batch commands when the load average is low enough."
msgstr ""
"Runs ėshtė njė servisė i cili mundėson nisjen e njė pike punuese nė njė "
"kohė\n"
"precize."

#: ../../services.pm:1
#, c-format
msgid ""
"apmd is used for monitoring battery status and logging it via syslog.\n"
"It can also be used for shutting down the machine when the battery is low."
msgstr ""
"apmd vėshtron gjendjen e baterisė sė njė kompjuteri celularė, dhe mbanė njė\n"
"gjurmė via syslog. I cili mund tė pėrdoret pėr ndaljen e kompjuterit nė "
"mėnyrėtė rregultė duke i informuar pėrdoruesit e tjerė."

#: ../../services.pm:1
#, c-format
msgid "Anacron is a periodic command scheduler."
msgstr "Anacron ekzekuton urdhėrat ditorė nė mėnyrė periodike."

#: ../../services.pm:1
#, c-format
msgid "Launch the ALSA (Advanced Linux Sound Architecture) sound system"
msgstr "Nise sistemin e zėrit ALSA (Advanced Linux Sound Architecture)"

#: ../../standalone.pm:1
#, c-format
msgid "Installing packages..."
msgstr "Intalim i pakove..."

#: ../../standalone.pm:1
#, c-format
msgid ""
"\n"
"Usage: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "
msgstr ""
"\n"
"Pėrdorim: %s  [--auto] [--beginner] [--expert] [-h|--help] [--noauto] [--"
"testing] [-v|--version] "

#: ../../standalone.pm:1
#, c-format
msgid ""
" [everything]\n"
"       XFdrake [--noauto] monitor\n"
"       XFdrake resolution"
msgstr ""
" [everything]\n"
"       XFdrake [--noauto] monitor\n"
"       XFdrake resolution"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
"[--dynamic=dev]"
msgstr ""
"[--manual] [--device=dev] [--update-sane=sane_desc_dir] [--update-usbtable] "
"[--dynamic=dev]"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTION]...\n"
"  --no-confirmation      don't ask first confirmation question in "
"MandrakeUpdate mode\n"
"  --no-verify-rpm        don't verify packages signatures\n"
"  --changelog-first      display changelog before filelist in the "
"description window\n"
"  --merge-all-rpmnew     propose to merge all .rpmnew/.rpmsave files found"
msgstr ""
"[OPTION]...\n"
"  --no-confirmation      mos pyet pėr konfimim tė parė nė azhrunimin e modit "
"Mandrake\n"
"  --no-verify-rpm        mon i verifiko pakot e nėnshkruara\n"
"  --changelog-first      ēfaqi kyqjet e ndryshuara para listės sė skadareve "
"nė dritaren e pėrshkrimeve\n"
"  --merge-all-rpmnew     propozo bashkimin e tė gjitha skedareve tė gjetura "
"nė .rpmnew/.rpmsave"

#: ../../standalone.pm:1
#, c-format
msgid " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"
msgstr " [--skiptest] [--cups] [--lprng] [--lpd] [--pdq]"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTIONS]\n"
"Network & Internet connection and monitoring application\n"
"\n"
"--defaultintf interface : show this interface by default\n"
"--connect : connect to internet if not already connected\n"
"--disconnect : disconnect to internet if already connected\n"
"--force : used with (dis)connect : force (dis)connection.\n"
"--status : returns 1 if connected 0 otherwise, then exit.\n"
"--quiet : don't be interactive. To be used with (dis)connect."
msgstr ""
"[OPTIONS]\n"
"Kyqja e Rrjetit & Internetit dhe aplikacion vėshtrues\n"
"\n"
"--defaultintf interface : ēfaqe kėtė interfac me marrėveshje\n"
"--connect : kyqu nė intenet nėse nuk ėshtė i kyqur\n"
"--disconnect : ēkyqu nga inteneti nėse nuk ėshtė i ēkyqur\n"
"--force : pėrdoret me (ē)kyqje : forcė (ē)kyqėse.\n"
"--status : Kthe 1 nėse ėshtė i kyqur, pėrndryshe 0, mandej dil.\n"
"--quiet : nuk duhet tė jetė interactive. Tė pėrdoret me (ē)kyqje."

#: ../../standalone.pm:1
#, c-format
msgid "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"
msgstr "[--file=myfile] [--word=myword] [--explain=regexp] [--alert]"

#: ../../standalone.pm:1
#, c-format
msgid "[keyboard]"
msgstr "[Tastierė]"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTIONS]...\n"
"Mandrake Terminal Server Configurator\n"
"--enable         : enable MTS\n"
"--disable        : disable MTS\n"
"--start          : start MTS\n"
"--stop           : stop MTS\n"
"--adduser        : add an existing system user to MTS (requires username)\n"
"--deluser        : delete an existing system user from MTS (requires "
"username)\n"
"--addclient      : add a client machine to MTS (requires MAC address, IP, "
"nbi image name)\n"
"--delclient      : delete a client machine from MTS (requires MAC address, "
"IP, nbi image name)"
msgstr ""
"[OPTIONS]...\n"
"Konfigurim i Terminalit Server Mandrake\n"
"--enable         : i lirė MTS\n"
"--disable        : i nxėnė MTS\n"
"--start          : nise MTS\n"
"--stop           : ndale MTS\n"
"--adduser        : shto njė sistem ekzistues qė pėrdoret nė MTS (nevojitet "
"emri i pėrdoreusit)\n"
"--deluser        : zhduke njė sistem ekzistues qė pėrdoret nga MTS "
"(nevojitet emri i pėrdoreusit)\n"
"--addclient      : shto njė makinė kliente nė MTS (nevojitet adresa MAC, IP, "
"nbi emri i imazhit)\n"
"--delclient      : zhduke njė makinė kliente nga MTS (nevojitet adresa MAC, "
"IP, nbi emri i imazhit)"

#: ../../standalone.pm:1
#, c-format
msgid ""
"Font Importation and monitoring "
"application                                     \n"
"--windows_import : import from all available windows partitions.\n"
"--xls_fonts      : show all fonts that already exist from xls\n"
"--strong         : strong verification of font.\n"
"--install        : accept any font file and any directry.\n"
"--uninstall      : uninstall any font or any directory of font.\n"
"--replace        : replace all font if already exist\n"
"--application    : 0 none application.\n"
"                 : 1 all application available supported.\n"
"                 : name_of_application like  so for staroffice \n"
"                 : and gs for ghostscript for only this one."
msgstr ""
"Polisa Importuese dhe vėshtrimi "
"aplikacion                                     \n"
"--windows_import : importo nga te gjitha ndarjet e lira tė windows.\n"
"--xls_fonts      : ēfaqi tė gjitha polisat qė ekzistojnė nga xls\n"
"--strong         : verifikim i plotė fuqishėm i polisės.\n"
"--install        : prano gjdo polisė tė skedares dhe tė repertorit.\n"
"--uninstall      : ēinstalo gjdo polisė apo gjdo repertor tė polisės.\n"
"--replace        : zėvendėso gjdo polisė nėse ka ekzistuar mė parė\n"
"--application    : 0 asnjė aplikacion.\n"
"                 : 1 tė gjitha aplikacionet e lira pėrkrahen.\n"
"                 : emri_i_aplikacion sikur pėr staroffice \n"
"                 : dhe gs pėr ghostscript vetėm pėr kėtė."

#: ../../standalone.pm:1
#, c-format
msgid ""
"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
"OPTIONS:\n"
"  --help            - print this help message.\n"
"  --report          - program should be one of mandrake tools\n"
"  --incident        - program should be one of mandrake tools"
msgstr ""
"[OPTIONS] [PROGRAM_NAME]\n"
"\n"
"OPTIONS:\n"
"  --help            - ēfaqe kėtė lajmė ndihmues.\n"
"  --report          - ky program duhet tė jetė njė nga veglat mandrake\n"
"  --incident        - ky program duhet tė jetė njė nga veglat mandrake"

#: ../../standalone.pm:1
#, c-format
msgid ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Backup and Restore application\n"
"\n"
"--default             : save default directories.\n"
"--debug               : show all debug messages.\n"
"--show-conf           : list of files or directories to backup.\n"
"--config-info         : explain configuration file options (for non-X "
"users).\n"
"--daemon              : use daemon configuration. \n"
"--help                : show this message.\n"
"--version             : show version number.\n"
msgstr ""
"[--config-info] [--daemon] [--debug] [--default] [--show-conf]\n"
"Regjistro dhe Rregullo aplikacionin\n"
"\n"
"--default             : regjistro repertorėr me marrėveshje.\n"
"--debug               : ēfaqi tė gjitha lajmet debug.\n"
"--show-conf           : listo skedaret apo tė repertortė pėr regjistrim.\n"
"--config-info         : shpjego konfigurimin e mundėsive pėr skedare (pėr "
"non-X pėrdoruesit).\n"
"--daemon              : pėrdore konfigurimin daemon. \n"
"--help                : ēfaqe kėtė lajm.\n"
"--version             : ēfaqe numrin e versionit.\n"

#: ../../standalone.pm:1
#, c-format
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"
"the Free Software Foundation; either version 2, or (at your option)\n"
"any later version.\n"
"\n"
"This program is distributed in the hope that it will be useful,\n"
"but WITHOUT ANY WARRANTY; without even the implied warranty of\n"
"MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n"
"GNU General Public License for more details.\n"
"\n"
"You should have received a copy of the GNU General Public License\n"
"along with this program; if not, write to the Free Software\n"
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"
msgstr ""
"Ky program ėshtė gratis; ju mund ta shpėrndani apo edhe ta ndryshoni\n"
"atė, ndėr termet e GNU General Public License ashtu siq ėshtė publikuar\n"
"nga Free Software Foundation; apo versionin 2, i kėsaj licence (me \n"
"zgjedhjen tuaj) apo njė version mė tė vjetėr.\n"
"\n"
"Ky program shpėrndahet me shpresė se do tė jetė i pėrdorshėm,\n"
"mirėpo PA KURRĖFAR GARANTIE; dhe pa garanti implicit tė kėtij\n"
"PRODUKTI, apo me PĖRSHTATJE MĖ NJĖ QĖLLIM SPECIFIK. Shiqo nė\n"
"GNU General Public License pėr mė shumė detaje.\n"
"\n"
"Ju duhet tė pranoni njė kopie tė GNU General Public License\n"
"nė tė njėjtėn kohė me kėtė program; nėse jo, shkruani nė Free Software\n"
"Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.\n"

#: ../../steps.pm:1
#, c-format
msgid "Exit install"
msgstr "Fund i instalimit"

#: ../../steps.pm:1
#, c-format
msgid "Install system updates"
msgstr "Instalo sistemin e azhurnimeve"

#: ../../steps.pm:1
#, c-format
msgid "Configure services"
msgstr "Konfiguroji serviset"

#: ../../steps.pm:1
#, c-format
msgid "Configure X"
msgstr "Konfigurim i X"

#: ../../steps.pm:1
#, c-format
msgid "Install bootloader"
msgstr "Instalo ngarkuesin me nisje tė udhėzuar"

#: ../../steps.pm:1
#, c-format
msgid "Configure networking"
msgstr "Konfiguroje rrjetin"

#: ../../steps.pm:1
#, c-format
msgid "Add a user"
msgstr "Shto njė pėrdorues"

#: ../../steps.pm:1
#, c-format
msgid "Install system"
msgstr "Instaloje sistemin"

#: ../../steps.pm:1
#, c-format
msgid "Choose packages to install"
msgstr "Zgjedhi pakot pėr ti instaluar"

#: ../../steps.pm:1
#, c-format
msgid "Format partitions"
msgstr "Formatim i ndarjeve"

#: ../../steps.pm:1
#, c-format
msgid "Partitioning"
msgstr "Shpėrndarja"

#: ../../steps.pm:1
#, c-format
msgid "Choose your keyboard"
msgstr "Zgjedheni tastierėn tuaj"

#: ../../steps.pm:1
#, c-format
msgid "Select installation class"
msgstr "Zgjedhe klasėn e instalimit"

#: ../../steps.pm:1
#, c-format
msgid "Hard drive detection"
msgstr "Zbulim i Dikut tė Fortė (Hard drive)"

#: ../../steps.pm:1
#, c-format
msgid "Configure mouse"
msgstr "Konfigurim i minit"

#: ../../steps.pm:1
#, c-format
msgid "License"
msgstr "Licenca"

#: ../../steps.pm:1
#, c-format
msgid "Choose your language"
msgstr "Zgjedheni gjuhėn tuaj"

#: ../../ugtk2.pm:1
#, c-format
msgid "utopia 25"
msgstr "utopi 25"

#: ../../ugtk2.pm:1 ../../ugtk.pm:1 ../../standalone/logdrake:1
#, c-format
msgid "logdrake"
msgstr "logdrake"

#: ../../ugtk.pm:1
#, c-format
msgid "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"
msgstr "-adobe-times-bold-r-normal--17-*-100-100-p-*-iso8859-*,*-r-*"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Xpmac (installation display driver)"
msgstr "XPmac (pilot i ēfaqur pėr instalim)"

#: ../../Xconfig/card.pm:1
#, 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 ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER."

#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree %s with EXPERIMENTAL 3D hardware acceleration"
msgstr "XFree %s me pėrkrahje tė materialit EKSPERIMENTUES nė nxitimin 3D"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Your card can have 3D hardware acceleration support with XFree %s."
msgstr ""
"Kartela e juaj mund tė ketė materialin 3D nxitues me pėrkrahje tė XFree %s."

#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s with 3D hardware acceleration"
msgstr "XFree %s me material 3D tė nxituar"

#: ../../Xconfig/card.pm:1
#, c-format
msgid ""
"Your card can have 3D hardware acceleration support but only with XFree %s,\n"
"NOTE THIS IS EXPERIMENTAL SUPPORT AND MAY FREEZE YOUR COMPUTER.\n"
"Your card is supported by XFree %s which may have a better support in 2D."
msgstr ""
"Kartela juaj mund tė ketė pėrkrahje tė materialit nxitues 3D mirėpo vetėm me "
"XFree %s,\n"
"SHĖNIM KJO ĖSHTĖ PĖRKRAHJE EKSPERIMENTALE DHE MUND TA BLOKOJ KOMPJUTERIN "
"TUAJ.\n"
"Kartela juaj ka pėkrahje me XFree %s e cila mund tė ketė pėrkrahje me tė "
"mirė nė 2D."

#: ../../Xconfig/card.pm:1
#, 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 ""
"Kartela juaj mund tė pėrdorė materialin 3D tė nxituar mirėpo vetėm nė "
"pėrdorim tė XFree %s.\n"
"Kartela juaj ka pėrkrahje XFree %s por mund tė ketė njė pėrkrahje mė tė mirė "
"nė 2D."

#: ../../Xconfig/card.pm:1 ../../Xconfig/various.pm:1
#, c-format
msgid "XFree %s"
msgstr "XFree %s"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Configure only card \"%s\"%s"
msgstr "Konfiguro vetėm kartelėn \"%s\"%s"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Use Xinerama extension"
msgstr "Shpėrndarje e ēfaqjes nė shumė ekrane (Xinerama)"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Configure all heads independently"
msgstr "Konfigurim i ekraneve veqmas"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Which configuration of XFree do you want to have?"
msgstr "Cilin konfigurim tė XFree dėshironi ta pėrdorni?"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "XFree configuration"
msgstr "Konfigurim i XFree"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Select the memory size of your graphics card"
msgstr "Zgjedheni medhėsinė e memorisė tė kartelės suaj grafike"

#: ../../Xconfig/card.pm:1
#, fuzzy, c-format
msgid ""
"Your system supports multiple head configuration.\n"
"What do you want to do?"
msgstr ""
"Sistemi juaj mund tė pėrdore konfigurim multi head.\n"
"Ēka dėshironi tė beni"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Multi-head configuration"
msgstr "Konfigurim i multi-ekraneve"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "Choose an X server"
msgstr "Zgjedheni njė server X (server XFree)"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "X server"
msgstr "Server XFree"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "64 MB or more"
msgstr "64 MB ose mė shumė"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "32 MB"
msgstr "32 MB"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "16 MB"
msgstr "16 MB"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "8 MB"
msgstr "8 MB"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "4 MB"
msgstr "4 MB"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "2 MB"
msgstr "2 MB"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "1 MB"
msgstr "1 MB"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "512 kB"
msgstr "512 kB"

#: ../../Xconfig/card.pm:1
#, c-format
msgid "256 kB"
msgstr "256 kB"

#: ../../Xconfig/main.pm:1
#, c-format
msgid ""
"Keep the changes?\n"
"The current configuration is:\n"
"\n"
"%s"
msgstr ""
"A dėshironi ti konservoni ndėrrimet?\n"
"Konfigurimi i tanishėm ėshtė:\n"
"\n"
"%s"

#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Options"
msgstr "Mundėsit"

#: ../../Xconfig/main.pm:1
#, c-format
msgid "Test"
msgstr "Test"

#: ../../Xconfig/main.pm:1 ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Resolution"
msgstr "Vendosmėri"

#: ../../Xconfig/main.pm:1 ../../Xconfig/monitor.pm:1
#, c-format
msgid "Monitor"
msgstr "Monitor"

#: ../../Xconfig/main.pm:1
#, c-format
msgid "Graphic Card"
msgstr "Kartelė Grafike"

#: ../../Xconfig/main.pm:1 ../../diskdrake/dav.pm:1
#: ../../printer/printerdrake.pm:1 ../../standalone/drakperm:1
#: ../../standalone/draksplash:1 ../../standalone/harddrake2:1
#: ../../standalone/logdrake:1 ../../standalone/scannerdrake:1
#, c-format
msgid "Quit"
msgstr "Braktise"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Vertical refresh rate"
msgstr "Frekuencė vertikale"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Horizontal refresh rate"
msgstr "Frekuencė horizontale"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid ""
"The two critical parameters are the vertical refresh rate, which is the "
"rate\n"
"at which the whole screen is refreshed, and most importantly the horizontal\n"
"sync rate, which is the rate at which scanlines are displayed.\n"
"\n"
"It is VERY IMPORTANT that you do not specify a monitor type with a sync "
"range\n"
"that is beyond the capabilities of your monitor: you may damage your "
"monitor.\n"
" If in doubt, choose a conservative setting."
msgstr ""
"Dy parametra janė me rėndėsi frekuenca e rifreskimit vertikal, nga e cila\n"
"mvaret se me ēfarė shpejtėsie rifreskohet monitori\n"
"dhe njėherit mė e rendėsishmja frekuenca e sikronizimit horizontal\n"
"nga e cila pėrcaktohet shpejtėsi qė vijohen vijat nė monitor.\n"
"\n"
"Ėshtė shumė ME RĖNDĖSI qė ju tė mos zgjdhnji vetėm njė monitor\n"
"me njė frekuencė tė rifreskimit i cili mund ti tejkalon mundėsit e monitorit "
"tuaj.\n"
"Qė mund ta dėmtoj atė.\n"
"Nė rast tė dyshimit zgjedheini njė rregullim mė tė ulėt mirėpo pa rrezik."

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Plug'n Play probing failed. Please select the correct monitor"
msgstr "Dėshtim gjatė testimit. Ju lutemi zgjedheni njė monitor te precizuar"

#: ../../Xconfig/monitor.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Vendor"
msgstr "Shitės"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Plug'n Play"
msgstr "Plug'n Play"

#: ../../Xconfig/monitor.pm:1
#, c-format
msgid "Choose a monitor"
msgstr "Zgjedheni njė monitor"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Graphics card: %s"
msgstr "Kartel grafike: %s"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Choose the resolution and the color depth"
msgstr "Zgjedhe vendosmėrin dhe numrin e ngjyrave"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "Resolutions"
msgstr "Vendosmėrit"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "4 billion colors (32 bits)"
msgstr "4 miliard ngjyra (32 bits)"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "16 million colors (24 bits)"
msgstr "16 milion ngjyra (24 bits)"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "65 thousand colors (16 bits)"
msgstr "65 mijė ngjyra (16 bits)"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "32 thousand colors (15 bits)"
msgstr "32 mijė ngjyra (15 bits)"

#: ../../Xconfig/resolution_and_depth.pm:1
#, c-format
msgid "256 colors (8 bits)"
msgstr "256 ngjyra (8 bits)"

#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Is this the correct setting?"
msgstr "Ėshtė kjo korrekt"

#: ../../Xconfig/test.pm:1
#, fuzzy, c-format
msgid "Leaving in %d seconds"
msgstr "%d sekunda"

#: ../../Xconfig/test.pm:1
#, c-format
msgid ""
"An error occurred:\n"
"%s\n"
"Try to change some parameters"
msgstr ""
"Njė gabim ėshtė paraqitur:\n"
"%s\n"
"Ndėrroni parametrat pėr ta pėrmirėsuar"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Warning: testing this graphic card may freeze your computer"
msgstr ""
"Kujdes: testimi i kėsaj kartele grafike mund ta blokoj kompjuterin tuaj"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Do you want to test the configuration?"
msgstr "A dėshironi ta testoni konfigurimin?"

#: ../../Xconfig/test.pm:1
#, c-format
msgid "Test of the configuration"
msgstr "Test i konfigurimit"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "What norm is your TV using?"
msgstr "Cilat norma pėrdorė televizori juaj?"

#: ../../Xconfig/various.pm:1
#, c-format
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 ""
"Kartela juaj me sa duket posedon njė dalje TV-OUT.\n"
"Mund ta konfiguroj qė tė punojė me pėrdorimin e frame-buffer.\n"
"\n"
"Pėr kėtė ju duhet ta kyqni kartelėn tuaj para se ta nisni kompjuterin tuaj.\n"
"The mandej zgjedheni hyrjen \"TVout\" nė menunė paraprake\n"
"\n"
"A posedoni kėtė fuksion?"

#: ../../Xconfig/various.pm:1
#, c-format
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 ""
"A dėshironi qė intefac grafik automatikisht tė niset\n"
"gjatė nisjes sė kompjuterit?"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphical interface at startup"
msgstr "Interfac grafike nė nisje"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "XFree86 driver: %s\n"
msgstr "Pilot XFree86: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "XFree86 server: %s\n"
msgstr "Server XFree86: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Resolution: %s\n"
msgstr "Vendosmėria: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Color depth: %s\n"
msgstr "Numri i ngjyrave: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics memory: %s kB\n"
msgstr "Memoria grafike: %s kB\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Graphics card: %s\n"
msgstr "Kartelat grafike: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor VertRefresh: %s\n"
msgstr "Frekuencė Vertikale: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor HorizSync: %s\n"
msgstr "Frekuencė Horizontale: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Monitor: %s\n"
msgstr "Monitor: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse device: %s\n"
msgstr "Mjet mini: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Mouse type: %s\n"
msgstr "Tip i minit: %s\n"

#: ../../Xconfig/various.pm:1
#, c-format
msgid "Keyboard layout: %s\n"
msgstr "Tip i tastierės: %s\n"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Options: %s"
msgstr "Mundėsitė: %s"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mount point: "
msgstr "Pikė montuese: "

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Server: "
msgstr "Server: "

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "The URL must begin with http:// or https://"
msgstr "URL duhet tė filloj me http:// ose https://"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Please enter the WebDAV server URL"
msgstr "Ju lutemi futni adresėn e serverit WebDAV"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount point"
msgstr "Pikė montuese"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "Server"
msgstr "Server"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Mount"
msgstr "Monto"

#: ../../diskdrake/dav.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Unmount"
msgstr "Demonto"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid "New"
msgstr "E Re"

#: ../../diskdrake/dav.pm:1
#, c-format
msgid ""
"WebDAV is a protocol that allows you to mount a web server's directory\n"
"locally, and treat it like a local filesystem (provided the web server is\n"
"configured as a WebDAV server). If you would like to add WebDAV mount\n"
"points, select \"New\"."
msgstr ""
"WebDAV ėshtė njė protokol i cili ju mundėson qė tė montohet njė repertor "
"lokal\n"
"i serverit web, dhe tė qeveriset sikur njė sistem i skedareve lokale ( me "
"njė kusht \n"
"nėse serveri web ėshtė i konfiguruar nė server WebDAV). Ne dėshironi tė "
"shtoni\n"
"pika tjera montuese zgjedheni WebDAV \"E Re\"."

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``%s'' instead"
msgstr "Pėrdore mė parė kėte ``%s''"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#: ../../diskdrake/removable.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Type"
msgstr "Tip"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Use ``Unmount'' first"
msgstr "Pėrdor mė parė ``Demontimin''"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Delete"
msgstr "Zhduke"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create"
msgstr "Krijo"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Filesystem types:"
msgstr "Tipet e sistemeve tė skedareve:"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Empty"
msgstr "Zbrazėt"

#: ../../diskdrake/hd_gtk.pm:1
#, fuzzy, c-format
msgid "Windows"
msgstr "Pronė Windows"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "HFS"
msgstr "HFS"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "SunOS"
msgstr "SunOS"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Swap"
msgstr "Swap"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Journalised FS"
msgstr "FS gazetaresk"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Ext2"
msgstr "Ext2"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "No hard drives found"
msgstr "Asnjė disk i fort (hard drive) nė kėtė sistem"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please click on a partition"
msgstr "Ju lutemi klikoni mbi njė ndarje"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid ""
"You have one big MicroSoft Windows partition.\n"
"I suggest you first resize that partition\n"
"(click on it, then click on \"Resize\")"
msgstr ""
"Disku i juaj posedon vetėm njė ndarje tė madhe tė tipit FAT \n"
"(nė shumicėn e rasteve ėshtė i pėrdorur nga Microsoft Dos/Windows).\n"
"Ju duhet ta zvogėloni qė tė mund tė krijoni ndarje tjetėr\n"
"(kliko nė ndarje, pastaj mbi \"Ridimenzionim\")"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Choose action"
msgstr "Zgjedhe akcionin"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Wizard"
msgstr "Asistent"

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid ""
"If you plan to use aboot, be carefull to leave a free space (2048 sectors is "
"enough)\n"
"at the beginning of the disk"
msgstr ""
"Nėse dėshironi tė pėrdorni aboot, keni kujdes gjatė rezervimit tė njė "
"hapėsire tė lirė (minimum duhen tė jetė 2048 sektorė)\n"
"nė fillim tė diskut."

#: ../../diskdrake/hd_gtk.pm:1
#, c-format
msgid "Please make a backup of your data first"
msgstr "Ju lutemi regjistroni tė dhėnat tuaja para se tė vazhdoni mė tutje"

#: ../../diskdrake/hd_gtk.pm:1 ../../diskdrake/interactive.pm:1
#, c-format
msgid "Read carefully!"
msgstr "Gjendje gadishmėrie!"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Encryption key (again)"
msgstr "Ēelės i kriptimit (vėrtetim)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Encryption key"
msgstr "Ēelės i kriptimit"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "The encryption keys do not match"
msgstr "Ēelėsat e kriptimit nuk pėrputhen"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This encryption key is too simple (must be at least %d characters long)"
msgstr ""
"Ky ēelės i kriptimit ėshtė shumė i thjeshtė (duhet tė jetė mė sė paku prej %"
"d shifrave)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose your filesystem encryption key"
msgstr "Zgjedheni ēelėsin e kriptimit tė sistemit tė skedareve"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Filesystem encryption key"
msgstr "Ēelės i kriptimit tė sistemit tė skedareve"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Type: "
msgstr "Tip: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "on channel %d id %d\n"
msgstr "nė kanal %d id %d\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table type: %s\n"
msgstr "Tabela a ndarjeve e tipit: %s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "LVM-disks %s\n"
msgstr "Disqet LVM %s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Info: "
msgstr "Informacion: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Geometry: %s cylinders, %s heads, %s sectors\n"
msgstr "Gjeometri: %s cilindrat, %s kokat, %s sektorėt\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size: %s\n"
msgstr "Madhėsi: %s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Read-only"
msgstr "Vetėm pėr tė lexuar"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Device: "
msgstr "Periferik: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"\n"
"This special Bootstrap\n"
"partition is for\n"
"dual-booting your system.\n"
msgstr ""
"\n"
"Kjo ndarje e nisjes me udhėzim (bootstrap)\n"
"ėshtė e domosdoshme nėse ju posedoni\n"
"mės shumė se njė sistem t'eksploatimit.\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"\n"
"Chances are, this partition is\n"
"a Driver partition. You should\n"
"probably leave it alone.\n"
msgstr ""
"\n"
"Ekzistojnė chansat qė kjo ndarje ėshtė\n"
"njė ndarje piloti pėr sistemet.\n"
"Dhe ju nuk duhet ta ndryshoni atė.\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback file name: %s"
msgstr "Emri i diskut loopback: %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "RAID-disks %s\n"
msgstr "Disku RAID %s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Chunk size %s\n"
msgstr "Madhėsi e blokut %s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Level %s\n"
msgstr "Nivel %s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Partition booted by default\n"
"    (for MS-DOS boot, not for lilo)\n"
msgstr ""
"Ndraje me nisje tė udhėzuar nė marrėveshje\n"
"    (pėr nisje MS-DOS, e jo pėr LILO)\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Loopback file(s):\n"
"   %s\n"
msgstr ""
"Skedare(t) loopback:\n"
"   %s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "RAID md%s\n"
msgstr "I pėrketė RAID md%s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mounted\n"
msgstr "Montuar\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Not formatted\n"
msgstr "I pa formatuar\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Formatted\n"
msgstr "Formatuar\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Cylinder %d to %d\n"
msgstr "Cilindri %d  %d\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ", %s sectors"
msgstr ", %s sektorėt"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size: %s"
msgstr "Madhėsi: %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start: sector %s\n"
msgstr "Nisje: sektor %s\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Name: "
msgstr "Emri: "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "DOS drive letter: %s (just a guess)\n"
msgstr "Shkronja e lexues DOS: %s (e sypozuar)\n"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "partition %s is now known as %s"
msgstr "ndarja %s tani ėshtė e njoftur sikur %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Removing %s"
msgstr "Zhdukje e %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Copying %s"
msgstr "Kopjim i %s"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving files to the new partition"
msgstr "Zhvendosje e skedareve nė njė ndarje tė re"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Directory %s already contains data\n"
"(%s)"
msgstr ""
"Repertori %s pėrmban tė dhėna\n"
"(%s)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Hide files"
msgstr "Fshehi skedaret"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Move files to the new partition"
msgstr "Vendosi skedaret nė njė ndarje tė re"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "After formatting partition %s, all data on this partition will be lost"
msgstr ""
"Mbas formatimit tė ndarjes %s, tė gjitha tė dhėnat nė kėtė ndarje do tė "
"zhduken"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "You'll need to reboot before the modification can take place"
msgstr ""
"Ju duhet ta rinisni sistemin tuaj qė ndryshimet e bėra, tė mund tė pėrdorohen"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Partition table of drive %s is going to be written to disk!"
msgstr "Tabela e ndarjeve tė %s tani do tė shkruhet nė diskė!"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"You've selected a software RAID partition as root (/).\n"
"No bootloader is able to handle this without a /boot partition.\n"
"Please be sure to add a /boot partition"
msgstr ""
"Ju keni zgjedhur njė program me ndarje RAID sikur ndarje rrėnjėzore root "
"(/).\n"
"Qė sistemi i juaj tė funksionoj pa problem, shtoni njė ndarje jo RAID\n"
"tė repertorit ndarės /boot"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"The partition you've selected to add as root (/) is physically located "
"beyond\n"
"the 1024th cylinder of the hard drive, and you have no /boot partition.\n"
"If you plan to use the LILO boot manager, be careful to add a /boot partition"
msgstr ""
"Kujdes, ndarja e juaj rrėnjėzore (root) gjindet mė largė se cilindri i 1024-"
"ti.\n"
"Dhe nėse mendoni tė pėrdorni njė program me nisje tė ushėzuar LILO, atėher "
"ju\n"
"duhet tė krijoni njė ndarje pėr repertorin /boot ndėr cilindrin e 1024-tė "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Sorry I won't accept to create /boot so far onto the drive (on a cylinder > "
"1024).\n"
"Either you use LILO and it won't work, or you don't use LILO and you don't "
"need /boot"
msgstr ""
"Programi i nisjes me udhėzim LILO nuk mund tė funksionoj nėse ju e vendosni\n"
"ndarjen e repertorit /boot aq largė nė disk (d.m.th. me largė se cilindri i "
"1024-ti).\n"
"Nėse ju nuk e pėrdorni LILO, atėher nuk keni nevojė pėr njė ndarje tė "
"repertori /boot."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "The package %s is needed. Install it?"
msgstr "Pakoja %s ėshtė e nevojshme. Instalojeni atė?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "What type of partitioning?"
msgstr "Ēfarė tipi i ndarjes?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Be careful: this operation is dangerous."
msgstr "Keni kujdes: ky operacion ėshtė i rrezikshėm."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "chunk size"
msgstr "madhėsia e blokut"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "level"
msgstr "nivel"

#: ../../diskdrake/interactive.pm:1 ../../standalone/drakfloppy:1
#, c-format
msgid "device"
msgstr "periferik"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Various"
msgstr "Ndryshimet"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Mount options"
msgstr "Mundėsit montuese"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "File already exists. Use it?"
msgstr "Skedarje ekziston tani. A duhet ta pėrdorė?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "File is already used by another loopback, choose another one"
msgstr ""
"Skedarja ėshtė nė pėrdorim e sipėr nga njė loopback tjetėr, zgjedheni njė "
"tjetėr"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Give a file name"
msgstr "Jepni njė emėr tė skedares"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Filesystem type: "
msgstr "Tip i sistemit tė skedareve:"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Size in MB: "
msgstr "Madhėsi nė MB:"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback file name: "
msgstr "Emri i skedares loopback:"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Loopback"
msgstr "Loopback"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition can't be used for loopback"
msgstr "Kjo ndarje nuk mund tė pėrdoret pėr loopback"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "LVM name?"
msgstr "Emėr LVM?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "new"
msgstr "e re"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing LVM to add to"
msgstr "Zgjedheni njė LVM ekzistues pėr ta shtuar nė"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose an existing RAID to add to"
msgstr "Zgjedheni njė RAID ekzistues pėr ta shtuar nė"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving partition..."
msgstr "Zhvendosje e ndarjes..."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Moving"
msgstr "Zhvendosje"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Which sector do you want to move it to?"
msgstr "Mbi cilin sektor dėshironi tė vendoseni?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Sector"
msgstr "Sektor"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Which disk do you want to move it to?"
msgstr "Mbi cilin disk dėshironi tė vendoseni?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Move"
msgstr "Zhvendose"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "New size in MB: "
msgstr "Madhėsi e re nė MB:"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose the new size"
msgstr "Zgjedheni njė madhėsi tė re"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Resize"
msgstr "Ridimenziono"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "After resizing partition %s, all data on this partition will be lost"
msgstr ""
"Mbasi qė e ridimenziononi ndarjen %s, tė gjitha tė dhėnat nė atė ndraje do "
"tė zhduken"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All data on this partition should be backed-up"
msgstr "Tė gjitha tė dhėnat duhet tė jenė tė regjistruara"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "This partition is not resizeable"
msgstr "Kjo ndarje nuk mund tė ridimenzionohet"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Computing FAT filesystem bounds"
msgstr "Llogaritje e limiteve tė sistemit tė skedareve FAT"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount %s?"
msgstr "Ku dėshironi ta montoni %s?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Can't unset mount point as this partition is used for loop back.\n"
"Remove the loopback first"
msgstr ""
"Ėshtė e pa mundur moszgjedhja e montimit tė kėsaj pike, sepse ėshtė e "
"pėrdorur nga loopback\n"
"Zhdukeni loopback nė fillim"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount device %s?"
msgstr "Ku dėshironi ta montoni ndarjen %s?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Where do you want to mount the loopback file %s?"
msgstr "Ku dėshironi ta montoni skedaren loopback %s?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Switching from ext2 to ext3"
msgstr "Kalim nga ext2 nė ext3"

#: ../../diskdrake/interactive.pm:1 ../../diskdrake/removable.pm:1
#, c-format
msgid "Which filesystem do you want?"
msgstr "Cilin sistem tė skedareve e dėshironi?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Change partition type"
msgstr "Ndėrrim i tipit tė ndarjes"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"After changing type of partition %s, all data on this partition will be lost"
msgstr ""
"Mbas ndėrrimit tė tipit tė kėsaj ndarje %s, tė gjitha tė dhėnat nė kėtė "
"ndarje do tė zhduken "

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove the loopback file?"
msgstr "Zhduke skedaren loopback?"

#: ../../diskdrake/interactive.pm:1
#, c-format
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 ""
"Ju nuk mund tė krijoni njė ndarje tė re\n"
"(prej se keni arritur nė numrin maksimal tė ndarjeve primare).\n"
"Nė fillim zhdukni ndarjen primare dhe krijoni njė ndarje tė shtrire."

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Preference: "
msgstr "Pėlqim:"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Start sector: "
msgstr "Sektor fillues:"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Create a new partition"
msgstr "Krijo njė ndarje tė re"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Use for loopback"
msgstr "Pėrdore pėr loopback"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Modify RAID"
msgstr "Ndryshoje RAID"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from LVM"
msgstr "Zhduke nga LVM"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Remove from RAID"
msgstr "Zhduke nga RAID"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to LVM"
msgstr "Shto nė LVM"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Add to RAID"
msgstr "Shto nė RAID"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Format"
msgstr "Formatim"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Detailed information"
msgstr "Informacione tė hollėsishme"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Trying to rescue partition table"
msgstr "Tentim i leximit tė organizimit tė ndarjeve"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"Insert a floppy in drive\n"
"All data on this floppy will be lost"
msgstr ""
"Futni njė disketė nė lexues (floppy drive)\n"
"Tė gjitha tė dhėnat nė disketė do tė zhduken"

#: ../../diskdrake/interactive.pm:1 ../../harddrake/sound.pm:1
#: ../../network/modem.pm:1
#, c-format
msgid "Warning"
msgstr "Kujdes"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Select file"
msgstr "Zgjedhe njė skedare"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"The backup partition table has not the same size\n"
"Still continue?"
msgstr ""
"Pėrmbajtja e tabelave ndarėse nuk posedon madhėsi tė njėjtė\n"
"A dėshironi tė vazhdoni?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Removable media automounting"
msgstr "Automontim i periferikėve lėvizės"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Reload partition table"
msgstr "Ringarko tabelėn ndarėse"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Rescue partition table"
msgstr "Shpėtim i tabelės ndarėse"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Restore partition table"
msgstr "Ngarko njė tabelė ndarėse"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Save partition table"
msgstr "Regjistro tabelatė ndarėse"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid ""
"To have more partitions, please delete one to be able to create an extended "
"partition"
msgstr ""
"Pėr tė pėrdorur ndarje tjera, ju duhet ta zhdukni njėrėn nga to, qė ta "
"zėvendėsoni me njė ndarje tjetėr tė shtrirė"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "I can't add any more partition"
msgstr "Nuk mund tė shtoj ndonji ndarje tjetėr"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "All primary partitions are used"
msgstr "Tė gjitha ndarjet primare janė nė pėrdorim e sipėr"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Hard drive information"
msgstr "Informacion mbi duskun e fort (hard drive)"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Auto allocate"
msgstr "Ndarje automatike"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Clear all"
msgstr "Zhduki tė gjitha ndarjet"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Do you want to save /etc/fstab modifications"
msgstr "A dėshironi ti registroni nydrashimet e /etc/fstab"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without writing the partition table?"
msgstr "Braktise pa i regjistruar tabelatė ndarėse"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Quit without saving"
msgstr "Braktise pa regjistrim"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Continue anyway?"
msgstr "Vazhdo pa marrė parasyshė?"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Toggle to expert mode"
msgstr "Kalo nė modė expert"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Toggle to normal mode"
msgstr "Kalo nė modė normal"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Undo"
msgstr "Gjendja paraprake"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Exit"
msgstr "Braktise"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose a partition"
msgstr "Zgjedheni nė ndarje"

#: ../../diskdrake/interactive.pm:1
#, c-format
msgid "Choose another partition"
msgstr "Zgjedheni njė ndarje tjetėr"

#: ../../diskdrake/removable.pm:1
#, c-format
msgid "Change type"
msgstr "Ndėrroje tipin"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Search servers"
msgstr "Kėrkim i serverit"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Domain"
msgstr "Pronė"

#: ../../diskdrake/smbnfs_gtk.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Username"
msgstr "Emėr i pėrdoruesit"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid ""
"Please enter your username, password and domain name to access this host."
msgstr ""
"Ju lutemi futni emrin e pėrdoruesit, parullėn dhe emrin e pronės pėr tė hyrė "
"nė kėtė server."

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Domain Authentication Required"
msgstr "Pronė Vėrtetuese e Nevojshėme"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Another one"
msgstr "Njė tjetėr"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Which username"
msgstr "Cilin emėr tė pėrdoruesit"

#: ../../diskdrake/smbnfs_gtk.pm:1
#, c-format
msgid "Can't login using username %s (bad password?)"
msgstr "E pa mundur kyqja me kėtė emėr %s (parullė e gabura?)"

#: ../../harddrake/data.pm:1
#, c-format
msgid "cpu # "
msgstr "cpu # "

#: ../../harddrake/data.pm:1
#, c-format
msgid "SMBus controllers"
msgstr "Kontrolluesit SMBus"

#: ../../harddrake/data.pm:1
#, c-format
msgid "USB controllers"
msgstr "Kontrolluesit USB"

#: ../../harddrake/data.pm:1
#, c-format
msgid "SCSI controllers"
msgstr "Kontrolluesit SCSI"

#: ../../harddrake/data.pm:1
#, c-format
msgid "(E)IDE/ATA controllers"
msgstr "Kontrolluesit (E)IDE/ATA"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Joystick"
msgstr "Joystick"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Scanner"
msgstr "Skaner"

#: ../../harddrake/data.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Unknown/Others"
msgstr "Pa njoftur/Tjerėt"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Bridges and system controllers"
msgstr "Urat dhe sistemet kontrolluese"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Modem"
msgstr "Modem"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Ethernetcard"
msgstr "Kartelė ethernet"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Processors"
msgstr "Procesorėt"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Webcam"
msgstr "Webcam"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Soundcard"
msgstr "Kartelė zėri"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Other MultiMedia devices"
msgstr "Tjetėr mjet MultiMedia"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Tvcard"
msgstr "Kartelė TV"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Videocard"
msgstr "Kartelė video"

#: ../../harddrake/data.pm:1 ../../standalone/drakbackup:1
#, c-format
msgid "Tape"
msgstr "Kasetė"

#: ../../harddrake/data.pm:1
#, c-format
msgid "DVD-ROM"
msgstr "DVD-ROM"

#: ../../harddrake/data.pm:1
#, c-format
msgid "CD/DVD burners"
msgstr "Gdhendėit CD/DVD"

#: ../../harddrake/data.pm:1
#, c-format
msgid "CDROM"
msgstr "CDROM"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Disk"
msgstr "Disku"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Zip"
msgstr "Zip"

#: ../../harddrake/data.pm:1
#, c-format
msgid "Floppy"
msgstr "Diskete Floppy"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Let me pick any driver"
msgstr "Mė lejo qė tė marrė gjdo pilot"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Driver:"
msgstr "Pilot:"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"If you really think that you know which driver is the right one for your "
"card\n"
"you can pick one in the above list.\n"
"\n"
"The current driver for your \"%s\" sound card is \"%s\" "
msgstr ""
"Nėse me tė vėrtet mendon se din cili pilot ėshtė i saktė pėr kartelėn tuaj\n"
"ju mund ta marrni njėrin nga lista e sipėrme.\n"
"\n"
"Piloti aktual i kartėlės sė zėrit \"%s\" ėshtė \"%s\" "

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Choosing an arbitratry driver"
msgstr "Zgjedhje e njė piloti arbitrar"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"The classic bug sound tester is to run the following commands:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep AUDIO\" will tell you which driver your card use\n"
"by default\n"
"\n"
"- \"grep snd-slot /etc/modules.conf\" will tell you what driver it\n"
"currently uses\n"
"\n"
"- \"/sbin/lsmod\" will enable you to check if its module (driver) is\n"
"loaded or not\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" will\n"
"tell you if sound and alsa services're configured to be run on\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" will tell you if the sound volume is muted or not\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" will tell which program uses the sound card.\n"
msgstr ""
"Njė bug klasik me tingull testues qė tė nisė urdhėrat vijues:\n"
"\n"
"\n"
"- \"lspcidrake -v | fgrep AUDIO\" do tė ju tregoj se cili pilot pėrdore "
"kartela\n"
"juaj me marrėveshje\n"
"\n"
"- \"grep snd-slot /etc/modules.conf\" do tė ju tregoj se cili pilot "
"pėrdoret\n"
"aktualisht\n"
"\n"
"- \"/sbin/lsmod\" do tė ju mudėsoj verifikimin e modulit se a ėshtė piloti \n"
"i ngarkuar apo jo\n"
"\n"
"- \"/sbin/chkconfig --list sound\" and \"/sbin/chkconfig --list alsa\" do "
"tė\n"
"tregoj nėse kartela e zėrit dhe serviset alsa janė konfiguruar tė nisen nė\n"
"initlevel 3\n"
"\n"
"- \"aumix -q\" do tė ju tregoj nėse zėri heshtohet apo jo\n"
"\n"
"- \"/sbin/fuser -v /dev/dsp\" do tė ju tregoj se cili program pėrdore "
"kartelėn  e zėrit.\n"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Sound trouble shooting"
msgstr "Telashe gjate ndaljes sė kartelės sė zėrit"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Error: The \"%s\" driver for your sound card is unlisted"
msgstr "Gabim: Piloti \"%s\" i kartelės tuaj pėr zėrin, nuk gjindet nė listė"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Unkown driver"
msgstr "Pilot i pa njoftur"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "There's no known driver for your sound card (%s)"
msgstr "Nuk ka pilotė tė njoftur pėr kartelėn tuaj tė zėrit (%s)"

#: ../../harddrake/sound.pm:1
#, c-format
msgid "No known driver"
msgstr "Asnjė pilot i njoftur"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"There's no free driver for your sound card (%s), but there's a proprietary "
"driver at \"%s\"."
msgstr ""
"Asnjė pilot i lirė pėr kartelėn tuaj tė zėrit (%s), mirėpo aty gjindet njė "
"pilot pronėsor nė \"%s\"."

#: ../../harddrake/sound.pm:1
#, c-format
msgid "No open source driver"
msgstr "Asnjė burim i hapur pėr pilot"

#: ../../harddrake/sound.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Please Wait... Applying the configuration"
msgstr "Njė moment ju lutemi... Pėrshtatje e konfigurimit"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"The old \"%s\" driver is blacklisted.\n"
"\n"
"It has been reported to oops the kernel on unloading.\n"
"\n"
"The new \"%s\" driver'll only be used on next bootstrap."
msgstr ""
"Piloti i vjetėr \"%s\" gjindet nė listėn e zezė.\n"
"\n"
"Shumica e personelit kanė shkaktuar probleme me kernel gjatė ndaljes sė "
"kompjuterit.\n"
"\n"
"Piloti i ri \"%s\" do tė jetė nė pėrdorim vetėm mbas nisjes sė ardhėshme."

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Trouble shooting"
msgstr "Telashe gjatė ndaljes"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"OSS (Open Sound System) was the first sound API. It's an OS independant "
"sound API (it's available on most unices systems) but it's a very basic and "
"limited API.\n"
"What's more, OSS drivers all reinvent the wheel.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) is a modularized architecture "
"which\n"
"supports quite a large range of ISA, USB and PCI cards.\n"
"\n"
"It also provides a much higher API than OSS.\n"
"\n"
"To use alsa, one can either use:\n"
"- the old compatibility OSS api\n"
"- the new ALSA api that provides many enhanced features but requires using "
"the ALSA library.\n"
msgstr ""
"OSS (Open Sound System) ėshtė njė API fillestar sonor. Dhe ėshtė multi plate-"
"formė(nė shumicėn e sistemeve tė eksploatimit) mirėpo ėshtė i kufizuar me "
"nivele tė ulta.\n"
"Njashtu tė gjithė pilotė OSS kanė rishpikurė rrotėn.\n"
"\n"
"ALSA (Advanced Linux Sound Architecture) ėshtė njė arēitekturė e moduleve "
"qė\n"
"pėrmban njė numėr tė madhė kartelash ISA, USB dhe PCI.\n"
"\n"
"Ajo funrnizon njashtu edhe njė API me nivel tejet tė lartė sesa OSS.\n"
"\n"
"Pėr ta pėrdorur ALSA, ėshtė e mundur tė pėrdoret:\n"
"- kontabiliteti me API OSS tė vjetėr\n"
"- dhe API ALSA e re qė furnizon njė numėr tė madhė tė mundėsive nė pėrparim "
"mirėpo i nevojitet biloteka ALSA.\n"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Your card currently use the %s\"%s\" driver (default driver for your card is "
"\"%s\")"
msgstr ""
"\n"
"\n"
"Kartela e juaj aktualisht pėrdore pilotin %s\"%s\" (piloti me marrėveshje "
"ėshtė \"%s\")"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"Here you can select an alternative driver (either OSS or ALSA) for your "
"sound card (%s)."
msgstr ""
"Kėtu ju mund tė zgjidhni pilotėt alternativ (OSS apo ALSA) pėr kartelėn tuaj "
"tė zėrit (%s)."

#: ../../harddrake/sound.pm:1
#, c-format
msgid "Sound configuration"
msgstr "Konfigurim i zėrit"

#: ../../harddrake/sound.pm:1
#, c-format
msgid ""
"There's no known OSS/ALSA alternative driver for your sound card (%s) which "
"currently uses \"%s\""
msgstr ""
"Asnjė pilot OSS apo ALSA alternativ pėr kartelėn tuaj tė zėrit (%s) qė "
"pėrdoret aktualisht \"%s\""

#: ../../harddrake/sound.pm:1
#, c-format
msgid "No alternative driver"
msgstr "Asnjė pilot alternativ"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "enable radio support"
msgstr "aktivizoje pėrkrahjen e radios"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Radio support:"
msgstr "Pėrkrahje e radios:"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "PLL setting:"
msgstr "Rregullim i PLL:"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "number of capture buffers for mmap'ed capture"
msgstr "numėr i tamponave pėr tėrheqje via mmap()"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Number of capture buffers:"
msgstr "Numėr i tamponave tėrheqės"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Tuner type:"
msgstr "Tip i tuner:"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Card model:"
msgstr "Model i kartelės:"

#: ../../harddrake/v4l.pm:1
#, c-format
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 ""
"Pėr njė shumicė tė madhe kartelash tė reja TV, muduli bttv i bėrthamės GNU/"
"Linux do ti auto-detekton parametrat e pėrsosur.\n"
"Nėse kartela juaj ėshtė detektuar gabimisht, atėherė ju mund ta forconi "
"tuner dhe tipin e kartelės sė saktė kėtu. Ju mbetet vetėm ti zgjidhni "
"parametrat e nevojshėm pėr kartelėn tuaj tė TV(sė) "

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|Generic"
msgstr "Pa njoftur|Pėrgjithshėm"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|CPH06X (bt878) [many vendors]"
msgstr "Pa njoftur|CPH06X (bt878) [shumė shitės]"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Unknown|CPH05X (bt878) [many vendors]"
msgstr "Pa njoftur|CPH05X (bt878) [shumė shitės]"

#: ../../harddrake/v4l.pm:1
#, c-format
msgid "Auto-detect"
msgstr "Auto-zbulues"

#: ../../interactive/newt.pm:1
#, c-format
msgid "Do"
msgstr "Bėje"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default %s) "
msgstr "Zgjedhja juaj? (%s me marrėveshje)"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Bad choice, try again\n"
msgstr "Zgjedhje e gabuar, provoni edhe njė herė\n"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Re-submit"
msgstr "Ri-vlerėsim"

#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
"=> Notice, a label changed:\n"
"%s"
msgstr ""
"=> Shėnoni, se njė lajmė ėshtė ndėrruar:\n"
"%s"

#: ../../interactive/stdio.pm:1
#, c-format
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 ""
"Ju lutemi zgjedheni numrim e parė tė grupit 10 tė cilin dėshironi,\n"
"ta ndryshoni, ose shtypni vetėm mbi Enter pėr tė vazhduar.\n"
"Zgjedhja juaj?"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "=> There are many things to choose from (%s).\n"
msgstr "=> Ka shumė zgjedhje pėr tė zgjedhur nga (%s).\n"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (default `%s'%s) "
msgstr "Zgjedhja juaj? (`%s' me marrėveshje %s) "

#: ../../interactive/stdio.pm:1
#, c-format
msgid " enter `void' for void entry"
msgstr " hyni `void' pėr njė hyrje tė zbrazėt"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Do you want to click on this button?"
msgstr "A dėshironi tė klikoni mbi kėtė ēelėsi?"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Button `%s': %s"
msgstr "Ēelėsi `%s': %s"

#: ../../interactive/stdio.pm:1
#, c-format
msgid "Your choice? (0/1, default `%s') "
msgstr "Zgjedhja juaj? (0/1, marrėveshje `%s') "

#: ../../interactive/stdio.pm:1
#, c-format
msgid ""
"Entries you'll have to fill:\n"
"%s"
msgstr ""
"Hyrjet tė cilat duhet tė plotėsohen:\n"
"%s"

#: ../../modules/interactive.pm:1
#, c-format
msgid ""
"Loading module %s failed.\n"
"Do you want to try again with other parameters?"
msgstr ""
"Dėshtim gjatė ngarkim i moduleve %s,\n"
"A dėshironi tė provoni edhe njė herė me parametra tė tjerė?"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Specify options"
msgstr "Specifiko mundėsit"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Autoprobe"
msgstr "Zbulim automatik"

#: ../../modules/interactive.pm:1
#, c-format
msgid ""
"In some cases, the %s driver needs to have extra information to work\n"
"properly, although it normally works fine without them. Would you like to "
"specify\n"
"extra options for it or allow the driver to probe your machine for the\n"
"information it needs? Occasionally, probing will hang a computer, but it "
"should\n"
"not cause any damage."
msgstr ""
"Nė disa raste, piloti %s ka nevojė pėr mundėsi shtuese\n"
"qė tė funksionon mė mirė. A dėshironi tė specifikoni\n"
"mundėsit shtuese pėr zbulim me doracak apo nė mėnyrė automatike.\n"
"Ky detektim mund ta blokoj kompjuterin tuaj,\n"
"mirėpo shkakton kurrėfar dėmi nė tė."

#. -PO: the %s is the driver type (scsi, network, sound,...)
#: ../../modules/interactive.pm:1
#, c-format
msgid "Which %s driver should I try?"
msgstr "Cilin pilot %s duhet ta provoj?"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Module options:"
msgstr "Mundėsit e moduleve:"

#: ../../modules/interactive.pm:1
#, 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 ""
"Ju mund ti precizoni mundėsit e modulit %s.\n"
"Mundėsit janė nė formėn ``name=value name2=value2 ...''.\n"
"Pėr shembull, ``io=0x300 irq=7''"

#: ../../modules/interactive.pm:1
#, c-format
msgid ""
"You may now provide options to module %s.\n"
"Note that any address should be entered with the prefix 0x like '0x123'"
msgstr ""
"Ju mund ta furnizoni mumdėsit nė modulin %s.\n"
"Shėnoni qė tė gjitha adresat duhet tė jenė nė hyrje tė parashtesės 0x sikur "
"'0x123'"

#: ../../modules/interactive.pm:1
#, c-format
msgid "(module %s)"
msgstr "(modulė %s)"

#. -PO: the first %s is the card type (scsi, network, sound,...)
#. -PO: the second is the vendor+model name
#: ../../modules/interactive.pm:1
#, c-format
msgid "Installing driver for %s card %s"
msgstr "Intalim i pilotit pėr kartelėn %s %s"

#: ../../modules/interactive.pm:1
#, c-format
msgid "See hardware info"
msgstr "Vėshtro infomacionet mbi materialin"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have any %s interfaces?"
msgstr "A posedoni interface %s?"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Do you have another one?"
msgstr "A posedoni tjera?"

#: ../../modules/interactive.pm:1
#, c-format
msgid "Found %s %s interfaces"
msgstr "Interfac %s %s gjetur"

#: ../../modules/interactive.pm:1
#, c-format
msgid "You can configure each parameter of the module here."
msgstr "Ju mund ta konfiguroni kėtu secilin parametėr tė modulit."

#: ../../modules/parameters.pm:1
#, c-format
msgid "comma separated strings"
msgstr "vargje tė ndara nga presjet"

#: ../../modules/parameters.pm:1
#, c-format
msgid "comma separated numbers"
msgstr "numra tė ndarė nga presjet"

#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated strings"
msgstr "vargje tė ndara nga presjet %d"

#: ../../modules/parameters.pm:1
#, c-format
msgid "%d comma separated numbers"
msgstr "numra tė ndarė nga presjet %d"

#: ../../modules/parameters.pm:1
#, c-format
msgid "a number"
msgstr "njė numėr"

#: ../../network/adsl.pm:1
#, c-format
msgid ""
"You need the alcatel microcode.\n"
"Download it at\n"
"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
"and copy the mgmt.o in /usr/share/speedtouch"
msgstr ""
"Ju keni nevojė pėr alcatel microcode.\n"
"Trasferoni atė nga\n"
"http://www.speedtouchdsl.com/dvrreg_lx.htm\n"
"dhe kopjone mgmt.o nė /usr/share/speedtouch"

#: ../../network/adsl.pm:1
#, c-format
msgid ""
"The most common way to connect with adsl is pppoe.\n"
"Some connections use pptp, a few use dhcp.\n"
"If you don't know, choose 'use pppoe'"
msgstr ""
"Mėnyra mė e shpeshtė pėr tu kyqur nė Internet duke pėrdorur linjėn\n"
"ADSL dhe pėr pėrdoruesit pppoe. Disa kyqje pėrdorin pptp, dhe disa tė tjerė\n"
"shėrbehen me dhcp. Nėse ju nuk dini ēfarė tė zgjedhni, 'pėrdore pppoe'"

#: ../../network/adsl.pm:1 ../../network/ethernet.pm:1
#, c-format
msgid "Connect to the Internet"
msgstr "Kyqje nė internet"

#: ../../network/adsl.pm:1
#, c-format
msgid "Sagem (using pppoe) usb"
msgstr "Sagem (duke pėrdorur pppoe) usb"

#: ../../network/adsl.pm:1
#, c-format
msgid "Alcatel speedtouch usb"
msgstr "Alcatel speedtouch usb"

#: ../../network/adsl.pm:1
#, c-format
msgid "use dhcp"
msgstr "pėrdore dhcp"

#: ../../network/adsl.pm:1
#, c-format
msgid "use pptp"
msgstr "pėrdore pptp"

#: ../../network/adsl.pm:1
#, c-format
msgid "use pppoe"
msgstr "pėrdore pppoe"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Other ports"
msgstr "Porta tjera"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Everything (no firewall)"
msgstr "Ēdo gjė (asnjė mur-i-zjarrtė)"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
"Invalid port given: %s.\n"
"The proper format is \"port/tcp\" or \"port/udp\", \n"
"where port is between 1 and 65535."
msgstr ""
"Portė e dhėnė e gabuar: %s.\n"
"Format i panueshėm ėshtė \"port/tcp\" ose \"port/udp\", \n"
"apo porta ėshtė mes 1 dhe 65535."

#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
"You can enter miscellaneous ports. \n"
"Valid examples are: 139/tcp 139/udp.\n"
"Have a look at /etc/services for information."
msgstr ""
"Ju mund tė hyni porta tė ndrashme. \n"
"Shembuj tė pranueshėm janė: 139/tcp 139/udp.\n"
"Vini re nė /etc/services pėr mė shumė infomacione."

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Which services would you like to allow the Internet to connect to?"
msgstr "Cilat servise dėshironi ti lini tė lira me hyrje nga interneti?"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
"Make sure you have configured your Network/Internet access with\n"
"drakconnect before going any further."
msgstr ""
"drakfirewall configurator\n"
"\n"
"Ju duhet tė jeni i sigurt se e keni konfiguruar Rrjetin/Internet me \n"
"drackconnect para se tė vazhdoni mė tutje."

#: ../../network/drakfirewall.pm:1
#, c-format
msgid ""
"drakfirewall configurator\n"
"\n"
"This configures a personal firewall for this Mandrake Linux machine.\n"
"For a powerful and dedicated firewall solution, please look to the\n"
"specialized MandrakeSecurity Firewall distribution."
msgstr ""
"Konfigurim i drakfirewall\n"
"\n"
"Kjo do konfiguroj murin-e-zjarrtė (firewall) personel pėr makinėn Mandrake "
"Linux.\n"
"Nėse ju dėshironi njė mur-tė-zjarrtė (firewall) mė tė fuqishėm, kthehuni nė\n"
"shpėrndarjen e specializuar MandrakeSecurity."

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "No network card"
msgstr "Asnjė kartelė e rrjetit"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "POP and IMAP Server"
msgstr "Server POP dhe IMAP"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Mail Server"
msgstr "Server i Lajmeve"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Domain Name Server"
msgstr "Server i Emrit i Domanit"

#: ../../network/drakfirewall.pm:1
#, c-format
msgid "Web Server"
msgstr "Server Web"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Zeroconf host name must not contain a ."
msgstr ""

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Zeroconf Host name"
msgstr "Zona konfiguruese dhe Emri i ftuesit"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Host name"
msgstr "Emri i ftuesit"

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Enter a Zeroconf host name without any dot if you don't\n"
"want to use the default host name."
msgstr ""

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"Please enter your host name if you know it.\n"
"Some DHCP servers require the hostname to work.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''."
msgstr ""
"Ju lutemi hyni emrin e ftuesit nėse ju e njifni.\n"
"Disa server DHCP kanė nevojė pėr emrin e ftuesit pėr tė funksionuar.\n"
"Ky duhet tė jetė i plotėfuqishėm sikur pėr shembull:``mybox.mylab.myco.com''."

#: ../../network/ethernet.pm:1 ../../network/network.pm:1
#, c-format
msgid "Configuring network"
msgstr "Konfigurim i rrjetit"

#: ../../network/ethernet.pm:1
#, c-format
msgid "no network card found"
msgstr "asnjė kartelė e rrjetit e identifikuar"

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"Please choose which network adapter you want to use to connect to Internet."
msgstr "Ju lutemi zgjedheni kartelėn e rrjetit e cila do tė kyqet nė Internet"

#: ../../network/ethernet.pm:1 ../../standalone/drakgw:1
#: ../../standalone/drakpxe:1
#, c-format
msgid "Choose the network interface"
msgstr "Zgjedheni kartelėn e rrjetit"

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"No ethernet network adapter has been detected on your system.\n"
"I cannot set up this connection type."
msgstr ""
"Asnjė kartelė rrjeti e detektuar nė sietmin tuaj.\n"
"Pra kyqja nuk mund konfigurohet."

#: ../../network/ethernet.pm:1
#, c-format
msgid ""
"Which dhcp client do you want to use?\n"
"Default is dhcp-client."
msgstr ""
"Cilin klient dhcp dėshironi ta pėrdorni?\n"
"Me marrėveshje ėshtė klienti-dhcp"

#: ../../network/isdn.pm:1
#, c-format
msgid "No ISDN PCI card found. Please select one on the next screen."
msgstr ""
"Asnjė kartelė PCI ISDN e identifikuar. Ju lutemi zgjedheni njėrėn nė ekranin "
"e ardhshėm."

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"I have detected an ISDN PCI card, but I don't know its type. Please select a "
"PCI card on the next screen."
msgstr ""
"Njė kartelė PCI e ISDN ėshtė gjetur, mirėpo nuk e njofė tipin e saj. Ju "
"lutemi zgjedheni njė kartelė PCI nė ekranin e ardhshėm."

#: ../../network/isdn.pm:1
#, c-format
msgid "Which of the following is your ISDN card?"
msgstr "Cila nga kartelat vijuese, ėshtė kartela e juaj ISDN?"

#: ../../network/isdn.pm:1
#, c-format
msgid "ISDN Configuration"
msgstr "Konfigurim ISDN"

#: ../../network/isdn.pm:1
#, c-format
msgid "Abort"
msgstr "Ndale"

#: ../../network/isdn.pm:1
#, c-format
msgid "Continue"
msgstr "Vazhdo"

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"\n"
"If you have an ISA card, the values on the next screen should be right.\n"
"\n"
"If you have a PCMCIA card, you have to know the \"irq\" and \"io\" of your "
"card.\n"
msgstr ""
"\n"
"Nėse ju posedoni njė kartelė ISA, tė dhėnat e ekranit tė ardhshėm duhet tė "
"jenėkorrekte.\n"
"Nėse ju posedoni njė kartelė PCMCIA, ju duhet ti njifni rregullat \"irq\" "
"dhe \"io\"tė kartelės suaj.\n"

#: ../../network/isdn.pm:1
#, c-format
msgid "I don't know"
msgstr "Nuk e di"

#: ../../network/isdn.pm:1
#, c-format
msgid "PCI"
msgstr "PCI"

#: ../../network/isdn.pm:1
#, c-format
msgid "ISA / PCMCIA"
msgstr "ISA / PCMCIA"

#: ../../network/isdn.pm:1
#, c-format
msgid "What kind of card do you have?"
msgstr "Ēfarė tipi tė kartelės posedoni?"

#: ../../network/isdn.pm:1
#, c-format
msgid "Found \"%s\" interface do you want to use it ?"
msgstr "Interfac e gjetur \"%s\" a dėshironi ta pėrdorni atė ?"

#: ../../network/isdn.pm:1
#, c-format
msgid "Which protocol do you want to use?"
msgstr "Cilin protokol dėshironi ta pėrdorni?"

#: ../../network/isdn.pm:1
#, c-format
msgid "Protocol for the rest of the world"
msgstr "Protokol pėr mbarė botėn tjetėr"

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"Protocol for the rest of the world\n"
"No D-Channel (leased lines)"
msgstr ""
"Protokol pėr mbarė botėn tjetėr\n"
"Pa D-Kanal (vija tė huazuara)"

#: ../../network/isdn.pm:1
#, c-format
msgid "European protocol"
msgstr "Protokol evrope"

#: ../../network/isdn.pm:1
#, c-format
msgid "European protocol (EDSS1)"
msgstr "Protokol evrope (EDSS1)"

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"Select your provider.\n"
"If it isn't listed, choose Unlisted."
msgstr ""
"Zgjedheni furnizuesin tuaj hyrės.\n"
"Nėse nuk ėshtė i listuar, zgjedheni Tė-Pa-Listuar."

#: ../../network/isdn.pm:1
#, c-format
msgid "External ISDN modem"
msgstr "Modem i jashtėm ISDN"

#: ../../network/isdn.pm:1
#, c-format
msgid "Internal ISDN card"
msgstr "Modem i mbrendshėm ISDN"

#: ../../network/isdn.pm:1
#, c-format
msgid "What kind is your ISDN connection?"
msgstr "Ēfarė tipi ėshtė kyqja e juaj ISDN?"

#: ../../network/isdn.pm:1 ../../network/netconnect.pm:1
#, c-format
msgid "Network Configuration Wizard"
msgstr "Asistent i Konfigurimit tė Rrjetit"

#: ../../network/isdn.pm:1
#, c-format
msgid "Old configuration (isdn4net)"
msgstr "Konfigurim i vjetėr (isdn4net)"

#: ../../network/isdn.pm:1
#, c-format
msgid "New configuration (isdn-light)"
msgstr "Konfigurim i ri (isdn-light)"

#: ../../network/isdn.pm:1
#, c-format
msgid ""
"Which ISDN configuration do you prefer?\n"
"\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"
"  standard, but with less tools.\n"
"\n"
"We recommand the light configuration.\n"
msgstr ""
"Ēfarė konfigurimi ISDN preferoni?\n"
"\n"
"* Konfigurimi i vjetėr pėrdorė isdn4net. I cili pėrmbanė vegla tė fuqishme,\n"
"  mirėpo vėshtirė ėshtė qė ta konfiguroni, dhe nuk ėshtė standard.\n"
"\n"
"* Konfigurimin e Ri ėshtė mė lehtė pėr ta kuptuar, mė shumė standard\n"
"  mirėpo mė me shumė vegla.\n"
"\n"
"Ne ju rekomandojmė konfigurimin e lehtė.\n"

#: ../../network/modem.pm:1
#, c-format
msgid "Do nothing"
msgstr "Mos vepro"

#: ../../network/modem.pm:1
#, c-format
msgid "Install rpm"
msgstr "Instalo rpm"

#: ../../network/modem.pm:1
#, c-format
msgid ""
"\"%s\" based winmodem detected, do you want to install needed software ?"
msgstr ""
"\"%s\" winmodem me bazė tė identifikuar, a dėshironi ta instaloni ta "
"instaloni software e nevojshėm ?"

#: ../../network/modem.pm:1
#, c-format
msgid "Title"
msgstr "Titull"

#: ../../network/modem.pm:1
#, c-format
msgid ""
"Your modem isn't supported by the system.\n"
"Take a look at http://www.linmodems.org"
msgstr ""
"Modemi i juaj nuk ėshtė nėn pėrkrahjen e sistemit.\n"
"Shiqoni nė http://www.linmodems.org"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Second DNS Server (optional)"
msgstr "Server DNS i Dyti (me mundėsi)"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "First DNS Server (optional)"
msgstr "Server DNS Kryesor (me mundėsi)"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Domain name"
msgstr "Emri pronės"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "CHAP"
msgstr "CHAP"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Script-based"
msgstr "Bazuar me njė skript"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Terminal-based"
msgstr "Doracak nga terminali"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "PAP"
msgstr "PAP"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Login ID"
msgstr "Identiteti i kyqjes"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Phone number"
msgstr "Numri i telefonit"

#: ../../network/modem.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection name"
msgstr "Emri i kyqjes"

#: ../../network/modem.pm:1
#, c-format
msgid "Dialup options"
msgstr "Mundėsitė me thirrje telefonike"

#: ../../network/modem.pm:1
#, c-format
msgid "Please choose which serial port your modem is connected to."
msgstr ""
"Ju lutemi zgjedhni portėn serike mbi tė cilėn modemi juaj ėshtė i kyqyr"

#: ../../network/netconnect.pm:1 ../../network/tools.pm:1
#, c-format
msgid "Network Configuration"
msgstr "Konfigurimi i rrjetit (Network)"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Problems occured during configuration.\n"
"Test your connection via net_monitor or mcc. If your connection doesn't "
"work, you might want to relaunch the configuration."
msgstr ""
"Disa probleme janė lajmėruar gjatė konfigurimit.\n"
"Testoni kyqjen tuaj tek Qendra Kontrolluese e Mandrake, apo me urdherinė "
"net_monitor. Nėse kyqja juaj nuk fonksionon, ju mund ta ri-nisni "
"konfigurimin."

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"After this is done, we recommend that you restart your X environment to "
"avoid any hostname-related problems."
msgstr ""
"Mbasi tė pėrfundoni, ne ju rekomandojmė qė ta ri-nisni interfacin grafik X, "
"qė ti largoheni problemeve nė ngarkimin e makinės ftuese."

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Congratulations, the network and Internet configuration is finished.\n"
"The configuration will now be applied to your system.\n"
"\n"
msgstr ""
"Urime, konfigurimi i rrjetit dhe i internetit mori fund.\n"
"Konfigurimi juaj tani do tė aplikohet nė sistemin tuaj.\n"
"\n"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"A problem occured while restarting the network: \n"
"\n"
"%s"
msgstr ""
"Njė problem ėshtė paraqituar gjatė nisjes sė rrjetit (network): \n"
"\n"
"%s"

#: ../../network/netconnect.pm:1
#, fuzzy, c-format
msgid "The network needs to be restarted. Do you want to restart it ?"
msgstr "Pakot %s duhet tė jenė tė instaluara. A dėshironi ti instaloni ato?"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Network configuration"
msgstr "Konfigurim i Rrjetit (Network)"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Do you want to start the connection at boot?"
msgstr "A dėshironi tė kyqeni nė internet gjatė nisjet sė sistemit tuaj?"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Internet connection"
msgstr "Kyqje Internet"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"You have configured multiple ways to connect to the Internet.\n"
"Choose the one you want to use.\n"
"\n"
msgstr ""
"Ju keni konfiguruar shumė mėnyra kyqėse nė Internet.\n"
"Zgjedheni njėrėn qė dėshironi ta pėrdorni.\n"
"\n"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the connection you want to configure"
msgstr "Zgjedheni kyqjen tė cilėn dėshironi ta konfiguroni"

#: ../../network/netconnect.pm:1
#, c-format
msgid "ethernet card(s) detected"
msgstr "zbulim i kartelės ethernet"

#: ../../network/netconnect.pm:1
#, c-format
msgid "LAN connection"
msgstr "kyqje LAN"

#: ../../network/netconnect.pm:1
#, c-format
msgid "cable connection detected"
msgstr "zbulim i kyqjes kabėll"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Cable connection"
msgstr "Kyqje kabėll"

#: ../../network/netconnect.pm:1
#, c-format
msgid "detected"
msgstr "zbulim"

#: ../../network/netconnect.pm:1
#, c-format
msgid "ADSL connection"
msgstr "Kyqje ADSL"

#: ../../network/netconnect.pm:1
#, c-format
msgid "detected %s"
msgstr "zbulim i %s"

#: ../../network/netconnect.pm:1
#, c-format
msgid "ISDN connection"
msgstr "Kyqje ISDN"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Winmodem connection"
msgstr "Kyqje me Winmodem"

#: ../../network/netconnect.pm:1
#, c-format
msgid "detected on port %s"
msgstr "zbulim nė pörtėn %s"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Normal modem connection"
msgstr "Modė normal i kyqjes"

#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Detecting devices..."
msgstr "Zbulim i periferikve..."

#: ../../network/netconnect.pm:1 ../../printer/printerdrake.pm:1
#: ../../standalone/drakconnect:1 ../../standalone/drakfloppy:1
#, c-format
msgid "Expert Mode"
msgstr "Modė Ekspert"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Use auto detection"
msgstr "Pėrdore zbuluesin automatik"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Choose the profile to configure"
msgstr "Zgjedhni profilin e konfigurimit"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Welcome to The Network Configuration Wizard.\n"
"\n"
"We are about to configure your internet/network connection.\n"
"If you don't want to use the auto detection, deselect the checkbox.\n"
msgstr ""
"Mirė se vini nė Asistenitin e Konfigurimin tė Rrjetit (Network).\n"
"\n"
"Ne jeni nė pikėn e konfigurimit tė kyqjes sė internetit dhe tė rrjetit.\n"
"Nėse ju nuk dėhironi ta pėrdoni zbuluesin automatik, ēzgjedheni kutin "
"pėrkatėse.\n"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"Because you are doing a network installation, your network is already "
"configured.\n"
"Click on Ok to keep your configuration, or cancel to reconfigure your "
"Internet & Network connection.\n"
msgstr ""
"Mbasi qė ju jeni duket bėrė njė instalim tė rrjetit (network), d.m.th.\n"
"qė rrjeti juaj ėshtė veq se i konfiguruar. Kliko mbi Ok pėr tė konservuar\n"
"konfigurimin tuaj, pėr ta ri-konfiguruar kyqjen e internetit kliko mbi "
"Anulo.\n"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"\n"
"\n"
"\n"
"We are now going to configure the %s connection.\n"
"\n"
"\n"
"Press OK to continue."
msgstr ""
"\n"
"\n"
"\n"
"Tani do ta konfigurojmė kyqjen %s.\n"
"\n"
"\n"
"Shtypni mbi OK pėr vazhduar."

#: ../../network/netconnect.pm:1
#, c-format
msgid "We are now going to configure the %s connection."
msgstr "Tani do ta konfigurojmė kyqjen %s."

#: ../../network/netconnect.pm:1
#, c-format
msgid "Internet connection & configuration"
msgstr "Konfigurimi & kyqja nė Internet"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Configure the connection"
msgstr "Konfiguro kyqjen"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Disconnect"
msgstr "Ēkyqyr"

#: ../../network/netconnect.pm:1
#, c-format
msgid "Connect"
msgstr "Kyqyr"

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"\n"
"You can reconfigure your connection."
msgstr ""
"\n"
"Ju mund ta ri-konfiguroni kyqjen tuaj."

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"\n"
"You can connect to the Internet or reconfigure your connection."
msgstr ""
"\n"
"Ju mund tė kyqeni nė Internet apo ta ri-konfiguroni kyqjen tuaj."

#: ../../network/netconnect.pm:1
#, c-format
msgid "You are not currently connected to the Internet."
msgstr "Ju nuk jeni aktualisht i kyqyr nė Internet."

#: ../../network/netconnect.pm:1
#, c-format
msgid ""
"\n"
"You can disconnect or reconfigure your connection."
msgstr ""
"\n"
"Ju mund ta ēkyqni apo ta ri-konfiguroni kyqjen tuaj."

#: ../../network/netconnect.pm:1
#, c-format
msgid "You are currently connected to the Internet."
msgstr "Ju jeni aktualisht i kyqyr nė Internet."

#: ../../network/network.pm:1
#, c-format
msgid "URL should begin with 'ftp:' or 'http:'"
msgstr "URL duhet tė filloj me 'ftp:' apo 'http:'"

#: ../../network/network.pm:1
#, c-format
msgid "Proxy should be http://..."
msgstr "Sintakasa duhet tė jetė http://..."

#: ../../network/network.pm:1
#, c-format
msgid "FTP proxy"
msgstr "Server mandartar FTP"

#: ../../network/network.pm:1
#, c-format
msgid "HTTP proxy"
msgstr "Server mandartar HTTP"

#: ../../network/network.pm:1
#, c-format
msgid "Proxies configuration"
msgstr "Konfigurim i serverve mandatues (proxie)"

#: ../../network/network.pm:1
#, c-format
msgid "Gateway address should be in format 1.2.3.4"
msgstr "Adresa e Portės hyrėse duhe tė jetė sikur 1.2.3.4"

#: ../../network/network.pm:1
#, c-format
msgid "DNS server address should be in format 1.2.3.4"
msgstr "Adresa i portės hyrėse duhet tė jetė sikur 1.2.3.4"

#: ../../network/network.pm:1
#, c-format
msgid "Gateway device"
msgstr "Periferik i Portės Hyrėse"

#: ../../network/network.pm:1
#, c-format
msgid "Gateway (e.g. %s)"
msgstr "Portė Hyrėse (p.sh. %s)"

#: ../../network/network.pm:1
#, c-format
msgid "DNS server"
msgstr "Server DNS"

#: ../../network/network.pm:1
#, c-format
msgid ""
"Please enter your host name.\n"
"Your host name should be a fully-qualified host name,\n"
"such as ``mybox.mylab.myco.com''.\n"
"You may also enter the IP address of the gateway if you have one."
msgstr ""
"Ju lutemi futni emrin ftues.\n"
"Qė emri i tij duhet tė jetė i kualifukuar si pėr shembull:\n"
"`mybox.mylab.myco.com''.\n"
"Ju njashtu mund ta futni adresėn e portės IP nėse e posedoni njė"

#: ../../network/network.pm:1
#, c-format
msgid ""
"Rate should have the suffix k, M or G (for example, \"11M\" for 11M), or add "
"enough '0' (zeroes)."
msgstr ""
"Rrahja duhet tė ketė shtesėn k, M apo G (pėr shembull, \"11M\" pėr 11M), apo "
"shto plotėsuesin '0' (zero)."

#: ../../network/network.pm:1
#, c-format
msgid ""
"Freq should have the suffix k, M or G (for example, \"2.46G\" for 2.46 GHz "
"frequency), or add enough '0' (zeroes)."
msgstr ""
"Frekuenca duhet tė ketė shtesėn k, M apo G (pėr shembull, \"2.46G\" pėr 2.46 "
"GHz frekuencė), apo shto plotėsuesin '0' (zero)."

#: ../../network/network.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "IP address should be in format 1.2.3.4"
msgstr "Adresa IP duhet tė jetė nė kėtė formė 1.2.3.4"

#: ../../network/network.pm:1
#, c-format
msgid "Start at boot"
msgstr "Nise nė nisje tė sistemit"

#: ../../network/network.pm:1
#, fuzzy, c-format
msgid "Network Hotplugging"
msgstr "Vėshtrim i Rrjetit (Network)"

#: ../../network/network.pm:1
#, c-format
msgid "Track network card id (useful for laptops)"
msgstr ""
"Identifukues i kartelės sė rrjetit (i pėdorueshėm pėr kompjuter bartės)"

#: ../../network/network.pm:1
#, c-format
msgid "(bootp/dhcp/zeroconf)"
msgstr "(bootp/dhcp/konfigurimzero)"

#: ../../network/network.pm:1
#, c-format
msgid "Automatic IP"
msgstr "Shpėrndarje automatike e adresės IP"

#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#: ../../standalone/drakgw:1
#, c-format
msgid "Netmask"
msgstr "Maskė ndėr rrjet"

#: ../../network/network.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "IP address"
msgstr "Adresa IP"

#: ../../network/network.pm:1
#, c-format
msgid " (driver %s)"
msgstr " (piloti %s)"

#: ../../network/network.pm:1
#, c-format
msgid "Configuring network device %s"
msgstr "Konfigurim i periferikut tė rrjetit %s"

#: ../../network/network.pm:1
#, c-format
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 ""
"Ju lutemi konfiguroni IP nė kėtė makinė.\n"
"Secila zonė duhet tė jetė e kompletuar me njė adresė IP nė shėnim\n"
"decimal shenjues (pėr shembull: 1.2.3.4)."

#: ../../network/network.pm:1
#, c-format
msgid ""
"WARNING: this device has been previously configured to connect to the "
"Internet.\n"
"Simply accept to keep this device configured.\n"
"Modifying the fields below will override this configuration."
msgstr ""
"KUJDES: ky periferik ėshtė konfiguruar mė heret, pėr kyqje nė Intrernet.\n"
"Klikoni mbi OK pėr ta konservuar kėtė konfigurim.\n"
"Nėse ju nuk klikoni mbi OK, konfigurimi i tanishėm do tė zėvendėsohet me "
"ndyshimet tė cilat ju i bėni."

#: ../../network/shorewall.pm:1
#, c-format
msgid ""
"Warning! An existing firewalling configuration has been detected. You may "
"need some manual fixes after installation."
msgstr ""
"Kujdes! Njė konfigurim i Murit tė Zjarrtė ekziston. Ndoshta ju duhet ta "
"ndryshoni konfiguronimin nė menyrė manuale mbasė instalimit."

#: ../../network/shorewall.pm:1
#, c-format
msgid "Firewalling configuration detected!"
msgstr "Konfigurimi i Murit tė Zjarrtė zbulues"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Password"
msgstr "Parulla a kontos"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Account Login (user name)"
msgstr "Emri i pėrdoruesit tė kontos"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection timeout (in sec)"
msgstr "Koha maksimale pėr tu kyqur (nė sekonda)"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Connection speed"
msgstr "Shpejtėsi i kyqjes"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Dialing mode"
msgstr "Modė Numėrimi"

#: ../../network/tools.pm:1
#, c-format
msgid "Choose your country"
msgstr "Zgjedheni vendin tuaj"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider dns 2 (optional)"
msgstr "DNS i dytė furnizues (me mundėsi)"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider dns 1 (optional)"
msgstr "DNS i parė furnizues (me mundėsi)"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider phone number"
msgstr "Numri i telefonit tė furnizuesit"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Provider name (ex provider.net)"
msgstr "Emri i furnizuesit (p.sh. provider.net)"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Your personal phone number"
msgstr "Numri i juaj personal i telefonit"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO_1"
msgstr "Kartelė IO_1"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO_0"
msgstr "Kartelė IO_0"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IO"
msgstr "Kartelė IO"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card mem (DMA)"
msgstr "Kartelė memrisė (DMA)"

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Card IRQ"
msgstr "Kartelė IRQ"

#: ../../network/tools.pm:1
#, c-format
msgid "Please fill or check the field below"
msgstr "Ju lutemi mbushni dhe verifikoni zonat plotėsuese"

#: ../../network/tools.pm:1
#, c-format
msgid "Connection Configuration"
msgstr "Konfigurim i kyqjes"

#: ../../network/tools.pm:1
#, c-format
msgid ""
"The system doesn't seem to be connected to the Internet.\n"
"Try to reconfigure your connection."
msgstr ""
"Sistemi me sa duket nuk ėshtė i kyqur nė Internet.\n"
"Provoni ta ri-konfiguroni kyqjen tuaj."

#: ../../network/tools.pm:1
#, c-format
msgid "For security reasons, it will be disconnected now."
msgstr "Pėr arėsy sigurie, do tė ēkyqet tani nga rrjeti."

#: ../../network/tools.pm:1
#, c-format
msgid "The system is now connected to the Internet."
msgstr "Sistemi tani ėshtė i kyqur nė Internet."

#: ../../network/tools.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Testing your connection..."
msgstr "Testim i kyqjes suaj..."

#: ../../network/tools.pm:1
#, c-format
msgid "Do you want to try to connect to the Internet now?"
msgstr "A dėshironi tė kyqeni nė Internet tani?"

#: ../../network/tools.pm:1
#, c-format
msgid "Internet configuration"
msgstr "Konfigurim i Internetit"

#: ../../partition_table/raw.pm:1
#, c-format
msgid ""
"Something bad is happening on your drive. \n"
"A test to check the integrity of data has failed. \n"
"It means writing anything on the disk will end up with random, corrupted "
"data."
msgstr ""
"Diēka e keqe ka ndodhur nė diskun tuaj tė fortė.\n"
"Testi i verifikimit tė integritit tė skedareve tė tij ka dėshtuar. \n"
"D.m.th. qė ju do tė jeni njė viktimė e hmbjes sė tė dhėnave rrethė e rrotull."

#: ../../printer/cups.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid " (Default)"
msgstr " (Me marrėvshje)"

#: ../../printer/cups.pm:1
#, c-format
msgid "On CUPS server \"%s\""
msgstr "Mbi severin CUPS \"%s\""

#: ../../printer/cups.pm:1 ../../printer/main.pm:1
#, c-format
msgid "Remote Printers"
msgstr "Stampues i distancės"

#: ../../printer/cups.pm:1 ../../printer/data.pm:1
#, c-format
msgid "CUPS"
msgstr "CUPS"

#: ../../printer/cups.pm:1
#, c-format
msgid "(on this machine)"
msgstr "(mbi kėtė makinė)"

#: ../../printer/cups.pm:1
#, c-format
msgid "(on %s)"
msgstr "(mbi %s)"

#: ../../printer/data.pm:1
#, c-format
msgid "CUPS - Common Unix Printing System"
msgstr "CUPS - Sistem Unix i Stampimit"

#: ../../printer/data.pm:1
#, c-format
msgid "LPRng"
msgstr "LPRng"

#: ../../printer/data.pm:1
#, c-format
msgid "LPRng - LPR New Generation"
msgstr "LPRng - LPR i Gjeneratės sė Re"

#: ../../printer/data.pm:1
#, c-format
msgid "LPD"
msgstr "LPD"

#: ../../printer/data.pm:1
#, c-format
msgid "LPD - Line Printer Daemon"
msgstr "LPD - Stampues i Linjės Daemon"

#: ../../printer/data.pm:1
#, c-format
msgid "PDQ"
msgstr "PDQ"

#: ../../printer/data.pm:1
#, c-format
msgid "PDQ - Print, Don't Queue"
msgstr "PDQ - Stampo, Mos prit nė Rresht"

#: ../../printer/detect.pm:1
#, c-format
msgid "Unknown Model"
msgstr "Model i pa njoftur"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Unknown model"
msgstr "Model i pa njoftur"

#: ../../printer/main.pm:1
#, c-format
msgid "Host %s"
msgstr "Ftuesi %s"

#: ../../printer/main.pm:1
#, c-format
msgid "Network %s"
msgstr "Rrjeti %s"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Interface \"%s\""
msgstr "Interfac \"%s\""

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Local network(s)"
msgstr "Rrjet(et) Lokal(e)"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Raw printer (No driver)"
msgstr "Stampues me hyrje direkte (pa pilotė)"

#: ../../printer/main.pm:1
#, c-format
msgid ", using command %s"
msgstr ", duke pėrdorur urdhėrin %s"

#: ../../printer/main.pm:1
#, c-format
msgid " on Novell server \"%s\", printer \"%s\""
msgstr " nė server Novell \"%s\", stampues \"%s\""

#: ../../printer/main.pm:1
#, c-format
msgid " on SMB/Windows server \"%s\", share \"%s\""
msgstr "nė server SMB/Windows \"%s\", i ndarė \"%s\""

#: ../../printer/main.pm:1
#, c-format
msgid ", TCP/IP host \"%s\", port %s"
msgstr ", ftuesi TCP/IP \"%s\", porta %s"

#: ../../printer/main.pm:1
#, c-format
msgid " on LPD server \"%s\", printer \"%s\""
msgstr " nė serberin LPD \"%s\", stampues \"%s\""

#: ../../printer/main.pm:1
#, c-format
msgid ", printing to %s"
msgstr ", stampim nė %s"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device"
msgstr ", periferik multi-funksion"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on HP JetDirect"
msgstr ", periferik HP JetDirect multi-funksion"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on USB"
msgstr ", periferik multi-funksionel nė USB"

#: ../../printer/main.pm:1
#, c-format
msgid ", multi-function device on parallel port \\#%s"
msgstr ", periferik multi-funksionel nė portėn paralele \\#%s"

#: ../../printer/main.pm:1
#, c-format
msgid ", USB printer"
msgstr ", stampues USB"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid ", USB printer \\#%s"
msgstr ", stampues USB \\#%s"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid " on parallel port \\#%s"
msgstr " nė portė paralele \\#%s"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Local Printers"
msgstr "Stampues Lokal"

#: ../../printer/main.pm:1
#, c-format
msgid "Pipe job into a command"
msgstr "Stampim nė njė urdhėr shell"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter a printer device URI"
msgstr "Shėnoni adresėn e periferikut stampues URI"

#: ../../printer/main.pm:1
#, c-format
msgid "Printer on NetWare server"
msgstr "Stampues nė server NetWare"

#: ../../printer/main.pm:1
#, c-format
msgid "Printer on SMB/Windows 95/98/NT server"
msgstr "Stampues nė server SMB/Windows 95/98/NT"

#: ../../printer/main.pm:1
#, c-format
msgid "Network printer (TCP/Socket)"
msgstr "Stampues Rrjeri vetiak (TCP/Socket)"

#: ../../printer/main.pm:1 ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer on remote lpd server"
msgstr "Stampues nė server tė distancės lpd"

#: ../../printer/main.pm:1
#, c-format
msgid "Printer on remote CUPS server"
msgstr "Stampues nė server tė distancės CUPS"

#: ../../printer/main.pm:1
#, c-format
msgid "Remote printer"
msgstr "Stampues nė distancė"

#: ../../printer/main.pm:1
#, c-format
msgid "Local printer"
msgstr "Stampues Lokal"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring applications..."
msgstr "Konfigurim i aplikacioneve..."

#: ../../printer/printerdrake.pm:1 ../../standalone/printerdrake:1
#, c-format
msgid "Printerdrake"
msgstr "Printerdrake"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do you want to configure another printer?"
msgstr "A dėshironi tė konfiguroni njė stampues tjetėr?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing printer \"%s\"..."
msgstr "Zhdukje e stampuesit \"%s\"..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do you really want to remove the printer \"%s\"?"
msgstr "A me tė vėrtet dėshironi ta tėrheqni stampuesin \"%s\"?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove printer"
msgstr "Zhduke stampuesin"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Know how to use this printer"
msgstr "Doracak i pėrdorimit tė kėtij stampuesi"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print test pages"
msgstr "Shtype faqen e testit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Failed to remove the printer \"%s\" from Star Office/OpenOffice.org/GIMP."
msgstr ""
"Dėshtim gjatė tėrheqjes sė stampuesit \"%s\" nga Star Office/OpenOffice.org/"
"GIMP."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully removed from Star Office/OpenOffice.org/"
"GIMP."
msgstr ""
"Stampuesi \"%s\" ėshtė tėrhjekur me sukses nga Star Office/OpenOffice.org/"
"GIMP."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing printer from Star Office/OpenOffice.org/GIMP"
msgstr "Zhdukje e stampuesit nga Star Office/OpenOffice.org/GIMP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove this printer from Star Office/OpenOffice.org/GIMP"
msgstr "Zhduke kėtė stampues nga Star Office/OpenOffice.org/GIMP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Failed to add the printer \"%s\" to Star Office/OpenOffice.org/GIMP."
msgstr ""
"Dėshtim gjatė shtimit tė stampuesit \"%s\" nė Star Office/OpenOffice.org/"
"GIMP."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" was successfully added to Star Office/OpenOffice.org/GIMP."
msgstr ""
"Stampuesi  \"%s\" ėshtė shtuar me sukses nė Star Office/OpenOffice.org/GIMP."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Adding printer to Star Office/OpenOffice.org/GIMP"
msgstr "Shtim i stampuesit nė Star Office/OpenOffice.org/GIMP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add this printer to Star Office/OpenOffice.org/GIMP"
msgstr "Shtoje kėtė stampues nė Star Office/OpenOffice.org/GIMP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The printer \"%s\" is set as the default printer now."
msgstr "Stampuesi  \"%s\" tani ėshtė stampues me marrėvshje."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Default printer"
msgstr "Stampues me marrėvshje"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Set this printer as the default"
msgstr "Zgjedhe si stampues me marrėveshje"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer options"
msgstr "Mundėsit e stampuesit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer manufacturer, model"
msgstr "Prodhuesi i stampuesit, modeli"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer manufacturer, model, driver"
msgstr "Prodhuesi i stampuesit, modeli, piloti"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing old printer \"%s\"..."
msgstr "Zhduke stampuesin e vjetėr \"%s\"..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer name, description, location"
msgstr "Emri i stampuesit, pėrshkrimi, lokaliteti"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer connection type"
msgstr "Tip i kyqjes sė stampuesit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Learn how to use this printer"
msgstr "Mėso mbi pėrdorimin e kėtij stampuesi"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Raw printer"
msgstr "Stampues me hyrje direkte"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do it!"
msgstr "Bėje atė!"

#: ../../printer/printerdrake.pm:1 ../../standalone/drakTermServ:1
#: ../../standalone/drakbackup:1 ../../standalone/drakbug:1
#: ../../standalone/drakfont:1 ../../standalone/net_monitor:1
#, c-format
msgid "Close"
msgstr "Mbylle"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer %s\n"
"What do you want to modify on this printer?"
msgstr ""
"Stampues %s\n"
"Ēfarė dėshironi tė ndryshoni nė kėtė stampues?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Modify printer configuration"
msgstr "Ndryshoje konfigurmin e stampuesit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add a new printer"
msgstr "Shto njė stampues tė ri"

#: ../../printer/printerdrake.pm:1 ../../standalone/drakconnect:1
#, c-format
msgid "Normal Mode"
msgstr "Modė Normal"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Change the printing system"
msgstr "Ndėrroje sistemin e stampimit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer sharing"
msgstr "Shpėrndarja e Stampuesit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "CUPS configuration"
msgstr "Konfigurim CUPS"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Refresh printer list (to display all available remote CUPS printers)"
msgstr ""
"Rifreskoje listėn e stampuesve (pėr tė ēfaqurė tė gjithė stampuesit nė "
"distancė CUPS)"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Stampuesit e radhitur janė tė konfiguruar. Kliko dyfishė nė njė stampues pėr "
"ti ndryshuar parametrat e tij; pėr tė krijuar njė stampues me marreveshje; "
"apo pėr tė ēfaqurė informacionet pėr tė."

#: ../../printer/printerdrake.pm:1
#, c-format
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/GIMP."
msgstr ""
"Stampuesit e radhitur janė tė konfiguruar. Kliko dyfishė nė njė stampues pėr "
"ti ndryshuar parametrat e tij, pėr tė krijuar njė stampues me marreveshje, "
"tė njė serveri CUPS nė distancė pėr Star Office/OpenOffice.org/GIMP."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing system: "
msgstr "Sistem stampues: "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Would you like to configure printing?"
msgstr "A dėshironi tė konfiguroni stampimin?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Preparing Printerdrake..."
msgstr "Pregatitje e Printerdrake..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking installed software..."
msgstr "Verifikim i programit tė instaluar..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing Foomatic..."
msgstr "Instalim i Foomatic..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Failed to configure printer \"%s\"!"
msgstr "Dėshtim i konfigurim tė stampuesit %s\"!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuring printer \"%s\"..."
msgstr "Konfigurim i stampuesit %s\"..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Reading printer data..."
msgstr "Lexim i tė dhėnave tė stmapuesit..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Which printing system (spooler) do you want to use?"
msgstr "Ēfarė sistemi stampues (spooler) dėshironi tė pėrdorni?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select Printer Spooler"
msgstr "Zgjedheni qeverisėsin e stampimit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing %s ..."
msgstr "Instalim i %s ..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Removing %s ..."
msgstr "Zhdukje e %s ..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printing system (%s) will not be started automatically when the machine "
"is booted.\n"
"\n"
"It is possible that the automatic starting was turned off by changing to a "
"higher security level, because the printing system is a potential point for "
"attacks.\n"
"\n"
"Do you want to have the automatic starting of the printing system turned on "
"again?"
msgstr ""
"Sistemi stampues (%s) nuk do tė aktivizohet automatikisht nė nisjen e "
"makinės me udhėzim.\n"
"\n"
"Ėshtė e mundur qė aktivizimi automatik tė jetė zhdukur nga njė pėrdoruues i "
"njė niveli mė tė lartė tė sigurisė, sepse sistemet e stampimit janė shenja "
"tė para tė sulmeve tė shpeshta.\n"
"\n"
"A dėshironi tė posedoni njė nisje automatike tė sistemit stampues?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Starting the printing system at boot time"
msgstr "Aktivizim i sistemit stampues, nė nisje tė udhėzuar"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You are about to install the printing system %s on a system running in the %"
"s security level.\n"
"\n"
"This printing system runs a daemon (background process) which waits for "
"print jobs and handles them. This daemon is also accessable by remote "
"machines through the network and so it is a possible point for attacks. "
"Therefore only a few selected daemons are started by default in this "
"security level.\n"
"\n"
"Do you really want to configure printing on this machine?"
msgstr ""
"Ju jeni nė pikėn e instalimit tė sistemit stampues %s nė njė sistem nė tė "
"cilin niveli i sigurisė ėshtė i rregulluar nė %s.\n"
"\n"
"Ky sistem i stampimit ndėgjon gjithnjė rrjetin qė mė nė fund tė mund ti "
"pėrgjigjet kėrksave shtypėse. Kjo bėhet me ndihmėn e procesuesit (daemon) i "
"cili sillet nė pikėn e fundit dhe ka hyrje pėr makina tė tjera tė rrjetit. D."
"m.th. ėshtė shenjė e mundur pėr sulme eventuale nga rrjeti. Dhe pėr atė "
"arėsye duhet tė niset njė minimum i mundur me marrėveshje i kėtij niveli tė "
"sigurisė.\n"
"\n"
"A me tė vėrtet dėshironi tė instaloni njė sistem stampimi?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing a printing system in the %s security level"
msgstr "Instalim i sistemit stampues ndėr nivel tė sigurisė %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "paranoid"
msgstr "paranojak"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "high"
msgstr "lartė"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Restarting printing system..."
msgstr "Rinisje e sistemit stampues..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configuration of a remote printer"
msgstr "Konfigurim i stampuesit nė distancė"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Hyrja nė rrjet nuk ėshtė nė nisje dhe nuk mund tė niset. Ju lutemi "
"verifikojeni konfigurimin dhe materialin tuaj. Mandej provoni tė konfiguroni "
"stampuesin tuaj edhe njė herė me ndihmėn e Qendrės Kontrolluese Mandrake."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The network configuration done during the installation cannot be started "
"now. Please check whether the network is accessable after booting your "
"system and correct the configuration using the Mandrake Control Center, "
"section \"Network & Internet\"/\"Connection\", and afterwards set up the "
"printer, also using the Mandrake Control Center, section \"Hardware\"/"
"\"Printer\""
msgstr ""
"Konfigurimi i rrjetit tė bėrė gjatė instalimit nuk mund tė niset tani. Ju "
"lutemi verifikoni nėse rrjeti juaj ėshtė aktivizuar mbasė nisjes. Niseni "
"duke pėrdorur Qendrėn Kontrolluese Mandrake, nė sektorin \"Rrjeti & Interneti"
"\"/\"Kyqja\", dhe provoni pėrsėri ta konfiguroni stampuesin tuaj nė sektorin "
"\"Materiali\"/\"Stampues\"."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Configure the network now"
msgstr "Konfogurim i rrjetit tani"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Go on without configuring the network"
msgstr "Vazhdo pa konfigurimin e rrjetit"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Ju gjindeni nė pikėn e konfigurimit tė stampuesit nė distancė. Kjo ka nevojė "
"pėr njė hyrje nė rrjet, mirėpo rrjeti i juaj nuk ėshtė i konfiguruar ende. "
"Nėse ju dėshironi tė vazhdoni pa e konfiguruar rrjetin tuaj, ju nuk keni "
"mundėsi ta pėrdorni stampuesin tuaj, tė cilin e konfiguroni tani. Qfarė "
"dėshironi tė bėni?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Network functionality not configured"
msgstr "Funksionimet e rrjetit nuk janė konfiguruar"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Starting network..."
msgstr "Nisje e rrjetit..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Refreshing printer data..."
msgstr "Azhurnim i tė dhėnave tė stampuesit..."

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Ju e keni trasferuar stampuesin tuaj tė mė parėm me marrėveshje (\"%s\"). A "
"duhet tė jetė njashtu, stampues me marrėveshje, ky sistem i ri stampimi %s?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Transfer printer configuration"
msgstr "Transferim i tė dhėnave tė konfigurimit tė stampuesit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Transferring %s..."
msgstr "Transferim i %s..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "New printer name"
msgstr "Emėr i ri i stampuesit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The printer \"%s\" already exists,\n"
"do you really want to overwrite its configuration?"
msgstr ""
"Stampuesi \"%s\" ekziston veēse,\n"
"a dėshironi me tė vėrtetė ta zėvendėsoni kėtė konfigurim?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Name of printer should contain only letters, numbers and the underscore"
msgstr ""
"Emri i stampuesit duhet tė posedoj vetėm shkronja, numėra dhe vija tė ulta "
"(_)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Transfer"
msgstr "Transfero"

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Njė stampues i emruar \"%s\" ekziston veēse ndėr %s.\n"
"Kliko mbi \"Transfero\" pėr ta zėvendėsuar.\n"
"Ju keni mundėsi njashtu tė futni njė emėr tė ri ose thjeshtė injorone kėtė "
"etapė."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do not transfer printers"
msgstr "Mos i transfero stampuesit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Mark the printers which you want to transfer and click \n"
"\"Transfer\"."
msgstr ""
"\n"
"Shėnoni stampuesit tė cilėt dėshironi ti transfaroni, dhe \n"
"klikoni mbi \"Transfero\"."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Also printers configured with the PPD files provided by their manufacturers "
"or with native CUPS drivers cannot be transferred."
msgstr ""
"\n"
"Njashtu stampuesit e konfiguruar me skedaret PPD tė furnizuar nė uzinat e "
"tyre apo me pilotėt CUPS nuk mund tė trasferohen."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"In addition, queues not created with this program or \"foomatic-configure\" "
"cannot be transferred."
msgstr ""
"Njashtu, nėse skedaret e rreshtuara tė cilat nuk janė krijuar me kėtė "
"program apo me \"foomatic-configure\" nuk mund tė trasferohen."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "LPD and LPRng do not support IPP printers.\n"
msgstr "LPD dhe LPRng nuk pėrkrahė stampues IPP.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"PDQ only supports local printers, remote LPD printers, and Socket/TCP "
"printers.\n"
msgstr ""
"PDQ pėrkrahė vetėm stampues lokal, stampues LPD nė distancė, dhe stampues tė "
"rrjetit autonom.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"CUPS does not support printers on Novell servers or printers sending the "
"data into a free-formed command.\n"
msgstr ""
"CUPS nuk pėrkrahė stmapues nė serverin Novell njashtu edhe shtypjet nė "
"drejtim tė urdhėrave nė shell.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can copy the printer configuration which you have done for the spooler %"
"s to %s, your current spooler. All the configuration data (printer name, "
"description, location, connection type, and default option settings) is "
"overtaken, but jobs will not be transferred.\n"
"Not all queues can be transferred due to the following reasons:\n"
msgstr ""
"Ju mund ta kopjoni konfigurimin e stampuesit tė krijuar pėr administrues %s "
"nė drejtim tė qeverisjes suaj tė tanishme %s. Tė gjitha tė dhėnat e "
"konfigurimit (emri i stampuesit, pėrshkrimi, vendosja, tipi i kyqjes, dhe "
"parametrat me marrėveshje) do tė rikuperohen, mirėpo punimet nuk do tė "
"trasferohen.\n"
"Tė gjitha rreshtimet e krijuara, nuk kanė mundėsi tė trasferohen pėr kėto "
"shkaqe:\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"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 "
"\"man mtools\" on the command line for more info). You find the card's file "
"system under the drive letter \"p:\", or subsequent drive letters when you "
"have more than one HP printer with photo card drives. In \"MtoolsFM\" you "
"can switch between drive letters with the field at the upper-right corners "
"of the file lists."
msgstr ""
"Stampuesi i juaj HP ėshtė konfiguruar automatikisht, pėr tė ju mundėsuar "
"hyrjen nė tė dhėnat e lexuesėve nė kartelėn e memorisė nga kompjuteri i "
"juaj. Tani ju mund hyni nė kartelat tuaja duke pėrdorur programin grafik "
"\"MtoolsFM\" (Menu: \"Aplikacionet\" -> \"Vegla tė Skedareve\" -> "
"\"Administrues i Skedareve MTools\") apo programin nė linjėn komanduese "
"\"mtools\" (futni \"man mtools\" nė linjėn komanduse pėr me shumė "
"informacione). Ju do tė hyni nė kartelė nė anėn e lexuesit duke poseduar "
"shkronjėn \"p:\", apo njė shkronjė tjetėr nėse ju posedoni njė aparat tjetėr "
"i tė njėjtit tip. Nė \"MtoolsFM\" ju mund tė kyqeni mes lexuesėve tė shumtė, "
"me ndihmėn e zonave, nė kėndin e lartė, dhe nė anėn e djathtė tė listės sė "
"skedareve."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Your multi-function device was configured automatically to be able to scan. "
"Now you can scan with \"scanimage\" (\"scanimage -d hp:%s\" to specify the "
"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 "
"information.\n"
"\n"
"Do not use \"scannerdrake\" for this device!"
msgstr ""
"Aparati i juaj me shumė-funksione HP ėshtė konfiguruar automatikisht, qė tė "
"jetė nė gjendje tė gatshme pėr skanim. Tani ju mund tė skanoni me ndihmėn e "
"\"scanimage\" (\"scanimage -d hp:%s\" pėr tė specifikuar nėse ju posedoni mė "
"shumė se njė) nga linja komanduese, apo me interface grafik sikur "
"\"xscanimage\" ose \"xsane\". Nėse ju e pėrdorni GIMP, ju mund ta skanoni me "
"ndihmėn e menusė \"Skedare\"/\"Pėrfitim\". Pėr mė shumė informacione, ju "
"mund tė shtypni urdhėrin \"man scanimage\" nė linjėn komanduese.\n"
"\n"
"Mos e pėrdorni \"scannerdrake\" pėr kėtė aparat!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing test page(s)..."
msgstr "Shtypja e faqe(ve) test..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print option list"
msgstr "Shtype listėn e mundėsine pėr stampim"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing on the printer \"%s\""
msgstr "Shtypje nė stampuesin \"%s\""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing/Photo Card Access on \"%s\""
msgstr "Stampim/Hyrjet e Kartelave Fotografike nė \"%s\""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing/Scanning on \"%s\""
msgstr "Stampim/Skanim nė \"%s\""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printing/Scanning/Photo Cards on \"%s\""
msgstr "Stampim/Skanim/Kartel Fotografike nė \"%s\""

#: ../../printer/printerdrake.pm:1
#, 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 ""
"Pėr ta pėrfituar listėn e parametrave nė disponibilitet pėr stampuesin e "
"tanishėm, lexoni listėn e poshtė shėnuar apo klikoni mbi ēelėsin \"Shtype "
"listėn e mundėsive \" button.%s%s\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"The \"%s\" and \"%s\" commands also allow to modify the option settings for "
"a particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\".\n"
msgstr ""
"\n"
"Urdhėrat \"%s\" dhe \"%s\" mundėsojnė njashtu tė ndryshoni parametrat e "
"stampimit pėr njė shtypje tė veqantė. Ėshtė e mjaftueshme qė ti shtoni "
"parametrat edėshiruar mbi linjėn komanduese. Pėr shembull  \"%s <skedare>"
"\".\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can also use the graphical interface \"xpdq\" for setting options and "
"handling printing jobs.\n"
"If you are using KDE as desktop environment you have a \"panic button\", an "
"icon on the desktop, labeled with \"STOP Printer!\", which stops all print "
"jobs immediately when you click it. This is for example useful for paper "
"jams.\n"
msgstr ""
"Ju keni mundėsin qė ta pėrdorni irterfacin grafik \"xpdq\" pėr mundėsin e "
"rregullimit dhe tė punėve administruese gjatė shtypjes.\n"
"Nėse ju jeni duke pėrdorur tryezėn KDE, ju posedoni njė \"ēelės panik\", nė "
"njė ikonė tė tryezės, tė etiketuar me \"NDALE Stampuesin!\", i cili do tė "
"ndalė shtypjet nė vazhdim e sipėr. Kjo mund tė pėrdoret nė raste tė blokimit "
"tė njė letre nė stampues.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Kėtė urdhėr ju keni mundėsi ta pėrdorni njashtu edhe nė zonėn \"Urdhėr "
"stampimi\" nė kutinė e dialogut stampues mė me shumė aplikacione. Nė kėtė "
"rast, mos e fytni emrin e skedares pėr ta shtypur, sepse do tė furnozohet "
"nga i njėjti aplikacion.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\" or \"%s <file>\".\n"
msgstr ""
"Pėr tė shtypur njė skedare nga linja komanduese (dritare terminali) pėrdore "
"urdhėrin \"%s <skedare>\" ose \"%s <skedare>\".\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To get a list of the options available for the current printer click on the "
"\"Print option list\" button."
msgstr ""
"Pėr ta pėrfituar listėn e parametrave nė disponibilitet pėr stampuesin e "
"tanishėm, klikoni mbi ēelėsin \"Shtype listėn e mundėsive \"."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"The \"%s\" command also allows to modify the option settings for a "
"particular printing job. Simply add the desired settings to the command "
"line, e. g. \"%s <file>\". "
msgstr ""
"\n"
"Urdhėri \"%s\" mundėson njashtu tė ndryshoni parametrat e stampimit pėr njė "
"shtypje tė veqantė. Ėshtė e mjaftueshme qė ti shtoni parametrat e dėshiruar "
"mbi linjėn komanduese. Pėr shembull \"%s <skedare>\". "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) use the command \"%s "
"<file>\".\n"
msgstr ""
"Pėr tė shtypur njė skedare nga linja komanduese (dritare terminali) pėrdore "
"urdhėrin \"%s <skedare>\".\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Here is a list of the available printing options for the current printer:\n"
"\n"
msgstr ""
"Ja pra lista e mundėsive nė disponibilitet e stampimit, pėr stampuesin e "
"tanishėm:\n"
"\n"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Kėta urdhėra ju mund ti pėrdorni edhe nė zonat \"Urdhėr stampues\" nė kutinė "
"e dialogut stampues mė me shumė aplikacione. Nė kėtė rast ju nuk duhet ta "
"futni emrin e skedares sepse ajo do tė furnizohet nga i njėjti aplikacion.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"To print a file from the command line (terminal window) you can either use "
"the command \"%s <file>\" or a graphical printing tool: \"xpp <file>\" or "
"\"kprinter <file>\". The graphical tools allow you to choose the printer and "
"to modify the option settings easily.\n"
msgstr ""
"Pėr tė stampuar njė skedare nga linja komanduese (dritare terminali), ju "
"mund pėrdorni urdhėrin \"%s <file>\" apo pėrdoruesin e stampimit grafik: "
"\"xpp <file>\" ose \"kprinter <file>\". Pėrdoruesit grafik ju mundėsojnė tė "
"zgjedhni stampuesin dhe tė ndryshoni parametrat e stampimit shumė lehtė.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Did it work properly?"
msgstr "A jeni i kėnaqur me stampimin?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
msgstr ""
"Faqja e testit ėshtė dėrguar nė stampues.\n"
"Kėsaj etape i nevojiten disa minuta para se tė filloj stampimi i faqeve.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Test page(s) have been sent to the printer.\n"
"It may take some time before the printer starts.\n"
"Printing status:\n"
"%s\n"
"\n"
msgstr ""
"Faqja e testit ėshtė dėrguar nė stampues.\n"
"Kėsaj etape i nevojiten disa minuta para se tė filloj stampimi i faqeve.\n"
"Statiti i stampimit:\n"
"%s\n"
"\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do not print any test page"
msgstr "Mos shtypė asnjė faqe testi"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Photo test page"
msgstr "Faqe e testit foto"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Alternative test page (A4)"
msgstr "Faqe e testit alternativė (A4)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Alternative test page (Letter)"
msgstr "Faqe e testit alternativė (Letėr)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Standard test page"
msgstr "Test i faqes standard"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print"
msgstr "Shtyp"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "No test pages"
msgstr "Asnjė test i faqeve"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Ju lutemi zgjedhni faqet e testit tė cilat dėshironi ti shtypni.\n"
"Shėnim: faqja e testit me foto, mund tė merrė njė kohė tė gjatė qė tė "
"shtyppet tėrėsisht, kurse me stampues lazer dhe mė me pakė memori ėshte e "
"mundur qė ajo nuk shtypet fare, mirėpo nė shumicėn e rasteve testi standart "
"ėshtė i mjaftueshėm."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Test pages"
msgstr "Test faqet"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Do you want to set this printer (\"%s\")\n"
"as the default printer?"
msgstr ""
"A dėshironi ta rregulloni kėtė stampues (\"%s\")\n"
"si stampues me marrėveshje?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s out of range!"
msgstr "Mudėsia %s jashtė kufirit!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be a number!"
msgstr "Mudėsia %s duhet tė jetė njė numėr!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Option %s must be an integer number!"
msgstr "Mundėsia %s duhet tė jetė njė numėr i plotė!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printer default settings\n"
"\n"
"You should make sure that the page size and the ink type/printing mode (if "
"available) and also the hardware configuration of laser printers (memory, "
"duplex unit, extra trays) are set correctly. Note that with a very high "
"printout quality/resolution printing can get substantially slower."
msgstr ""
"Rregullim i stampuesit me marrėveshje\n"
"\n"
"Ju duhet tė jeni i sigurt se madhėsia e faqės dhe tipi i ngjyrės (nėse ėshtė "
"nė disponibilitet) janė tė paraqiturė nė mėnyrė korrekte. Shėnim nėse "
"shpejtėsia e stampimit zvogėlohet d.m.th se ju e zmadhoni kualitetin e "
"stampimit."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Your printer belongs to the group of GDI laser printers (winprinters) sold "
"by different manufacturers which uses the Zenographics ZJ-stream raster "
"format for the data sent to the printer. The driver for these printers is "
"still in a very early development stage and so it will perhaps not always "
"work properly. Especially it is possible that the printer only works when "
"you choose the A4 paper size.\n"
"\n"
"Some of these printers, as the HP LaserJet 1000, for which this driver was "
"originally created, need their firmware to be uploaded to them after they "
"are turned on. In the case of the HP LaserJet 1000 you have to search the "
"printer's Windows driver CD or your Windows partition for the file "
"\"sihp1000.img\" and upload the file to the printer with one of the "
"following commands:\n"
"\n"
"     lpr -o raw sihp1000.img\n"
"     cat sihp1000.img > /dev/usb/lp0\n"
"\n"
"The first command can be given by any normal user, the second must be given "
"as root. After having done so you can print normally.\n"
msgstr ""
"Stampuesi i juaj i pėrketė grupit tė stampuesve lazer GDI (me pėrcaktim tė "
"winprinters) tė shitur nga uzina tė ndryshme, dhe tė cilėt i pėrdorin forma "
"tė trameve Zenographics ZJ-stream, pėr tė dhėnat e dėrguara nė stampues. "
"Piloti pėr kėta stampues ėshtė ende nė gjendje punimi dhe ėshtė e mundur qė "
"nuk  do tė funksionoj nė mėnyrė tė duhur. Mė sė shpeshti, njė formė tjetėr "
"A4 pėr letėr tė zgjedhur mund tė jetė njė problem pėr tė.\n"
"\n"
"Disa nga kėta stampues, si pėr shembull HP LaserJet 1000, pėr tė cilėt ky "
"pilotė ėshtė i shkruar me origjinėn e vetė, kanė nevojė pėr njė ndezje qė tė "
"kenė mundėsi tė ngarkojnė kodin e tyre nė memori. Nė kėtė rast tė HP "
"LaserJet 1000, ju duhet ta kėrkoni skedaren \"sihp1000.img\" e cila ėshtė e "
"furnizuar me CD-nė e stampuesit apo nė ndarjen tuaj Windows, dhe dėrgojeni, "
"kėtė skedare, nė memori tė stampuesit me njė nga urdhėrat vijues:\n"
"\n"
"     lpr -o raw sihp1000.img\n"
"     cat sihp1000.img > /dev/usb/lp0\n"
"\n"
"Urdhėri i parė mund tė niset nga njė pėrdorues normal, i dyti duhet tė jeni "
"pėrdorues administrator (root). Mandej ju mund tė stamponi normalisht me "
"tė.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "GDI Laser Printer using the Zenographics ZJ-Stream Format"
msgstr "Stampues lazer GDI me Formė Zenographics ZJ-Stream"

#: ../../printer/printerdrake.pm:1
#, c-format
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."
"com/). Click on the \"Drivers\" link. Then choose your model and afterwards "
"\"Linux\" as operating system. The drivers come as RPM packages or shell "
"scripts with interactive graphical installation. You do not need to do this "
"configuration by the graphical frontends. Cancel directly after the license "
"agreement. Then print printhead alignment pages with \"lexmarkmaintain\" and "
"adjust the head alignment settings with this program."
msgstr ""
"Qė mė nė fund tė keni mundėsi, tė stamponi me stampuesin tuaj Lexmark "
"inkjet, me konfigurimin e tanishėm, ju keni nevojė pėr pilotė stampimi "
"inkjet tė furnizuar nga Lexmark (http://www.lexmark.com/). Klikoni nė "
"lidhjen \"Drivers\".Zgjedheni modelin tuaj dhe nė fund si sistem eksploatimi "
"zgjedheni \"Linux\". Pilotėt, janė pako RPM, apo skripte shell me njė "
"instalim grafikė tė aktivizuar nė mbrendėshmėri. Ju nuk keni nevojė ta bėni "
"kėtė konfigurim me interfac grafikė. Anulojeni direkt mbasi qė ta pranoni "
"licencėn. Mandej stamponi faqet pėr tėrreshtuar pjesėn e lartė tė faqeve me "
"\"lexmarkmaintain\" dhe rregulloni parametrat e tyre me kėtė program."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Lexmark inkjet configuration"
msgstr "Konfigurim i stampuesit Lexmark inkjet"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Pilotėt e stampimit inkjet tė furnizuar nga Lexmark pranojnė tė pėrdoren me "
"stampues lokal, dhe jo stampues nė distancė apo ata server. Ju lutemi, "
"kyqeni stampuesin tuaj nė njė portė lokale, ose konfigurojeni atė, nė "
"makinėn qė ėshtė i kyqur."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You are configuring an OKI laser winprinter. These printers\n"
"use a very special communication protocol and therefore they work only when "
"connected to the first parallel port. When your printer is connected to "
"another port or to a print server box please connect the printer to the "
"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 ""
"Ju jeni duke konfiguruar njė stampues lazer OKI winprinter. Kėta stampues\n"
"pėrdorin njė protokol tė komunikimit special, dhe funlsionojnė vetėm nėse "
"ata janė tė kyqur nė portėn e parė paralele. Nėse stampuesi i juaj ėshtė i "
"kyqur nė njė portė apo server tjetėr stampimi, atėherė ju duhet ta kyqni nė "
"portėn e parė paralele para se ta stamponi faqen e testit. Pa kėtė, "
"stampuesi nuk do tė funksionon, dhe tė gjithė parametrat e kyqjes do tė "
"injorohen nga piloti. "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "OKI winprinter configuration"
msgstr "Konfigurim i stampuesit OKI winprinter"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"If your printer is not listed, choose a compatible (see printer manual) or a "
"similar one."
msgstr ""
"Nėse stampuesi i juaj nuk gjindet nė listėn e shfletuar, zgjedheni njėrin "
"nga kėta qė i pėrshtatet (shiqo nė manuelin e stampuesit) apo diēka tė "
"ngjajshėm."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"\n"
"Please check whether Printerdrake did the auto-detection of your printer "
"model correctly. Find the correct model in the list when a wrong model or "
"\"Raw printer\" is highlighted."
msgstr ""
"\n"
"\n"
"Ju lutemi verifikoni, nėse Printerdrake ka zbuluar-automatikisht stampuesin "
"tuaj nė mėnyrė korrekte. Kėrkojeni modelin e vėrtetė nė atė listė nėse "
"kursori qėndron nė nė model tė gabuar apo nė \"Stampues Raw\"."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Which printer model do you have?"
msgstr "Ēfarė modeli tė stampuesit posedoni ju?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer model selection"
msgstr "Zgjedhja e modelit tė stampuesit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Reading printer database..."
msgstr "Laxim i bazės sė tė dhėnave tė stampuesve..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select model manually"
msgstr "Zgjedhe modelin manuelisht"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The model is correct"
msgstr "Modeli ėshtė korrekt"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Printerdrake has compared the model name resulting from the printer auto-"
"detection with the models listed in its printer database to find the best "
"match. This choice can be wrong, especially when your printer is not listed "
"at all in the database. So check whether the choice is correct and click "
"\"The model is correct\" if so and if not, click \"Select model manually\" "
"so that you can choose your printer model manually on the next screen.\n"
"\n"
"For your printer Printerdrake has found:\n"
"\n"
"%s"
msgstr ""
"Emri i modelit si rrezultat gjatė zbulimit automatikė, ėshtė krahasuar nė "
"bazėn e tė dhėnave tė stampuesve pėr tė gjetur korrespondencė mė tė mirė. "
"Kjo zgjidhje mund tė jetė e pa pranueshme, veqanėrishtė nėse modeli juaj i "
"stampuesit nuk paraqitet nė bazėn e tė dhėnave. Verifikoni kėtė zgjedhje dhe "
"klikoni mbi \"Modeli ėshtė korrekt\", nėse jo klikoni mbi \"Zgjedheni "
"modelin manuel\" me kėtė ju mund tė zgjedhni modelin e stapuesit tuaj "
"manuelishtė.\n"
"\n"
"Stampuesi juaj ėshtė zbuluar nga Printerdrake sikur:\n"
"\n"
"%s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Your printer model"
msgstr "Modeli i stampuesit tuaj"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Preparing printer database..."
msgstr "Pregatitje e bazės sė tė dhėnave tė stampuesve..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Location"
msgstr "Lokalizim"

#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Description"
msgstr "Pėrshkrim"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Name of printer"
msgstr "Emri i stampuesit"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Gjdo stampuesi i nevojitet njė emėr (pėr shembull \"stampues\"). Pėrshkrimi "
"dhe Lokalizimi e zonave nuk ka nevojė tė mbushet. Janė komente tė thjeshta "
"pėr pėrdorues."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Enter Printer Name and Comments"
msgstr "Futni emrin e Stampuesit dhe Komentimet"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Making printer port available for CUPS..."
msgstr "Krijim i njė porte tė lirė pėr stampues CUPS..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Photo memory card access on your HP multi-function device"
msgstr ""
"Memori fotografike me kartelė hyrėse nė mjetin tuaj multi-funksionues HP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Scanning on your HP multi-function device"
msgstr "Skanim i mjetit tuaj HP multi-funksionues"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing mtools packages..."
msgstr "Intalim i pakove tė mtools..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing SANE packages..."
msgstr "Intalim i pakove SANE..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking device and configuring HPOJ..."
msgstr "Verifikim i mjetit dhe konfigurimi i HPOJ..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Installing HPOJ package..."
msgstr "Intalim i pakove HPOJ..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Is your printer a multi-function device from HP or Sony (OfficeJet, PSC, "
"LaserJet 1100/1200/1220/3200/3300 with scanner, Sony IJP-V100), an HP "
"PhotoSmart or an HP LaserJet 2200?"
msgstr ""
"A ėshtė stampuesi juaj multi-funksionues nga mjetet HP apo Sony (OfficeJet, "
"PSC, LaserJet 1100/1200/1220/3200/3300 me skaner, Sony IJP-V100), nė HP "
"PhotoSmart ose nė HP LaserJet 2200?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "A command line must be entered!"
msgstr "Njė urdhėr i pranueshėm nė linjė duhet tė futet!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Command line"
msgstr "Urdhėr nė linjė"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Here you can specify any arbitrary command line into which the job should be "
"piped instead of being sent directly to a printer."
msgstr ""
"Kėtu ju mund tė specifikoni gjdo urdhėr nė linjė, nė cilin job duhet tė "
"kyqet tė ngjitete tė dėrgohet direkt nė stampues"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Pipe into command"
msgstr "Ngjite nė njė urdhėr"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Detected model: %s %s"
msgstr "Model i zbuluar: %s %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "A valid URI must be entered!"
msgstr "Njė adresė e pranueshme duhet tė futet!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Device URI"
msgstr "Adresa e rrjetit tė mjetit stampues"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Nėse nu e njifni adresėn e rrjetit, ju mund ta sepcifikoni menjėherė nė "
"(URL) e cila ju mundėson tė hyni nė stampues. Zgjedheni fillimin e njė letre "
"dhe kompletone adresėn duke respektuar specifikacionet CUPS apo Foomatic. "
"Shėnoni se tė gjitha llojet e URL nuk mund tė pėrmbahen me tė gjitha "
"qeverisjet stampuese."

#: ../../printer/printerdrake.pm:1 ../../standalone/harddrake2:1
#, c-format
msgid "Port"
msgstr "Porta"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer host name or IP"
msgstr "Emri i ftuesit apo i IP"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The port number should be an integer!"
msgstr "Numri i portės duhet tė jetė njė numėr i plotė!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer host name or IP missing!"
msgstr "Emri i ftuesit apo i IP mungon!"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Pėr tė stampuar nė njė stampues TCP apo socket, ju duhet tė pėrcaktoni emrin "
"e ftuesit tė stampuesit, dhe mundesishtė numrin e portės. Pėr servert "
"stampues HP JetDirect, numri i portės ėshtė zakonisht 9100, mirėpo kjo mund "
"tė jetė endryshme pėr server tė tjerė. Konsultone doracakun e stampuesit "
"tuaj."

#: ../../printer/printerdrake.pm:1
#, c-format
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) in the input fields."
msgstr ""
"Zgjedheni njė stampues nga kėta qė janė zbuluar, apo hyni njė emėr tė "
"makinės, ose njė adrese IP dhe numrin e portės (me marrėveshje qė ėshtė "
"9100) nė hyrje tė zonės."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "TCP/Socket Printer Options"
msgstr "Mundėsit pėr Stampues tė rrjetit (TCP/Socket)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Host \"%s\", port %s"
msgstr "Ftues \"%s\", porta %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", host \"%s\", port %s"
msgstr ", ftues \"%s\", porta %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Scanning network..."
msgstr "Vėzhgim i rrjetit..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection"
msgstr "Zbulim automatik i stampuesve"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP queue name missing!"
msgstr "Emri i rreshtit NCP mungon!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NCP server name missing!"
msgstr "Emri i Serverit NCP mungon!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Print Queue Name"
msgstr "Stampo Emrin e Rreshtit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer Server"
msgstr "Server Stampues"

#: ../../printer/printerdrake.pm:1
#, c-format
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 "
"print queue name for the printer you wish to access and any applicable user "
"name and password."
msgstr ""
"Qė tė keni mundėsin pėr ta pėrdorur njė stampues tė kyqur nė njė server "
"Netware, ju duhet mė se paku tpėrcaktoni emrin e tij (i cili mund tė jetė i "
"i ndryshėm me emrin ftues TCP/IP) dhe me emrin e rreshtit stampues nė tė "
"cilin ju keni mundėsi tė hyni vetėm njė emėr tė pėrdoruesit (login) dhe njė "
"parullė."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "NetWare Printer Options"
msgstr "Mundėsit e Stampuesit NetWare"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Kyqni stampuesin tuaj nė serverin Linux dhe lejoni qė makina Windows tė "
"kyqet sikur musafirė.\n"
"\n"
"A me tė vėrtet dėshironi tė vazhdoni rregullimin e ketij stmapuesi nė kėtė "
"mėnyrė?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Set up your Windows server to make the printer available under the IPP "
"protocol and set up printing from this machine with the \"%s\" connection "
"type in Printerdrake.\n"
"\n"
msgstr ""
"Parametrizoni serverin tuaj Windows qė mė nė fund stampuesi tė jetė i lirė "
"ndėr protokolin IPP, dhe rregullojeni stampimin nga kjo makinė me kėtė tip  "
"\"%s\" kyqės nė Printerdrake.\n"
"\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You are about to set up printing to a Windows account with password. Due to "
"a fault in the architecture of the Samba client software the password is put "
"in clear text into the command line of the Samba client used to transmit the "
"print job to the Windows server. So it is possible for every user on this "
"machine to display the password on the screen by issuing commands as \"ps "
"auxwww\".\n"
"\n"
"We recommend to make use of one of the following alternatives (in all cases "
"you have to make sure that only machines from your local network have access "
"to your Windows server, for example by means of a firewall):\n"
"\n"
"Use a password-less account on your Windows server, as the \"GUEST\" account "
"or a special account dedicated for printing. Do not remove the password "
"protection from a personal account or the administrator account.\n"
"\n"
"Set up your Windows server to make the printer available under the LPD "
"protocol. Then set up printing from this machine with the \"%s\" connection "
"type in Printerdrake.\n"
"\n"
msgstr ""
"Ju jeni nė pikėn e parametrave tė stampimit nė njė drejtim tė Windows(it) me "
"parullė. Pėr shkakė tė njė gabimi nė konceptin e njė programi klient Samba, "
"parulla ėshtė shkruar nė mėnyrė tė qartė nė linjėn komanduese qė e dėrgon, "
"pėr tė transferuar punėn e stampimit nė njė server Windows. Pra ėshtė e "
"mundur pėr ēfarėdo pėrdoruesi tė kėsaj makine, tė ēfaqė nė ekran kėtė "
"parullė, thjeshtė duke shtypur njė urdhėr sikur \"ps auxwww\".\n"
"\n"
"Ne ju propozojmė qė tė pėrdorni zgjedhjet alternative me radhė (nė tė gjitha "
"rastet, ju duhet tė jeni i sigurt se vetėm makinat tuaja tė rrjetit lokal "
"mund tė hynė nė serverin tuaj Windows, me ndihmėn e murit-tė-zjarrtė program "
"pėr shembull (firewall)):\n"
"\n"
"Pėrdoreni njė konto pa parullė nė serverin tuaj Windows, sikur njė konto "
"\"MUSAFIRĖ\", apo njė konto enkasė vetėm pėr stampim.Mos e hiqni mbrojtjen e "
"njė kontoje me Pėrdoruesė apo Administrator.\n"
"\n"
"Parametrizoni serverin tuaj Windows qė mė nė fund, stampuesit tė jenė "
"nėdisponibilitet ndėr protokolin LPD. Mandej rregulloni stampimin e kėsaj "
"makine me tip tė kyqjes \"%s\" nė Printerdrake.\n"
"\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SECURITY WARNING!"
msgstr "VĖREJTJE SIGURIE!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Samba share name missing!"
msgstr "Emri shpėrndarės Samba mungon!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Either the server name or the server's IP must be given!"
msgstr "Ju duhet mė sė paku tė precizoni emrin e serverit apo adresėn IP!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detected"
msgstr "Auto-Zbulim"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Workgroup"
msgstr "Grupi Punues"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Share name"
msgstr "Emri shpėrndarės"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server IP"
msgstr "Adresa IP e serverit SMB"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB server host"
msgstr "Ftuesi server SMB"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
" Nėse stampuesi i dėshiruar ėshtė zbuluar automatikisht, zgjedheni nga "
"lista, dheshtoni njė emėr tė pėrdoruesit, parullėn e grupit punues nėse "
"ėshtė e nevojshme."

#: ../../printer/printerdrake.pm:1
#, c-format
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 "
"the print server, as well as the share name for the printer you wish to "
"access and any applicable user name, password, and workgroup information."
msgstr ""
"Qė mė nė fund tė stamponi me stampues SMB, ju duhet tė futni emrin e "
"serverit SMB, (kujdes, ky mund tė jetė i ndryshėm nga ai me emrin ftues TCP/"
"IP!) njashtu mund qė adresa IP dhe emri i stampuesit, duke marrė parasysh tė "
"gjitha funksionet aplikuese tė pėrdoruesve, parulla e grupeve punuese ėshtė "
"e novojshme pėr tė hyrė nė atė stampues."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "SMB (Windows 9x/NT) Printer Options"
msgstr "Konfigurim i njė stampuesi SMB (Windows 9x/NT)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on server \"%s\""
msgstr "Stampues \"%s\" mbi server \"%s\""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", printer \"%s\" on server \"%s\""
msgstr ", stampues \"%s\" mbi server \"%s\""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote printer name missing!"
msgstr "Emri i stampuesit mungonė!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote host name missing!"
msgstr "Emri i ftuesit nė distancė mungonė!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote printer name"
msgstr "Emri i stampuesit"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote host name"
msgstr "Emri ftues i serverit"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Pėr tė pėrdorur njė stampues lpd, ju duhet ta shėnoni emrin e ftuesit tė "
"serverit LPD, dhe emrin e shpėrndarė tė atij stampuesi nga i njėjti server."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remote lpd Printer Options"
msgstr "Konfigurim i njė stampuesi lpd"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Manual configuration"
msgstr "Konfigurim manuel"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must choose/enter a printer/device!"
msgstr "Ju duhet tė zgjedhni apo tė futni njė stampues ose njė mjet!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
" (Parallel Ports: /dev/lp0, /dev/lp1, ..., equivalent to LPT1:, LPT2:, ..., "
"1st USB printer: /dev/usb/lp0, 2nd USB printer: /dev/usb/lp1, ...)."
msgstr ""
" (Portat Paralele: /dev/lp0, /dev/lp1, ..., njėjtė sikur to LPT1:, "
"LPT2:, ..., stampues 1-rė USB: /dev/usb/lp0, stampues 2-tė USB: /dev/usb/"
"lp1, ...)."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Please choose the port that your printer is connected to."
msgstr "Ju lutemi zgjedheni portėn nė tė cilėn stampuesi juaj ėshtė i kyqur."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Please choose the port that your printer is connected to or enter a device "
"name/file name in the input line"
msgstr ""
"Ju lutemi zgjedheni portėn nė tė cilėn stampuesi juaj ėshtė i kyqur, ose "
"futni emrin e mjetit apo tė skedares nė linjėn hyrėse"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Please choose the printer to which the print jobs should go."
msgstr "Ju lutemi zgjedheni stampuesin nė tė cilėn do tė shtypet puna (job)."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"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 ""
"Zgjedheni njėrin stampues tė cilin dėshironi ta instaloni. Konfigurimi i "
"stampuesit do tė funksionoj nė mėnyrė automatike. Nėse stampuesi juaj nuk "
"ėshtė zbuluar nėmėnyrė korrekte, apo nėse dėshironi njė konfigurim personel, "
"aktivizojeni \"Konfigurim Manuel\"."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Here is a list of all auto-detected printers. "
msgstr "Lista e tė gjithė stampuesve tė zbuluar automatikisht. "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Currently, no alternative possibility is available"
msgstr "Kėtu nuk ka mundėsi alternative"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"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 ""
"Konfigurimi i kėtij stampuesi do tė bėhet nė menyrė automatike. Nėse ai nuk "
"ėshtė zbuluar nė mėnyrė korrekte, apo dėshironi tė bėni njė konfigurim "
"personel, aktivizoni \"Konfigurim Manuel\"."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The following printer was auto-detected. "
msgstr "Stampuesit me radhė ėshtė zbuluat automatikisht. "

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Please choose the printer to which the print jobs should go or enter a "
"device name/file name in the input line"
msgstr ""
"Ju lutemi zgjedheni stampuesin nė tė cilin duhet tė shtypen punėt (jobs), "
"ose futni emrin/skedaren e mjetit nė linjėn hyrėse"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Please choose the printer you want to set up or enter a device name/file "
"name in the input line"
msgstr ""
"Ju lutemi zgjedheni stampuesin i cili duhte tė rregullohet, ose futni emrin/"
"skedaren e mjetit nė linjėn hyrėse"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Alternatively, you can specify a device name/file name in the input line"
msgstr ""
"Altenativisht ju keni mundėsi tė sepcifikoni mjetin me emrin/skedaren, nė "
"linjėn hyrėse"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"If it is not the one you want to configure, enter a device name/file name in "
"the input line"
msgstr ""
"Nėse nuk ėshtė, ai tė cilin dėshironi ta konfiguronioni, futni emrin/"
"skedaren e mjetit nė linjėn hyrėse"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Available printers"
msgstr "Stampuesit disponible"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "No printer found!"
msgstr "Asnjė stapues i gjetur!"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "You must enter a device or file name!"
msgstr "Ju duhet tė futni emrin e mjetit, apo tė skedares!"

#: ../../printer/printerdrake.pm:1
#, c-format
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 ""
"Asnjė stampues lokal seshtė gjetur! Pėr ta instaluar nė mėnyrė manuele "
"hyniemrin e mjetit apo tė skedares mbi linjėn hyrėse (Portat paralele: /dev/"
"lp0, /dev/lp1, ..., e njėjtė me LPT1:, LPT2:, ..., stampuesin e 1-rė USB: /"
"dev/usb/lp0,stampues 2-tė USB: /dev/usb/lp1, ...)."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Local Printer"
msgstr "Stampues Lokal"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "USB printer \\#%s"
msgstr "Stampues USB \\#%s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer on parallel port \\#%s"
msgstr "Stampues nė portėn paralele \\#%s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer \"%s\" on SMB/Windows server \"%s\""
msgstr "Stampues \"%s\" mbi serverin SMB/Windows \"%s\""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Network printer \"%s\", port %s"
msgstr "Stampues rrjeti \"%s\", porta %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Detected %s"
msgstr "I Zbuluar %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", printer \"%s\" on SMB/Windows server \"%s\""
msgstr ", stampues \"%s\" mbi server SMB/Windows \"%s\""

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ", network printer \"%s\", port %s"
msgstr ", stampues rrjeti \"%s\", porta %s"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Congratulations, your printer is now installed and configured!\n"
"\n"
"You can print using the \"Print\" command of your application (usually in "
"the \"File\" menu).\n"
"\n"
"If you want to add, remove, or rename a printer, or if you want to change "
"the default option settings (paper input tray, printout quality, ...), "
"select \"Printer\" in the \"Hardware\" section of the Mandrake Control "
"Center."
msgstr ""
"\n"
"Urime, stampuesi juaj ėshtė instaluar dhe konfiguruar!\n"
"\n"
"Ju mund tė stamponi duke pėrdorur urdhėrinė \"Stampo\" nė aplikacionin tuaj "
"(mė sė shpeshti gjindet nė menu \"Skedare\").\n"
"Nėse ju dėshironi, tė shtoni, zhdukni, apo ri-emroni njė satmpues, ose "
"dėshironi tia ndryshoni mundėsit e tij me marrėveshje (hyrja e letrės, "
"kualiteti i stampimit, etj) shkoni tek \"Stampuesi\" nė zgjedhjen \"Materiali"
"\"tek seksioni Qendra Kontrolluese Mandrake."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected to machines running Microsoft Windows"
msgstr ""
"Zbulo automatikisht stampuesit e kyqur nė kėtė makinė, duke u nisur nė "
"Microsoft Windows"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected directly to the local network"
msgstr "Zbulo automatikisht stampuesit e kyqur direkt nė rrejtin lokal"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Auto-detect printers connected to this machine"
msgstr "Zbulo automatikisht stampuesit e kyqur nė kėtė makinė"

#: ../../printer/printerdrake.pm:1
#, c-format
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"
"If you have printer(s) connected to this machine, Please plug it/them in on "
"this computer and turn it/them on so that it/they can be auto-detected.\n"
"\n"
" Click on \"Next\" when you are ready, and on \"Cancel\" if you do not want "
"to set up your printer(s) now."
msgstr ""
"\n"
"Mirė se vini nė Asistentin pėr Konfigurimin e Stampuesit\n"
"\n"
"Ky asistent do tė ju ndihmojė qė ta instaloni stampuesin(t) tuaj tė kyqur nė "
"kėtė kompjuter.\n"
"\n"
"Nėse keni kyqur stampues nė kėtė kompjuter, ju lutemi kyqni ata/nė kėtė "
"kompjuter ndizni ata/hė, qė mė nė fund ata/tė zbulohen automatikisht.\n"
"\n"
"Klikoni mbi \"Tjetri\" kur ju jeni gati, dhe mbi \"Anulo\" nėse ju, nuk "
"dėshironi ta konfiguroni stampuesin(t)."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\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 it/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\" if you do not want "
"to set up your printer(s) now."
msgstr ""
"\n"
"Mirė se vini nė Asistentin pėr Konfigurimin e Stampuesit\n"
"\n"
"Ky asistent do tė ju ndihmojė qė ta instaloni stampuesin(t) tuaj tė kyqur nė "
"kėtė kompjuter apo nė direkt nė rrjet.\n"
"\n"
"Nėse keni kyqur stampues nė kėtė kompjuter, ju lutemi kyqni ata/nė kėtė "
"kompjuter ndizni ata/hė, qė mė nė fund ata/tė zbulohen automatikisht. "
"Njashtu edhe pėr stampuesit nė rrjet duhet tė jenė tė kyqur dhe tė nisur.\n"
"Shėnim se autozbuluesit tė stampuesve nė rrjet, i nevojitet kohė mė e gjatė, "
"se sa tek ata lokal, pra ju mund ti ēaktivizoni nėse ju nuk keni nevojė pėr "
"ta.\n"
"\n"
"Klikoni mbi \"Tjetri\" kur ju jeni gati, dhe mbi \"Anulo\" nėse ju, nuk "
"dėshironi ta konfiguroni stampuesin(t)."

#: ../../printer/printerdrake.pm:1
#, c-format
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 it/they can be auto-detected. Also "
"your network printer(s) and your 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\" if you do not want "
"to set up your printer(s) now."
msgstr ""
"\n"
"Mirė se vini nė Asistentin pėr Konfigurimin e Stampuesit\n"
"\n"
"Ky asistent do tė ju ndihmojė qė ta instaloni stampuesin(t) tuaj tė kyqur nė "
"kėtė kompjuter, nė rrjet, apo nė njė kompjuter tjetėr tė Windows nė "
"distancė.\n"
"Nėse keni kyqur stampues nė kėtė kompjuter, kyqni ata ata/nė kėtė kompjuter, "
"nisni ate/nė qė mė nė fund ata/tė zbulohen automatikisht. Njashtu stampues"
"(it) e rrejtit dhe ata nė Windows duhet tė jenė tė kyqur, dhe tė ndezur.\n"
"\n"
"Shėnim se autozbuluesit tė stampuesve nė rrjet apo Windows, i nevojitet kohė "
"mė e gjatė, se sa tek ata lokal, pra ju mund ti ēaktivizoni nėse ju nuk keni "
"nevojė pėrta.\n"
"Klikoni mbi \"Tjetri\" kur ju jeni gati, dhe mbi \"Anulo\" nėse ju, nuk "
"dėshironi ta konfiguroni stampuesin(t)."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Welcome to the Printer Setup Wizard\n"
"\n"
"This wizard allows you to install local or remote printers to be used from "
"this machine and also from other machines in the network.\n"
"\n"
"It asks you for all necessary information to set up the printer and gives "
"you access to all available printer drivers, driver options, and printer "
"connection types."
msgstr ""
"\n"
"Mirė se vini nė Asistentin pėr Konfigurimin e Stampuesit\n"
"\n"
"Ky asistent ju mundėson konfigurimin e stampuesve lokal dhe nė rrjet, qė mė "
"nė fund, tė pėrdoren nga kjo makinė, njashtu edhe nga makinat tjera tė "
"rrejtit.\n"
"\n"
"Tė gjitha informacionet pėrkatėse pėr ta konfiguruar stampuesin do tė "
"kėrkohen nga ju: keni mundėsi tė hyni nė pilotėt e stampuesve disponible "
"njashtudhe tė gjitha mundėsit e tyre dhe mėnyrat kyqėse."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Searching for new printers..."
msgstr "Kėrkim i stampuesėve tė rinjė..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"NOTE: Depending on the printer model and the printing system up to %d MB of "
"additional software will be installed."
msgstr ""
"ShĖNIM: Nga funksioni dhe modeli i sistemit tė stampimit, deri nė %d Mb tė "
"programeve llogaritėse do tė instalohen."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Are you sure that you want to set up printing on this machine?\n"
msgstr "A jeni i sigurt, ta pėrfundoni stampimin mbi kėtė makinė?\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do you want to enable printing on the printers mentioned above?\n"
msgstr "A dėshironi ta aktivizoni stampimin mbi stampues e poshtė shėnuar?\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Do you want to enable printing on printers in the local network?\n"
msgstr "A dėshironi ta aktivizoni stampimin mbi stampues tė rrjetit tuaj?\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Do you want to enable printing on the printers mentioned above or on "
"printers in the local network?\n"
msgstr ""
"A dėshironi tė lejoni stampim mbi kėta stampues, apo mbi atatė rrjetit "
"lokal?\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid " (Make sure that all your printers are connected and turned on).\n"
msgstr " (Verifikoni se tė gjithė stampuesit janė tė kyqur dhe tė ndezur).\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"There are no printers found which are directly connected to your machine"
msgstr ""
"Asnjė nga stampuesit e gjetur, nuk janė tė lidhur direkt me makinėn tuaj"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"There are %d unknown printers directly connected to your system"
msgstr ""
"\n"
"Nė sistemin tuaj janė tė kyqur direkt, %d stampues tė pa njoftur"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"There is one unknown printer directly connected to your system"
msgstr ""
"\n"
"Njė stampues i pa njoftur, ėshtė i kyqur direkt nė sistemin tuaj"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"is directly connected to your system"
msgstr ""
"Stampuesi i radhitur\n"
"\n"
"%s%s\n"
"ėshtė i kyqur direkt nė sistemin tuaj"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The following printer\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr ""
"Stampuesi i radhitur\n"
"\n"
"%s%s\n"
"a ėshtė i kyqur direkt nė sistemin tuaj"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"The following printers\n"
"\n"
"%s%s\n"
"are directly connected to your system"
msgstr ""
"Stampuesi i radhitur\n"
"\n"
"%s%s\n"
"a ėshtė i kyqur direkt nė sistemin tuaj"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "and %d unknown printers"
msgstr "dhe %d stampues tė pa njoftur"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "and one unknown printer"
msgstr "dhe njė stampues i pa njoftur"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Checking your system..."
msgstr "Verifikim i sistemit tuaj..."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "IP address of host/network:"
msgstr "Adresa IP e ftuesit/rrejtit:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "This host/network is already in the list, it cannot be added again.\n"
msgstr "Ky ftues/rrjet gjindet nė listė, dhe nuk mund tė shtohet pėrsėri.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "192.168.100.0/255.255.255.0\n"
msgstr "192.168.100.0/255.255.255.0\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "192.168.100.0/24\n"
msgstr "192.168.100.0/24\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "10.1.*\n"
msgstr "10.1.*\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "10.0.0.*\n"
msgstr "10.0.0.*\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "192.168.100.194\n"
msgstr "192.168.100.194\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Examples for correct IPs:\n"
msgstr "Shembull pėr kyqjet IP:\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The entered host/network IP is not correct.\n"
msgstr "Hyrja e ftuesit/rrjetit IP nuk ėshtė e kyqur.\n"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Choose the network or host on which the local printers should be made "
"available:"
msgstr ""
"Zgjedhe rrjetin apo ftuesin se nė cilin stampues lokal duhet tė aktivizohet:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Sharing of local printers"
msgstr "Shpėndarja e stampuesve lokal"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Remove selected host/network"
msgstr "Zhduke ftusin/rrjetin e zgjedhur"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Edit selected host/network"
msgstr "Boto ftusin/rrjetin e zgjedhur"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Add host/network"
msgstr "Shto ftusin/rrjetin"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"These are the machines and networks on which the locally connected printer"
"(s) should be available:"
msgstr ""
"Kėto janė makinat dhe rrjetet se nė cilėt stampues lokal kyqen dhe duhet tė "
"janė tė aktivizuar:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"When this option is turned on, on every startup of CUPS it is automatically "
"made sure that\n"
"\n"
"- if LPD/LPRng is installed, /etc/printcap will not be overwritten by CUPS\n"
"\n"
"- if /etc/cups/cupsd.conf is missing, it will be created\n"
"\n"
"- when printer information is broadcasted, it does not contain \"localhost\" "
"as the server name.\n"
"\n"
"If some of these measures lead to problems for you, turn this option off, "
"but then you have to take care of these points."
msgstr ""
"Kur kjo mundėsi ėshtė e nisur, nė secilėn nisje tė CUPS automatikisht "
"sigurohet se\n"
"\n"
"- nėse LPD/LPRng ėstė i instaluar nė, /etc/printcap s'do tė zėvendėsohet nga "
"CUPS\n"
"\n"
"- nėse /etc/cups/cupsd.conf mungon, ai do tė krijohet\n"
"\n"
"- nėse informacionet e stapuesit transferohen, ato nuk pėrmbajnė \"localhost"
"\" si njė server emri.\n"
"\n"
"Nėse njė nga kėto matje ngarkojnė ndonji problem pėr ju, ēkyqeni kėtė "
"mundėsi, dhe keni kujdes nė kėto pika punuese."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Automatic correction of CUPS configuration"
msgstr "Korigjues automatik i konfigurimit CUPS"

#: ../../printer/printerdrake.pm:1 ../../standalone/scannerdrake:1
#, c-format
msgid "No remote machines"
msgstr "Asnjė makinė e largėt"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Custom configuration"
msgstr "Konfigurim i doganės"

#: ../../printer/printerdrake.pm:1
#, fuzzy, c-format
msgid "Printer sharing on hosts/networks: "
msgstr "Adresa IP e ftuesit/rrejtit:"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Automatically find available printers on remote machines"
msgstr "Zbulim automatik i stampuesit tė lirė nė makinėn e largėt"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "The printers on this machine are available to other computers"
msgstr "Stampuesit nė kėtė makinė janė tė lirė nė njė kompjuter tjetėr"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"You can also decide here whether printers on remote machines should be "
"automatically made available on this machine."
msgstr ""
"Ju keni mundėsi njashtu tė vendosni, nėse stampuesit tjerė nė makinat e "
"largėta duhet tė janė automatikisht tė lira nė kėtė kompjuter."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"Here you can choose whether the printers connected to this machine should be "
"accessable by remote machines and by which remote machines."
msgstr ""
"Kėtu keni mundėsi tė zgjedhni se nėse stampuesit e kyqur nė kėtė makinė "
"duhet tė jenė me hyrje nė makinėn e largėt dhe nga cila makinė e largėt."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "CUPS printer sharing configuration"
msgstr "Konfigurim i stampuesit shėrndarės CUPS"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Printer auto-detection (Local, TCP/Socket, and SMB printers)"
msgstr "Auto-zbulues i Stampuesit (Lokal, nė rrjet dhe SMB stampues)"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid ""
"\n"
"Printers on remote CUPS servers do not need to be configured here; these "
"printers will be automatically detected."
msgstr ""
"\n"
"Nėse e pėrdorni njė server CUPS nė distancė, ju nuk keni nevojė ta "
"konfiguroni stampuesin kėtu; ii do tė zbulohet automatikisht."

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "How is the printer connected?"
msgstr "Si ėshtė i kyqur stampuesi?"

#: ../../printer/printerdrake.pm:1
#, c-format
msgid "Select Printer Connection"
msgstr "Zgjedheni tipin e Kyqjes sė Stampuesit"

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (umask)\n"
"\n"
"Set the user umask."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (val)\n"
"\n"
"Set the shell timeout. A value of zero means no timeout."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (size)\n"
"\n"
"Set shell commands history size. A value of -1 means unlimited."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of sgid files."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check open ports."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"if set, send the mail report to this email address else send it to root."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result by mail."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check files/directories writable by everybody."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, reports check result to tty."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run some checks against the rpm database."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check if the network devices are in promiscuous mode."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run chkrootkit checks."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check permissions of files in the users' home."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check additions/removals of suid root files."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report check result to syslog."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"if set to yes, check for empty password, or a password while it should be "
"in /etc/shadow or other users with id 0."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, run the daily security checks."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, verify checksum of the suid/sgid files."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, check empty password in /etc/shadow."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid "if set to yes, report unowned files."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (umask)\n"
"\n"
"Set the root umask."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (length, ndigits=0, nupper=0)\n"
"\n"
"Set the password minimum length and minimum number of digit and minimum "
"number of capitalized letters."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Set the password history length to prevent password reuse."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (max, inactive=-1)\n"
"\n"
"Set password aging to \\fImax\\fP days and delay to change to \\fIinactive"
"\\fP."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (name)\n"
"\n"
"Add the name as an exception to the handling of password aging by msec."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Enable/Disable sulogin(8) in single user level."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Activate/Disable daily security check."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Activate/Disable ethernet cards promiscuity check."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Use password to authenticate users."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Enabling su only from members of the wheel group or allow su from any user."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Enable/Disable msec hourly security check."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Enable/Disable the logging of IPv4 strange packets."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Enable/Disable libsafe if libsafe is found on the system."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg, alert=1)\n"
"\n"
"Enable/Disable IP spoofing protection."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg, alert=1)\n"
"\n"
"Enable/Disable name resolution spoofing protection.  If\n"
"\\fIalert\\fP is true, also reports to syslog."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg, expr='*.*', dev='tty12')\n"
"\n"
"Enable/Disable syslog reports to console 12. \\fIexpr\\fP is the\n"
"expression describing what to log (see syslog.conf(5) for more details) and\n"
"dev the device to report the log."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Enable/Disable crontab and at for users. Put allowed users in /etc/cron."
"allow and /etc/at.allow\n"
"(see man at(1) and crontab(1))."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: ()\n"
"\n"
"If SERVER_LEVEL (or SECURE_LEVEL if absent) is greater than 3\n"
"in /etc/security/msec/security.conf, creates the symlink /etc/security/msec/"
"server\n"
"to point to /etc/security/msec/server.<SERVER_LEVEL>. The /etc/security/msec/"
"server\n"
"is used by chkconfig --add to decide to add a service if it is present in "
"the file\n"
"during the installation of packages."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Authorize all services controlled by tcp_wrappers (see hosts.deny(5)) if "
"\\fIarg\\fP = ALL. Only local ones\n"
"if \\fIarg\\fP = LOCAL and none if \\fIarg\\fP = NONE. To authorize the "
"services you need, use /etc/hosts.allow\n"
"(see hosts.allow(5))."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"The argument specifies if clients are authorized to connect\n"
"to the X server on the tcp port 6000 or not."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg, listen_tcp=None)\n"
"\n"
"Allow/Forbid X connections. First arg specifies what is done\n"
"on the client side: ALL (all connections are allowed), LOCAL (only\n"
"local connection) and NONE (no connection)."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid the list of users on the system on display managers (kdm and "
"gdm)."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid direct root login."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid remote root login."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid reboot by the console user."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"If \\fIarg\\fP = ALL allow /etc/issue and /etc/issue.net to exist. If \\fIarg"
"\\fP = NONE no issues are\n"
"allowed else only /etc/issue is allowed."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Allow/Forbid autologin."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Accept/Refuse icmp echo."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
" Accept/Refuse broadcasted icmp echo."
msgstr ""

#: ../../security/help.pm:1
#, c-format
msgid ""
"Arguments: (arg)\n"
"\n"
"Accept/Refuse bogus IPv4 error messages."
msgstr ""

#: ../../security/level.pm:1
#, c-format
msgid "Security Administrator (login or email)"
msgstr "Administrues sigurie (login apo email)"

#: ../../security/level.pm:1
#, c-format
msgid ""
"A library which defends against buffer overflow and format string attacks."
msgstr "Njė biblotekė e cila mbronė kundėr sulmeve me tejkalim e turmės."

#: ../../security/level.pm:1
#, c-format
msgid "Use libsafe for servers"
msgstr "Pėrdorim i libsafe pėr server"

#: ../../security/level.pm:1
#, c-format
msgid "Security level"
msgstr "Nivel i sigurisė"

#: ../../security/level.pm:1
#, c-format
msgid "Please choose the desired security level"
msgstr "Ju lutemi zgjedheni nivelin e sigurisė qė ju dėshironi"

#: ../../security/level.pm:1
#, c-format
msgid "DrakSec Basic Options"
msgstr "Mundėsit e Bazės tė DrakSec"

#: ../../security/level.pm:1
#, c-format
msgid ""
"This is similar to the previous level, but the system is entirely closed and "
"security features are at their maximum."
msgstr ""
"Ky sistem i sigurisė ėshtė i bazuar mė tė mėparmin, mirėpo sistemi tani "
"ėshtė kompletisht i mbyllur nga rrjeti, siguria ėshtė nė maksimum"

#: ../../security/level.pm:1
#, c-format
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 ""
"Me kėtė nivel tė sigurisė, pėrdorimi i kėsaj makine sikur server, ėshtė i "
"mundur.\n"
"Siguria ėshtė e mjaftueshme pėr pranimin e njė shume tė madhe klientash.\n"
"Shėnim: nėse makina juaj ėshtė e kyqur si klient nė Internet ju duhet tė "
"zgjidhninjė nivel mė tė ulėt"

#: ../../security/level.pm:1
#, c-format
msgid ""
"There are already some restrictions, and more automatic checks are run every "
"night."
msgstr ""
"Posedon disa kufizime, dhe verifikacione automatike qė bėhen gjdo natė."

#: ../../security/level.pm:1
#, c-format
msgid ""
"This is the standard security recommended for a computer that will be used "
"to connect to the Internet as a client."
msgstr ""
"Ky ėshtė nivel i sigurisė standard i rekomanduar pėr njė kompjuter qė "
"pėrdoret me kyqje nė Internet si njė klient."

#: ../../security/level.pm:1
#, c-format
msgid ""
"Passwords are now enabled, but use as a networked computer is still not "
"recommended."
msgstr ""
"Parullat tani duhet tė jenė tė nevojshme, mirėpo nuk ėshtė e rekomandur qė "
"ta pėrdorni kėtė makinė nė njė rrjet (network)."

#: ../../security/level.pm:1
#, c-format
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 ""
"Ky nivel i sigurisė duhet tė manipulohet me kujdes. E bėnė qė sistemi "
"juaj, \n"
"tė pėrdoret me lehtė, nga mvarėsit e sigurisė: nuk duhet qė tė pėrdoret nė \n"
"njė makinė tė kyqur nė rrjet (network) ose internet. Asnjė parullė nuk ka "
"nevojė tė futet"

#: ../../security/level.pm:1
#, c-format
msgid "Paranoid"
msgstr "Paranojak (mosbesues)"

#: ../../security/level.pm:1
#, c-format
msgid "Higher"
msgstr "Mė i lartė"

#: ../../security/level.pm:1
#, c-format
msgid "High"
msgstr "I lartė"

#: ../../security/level.pm:1
#, c-format
msgid "Poor"
msgstr "Varfėr"

#: ../../security/level.pm:1
#, c-format
msgid "Welcome To Crackers"
msgstr "Mirė se ardhje pėr pirat"

#: ../../share/advertising/01-thanks.pl:1
#, c-format
msgid ""
"The success of MandrakeSoft is based upon the principle of Free Software. "
"Your new operating system is the result of collaborative work on the part of "
"the worldwide Linux Community"
msgstr ""
"Sukseset e MandrakeSoft janė tė bazuara nė pikėrishtė nė programet gratis."
"Sistemi i juaj i ri eksploatues ėshtė rezulltat i punės sė pėrbashkėt i "
"hapurpėr tė gjitha bashkėsit e Linux-it."

#: ../../share/advertising/01-thanks.pl:1
#, c-format
msgid "Welcome to the Open Source world"
msgstr "Mirė se vini nė botėn Open Source"

#: ../../share/advertising/01-thanks.pl:1
#, c-format
msgid "Thank you for choosing Mandrake Linux 9.1"
msgstr "Faleminderit pėr zgjedhjen tuaj tė Mandrake Linux 9.1"

#: ../../share/advertising/02-community.pl:1
#, c-format
msgid ""
"To share your own knowledge and help build Linux tools, join the discussion "
"forums you'll find on our \"Community\" webpages"
msgstr ""
"Pėr tė shpėrndare dituritė tuaja dhe pėr tė ndihmuar krijimin e veglave tė "
"Linux-it, bashkangjituni nė bisedime, tė cilat gjinden nė faqen web "
"\"Community\""

#: ../../share/advertising/02-community.pl:1
#, c-format
msgid "Want to know more about the Open Source community?"
msgstr "Dėshironi tė dini mė shumė pėr bashkėsinė e Open Source?"

#: ../../share/advertising/02-community.pl:1
#, c-format
msgid "Get involved in the Free Software world"
msgstr "Bashkohuni me botėn e e programit gratis"

#: ../../share/advertising/03-internet.pl:1
#, c-format
msgid ""
"Mandrake Linux 9.1 has selected the best software for you. Surf the Web and "
"view animations with Mozilla and Konqueror, or read your mail and handle "
"your personal information with Evolution and Kmail"
msgstr ""
"Mandrake Linux 9.1 ėshtė zgjedhur si aplikacion mė i miri kėto ditė. Ju keni "
"mundėsi tė Lundroni nė Web dhe tė ēfaqni animacionet via Mozilla dhe "
"Konqueror,ose tė lexoni letrat tuaja dhe tė qeverisni informacionet tuaja "
"personale me Evolution apo Kmail."

#: ../../share/advertising/03-internet.pl:1
#, c-format
msgid "Get the most from the Internet"
msgstr "Nxjerrni mė shumė nga Interneti"

#: ../../share/advertising/04-multimedia.pl:1
#, c-format
msgid ""
"Mandrake Linux 9.1 enables you to use the very latest software to play audio "
"files, edit and handle your images or photos, and play videos"
msgstr ""
"Mandrake Linux 9.1 ju mundėson tė pėrdorni programet e vjetra dhe tė lexoni "
"skedaret audio, njashtu edhe ēfaqjen e imazheve apo fotografive, dhe ēfaqjen "
"e videove."

#: ../../share/advertising/04-multimedia.pl:1
#, c-format
msgid "Push multimedia to its limits!"
msgstr "Shtyjeni multimediėn deri nė fund!"

#: ../../share/advertising/04-multimedia.pl:1
#, c-format
msgid "Discover the most up-to-date graphical and multimedia tools!"
msgstr ""
"Zbuloni veglėn mė tė famėshme grafike pėr azhurnim dhe tė multimediave!"

#: ../../share/advertising/05-games.pl:1
#, c-format
msgid ""
"Mandrake Linux 9.1 provides the best Open Source games - arcade, action, "
"strategy, ..."
msgstr ""
"Mandrake Linux 9.1 ju furnizon me lojėrat mė tė mira nė Open Source nė "
"arkade, akcion, refleks, strategji, ..."

#: ../../share/advertising/05-games.pl:1
#, c-format
msgid "Games"
msgstr "Lojėrat"

#: ../../share/advertising/06-mcc.pl:1
#, c-format
msgid ""
"Mandrake Linux 9.1 provides a powerful tool to fully customize and configure "
"your machine"
msgstr ""
"Mandrake Linux 9.1 ju mundėson njė kontrollimin total tė mjeteve dhe "
"administrimin e makinės tuaj."

#: ../../share/advertising/06-mcc.pl:1 ../../standalone/drakbug:1
#, c-format
msgid "Mandrake Control Center"
msgstr "Qendra Kontrolluese Mandrake"

#: ../../share/advertising/07-desktop.pl:1
#, c-format
msgid ""
"Mandrake Linux 9.1 provides you with 11 user interfaces that can be fully "
"modified: KDE 3, Gnome 2, WindowMaker, ..."
msgstr ""
"Mandrake Linux 9.1 ju ofron 11 mjedise punuese, tė cilat ju keni mudėsi ti "
"ndryshoni: KDE 3, Gnome, WindowMaker, ..."

#: ../../share/advertising/07-desktop.pl:1
#, c-format
msgid "User interfaces"
msgstr "Personalizoni mjedisin tuaj punues"

#: ../../share/advertising/08-development.pl:1
#, c-format
msgid ""
"Use the full power of the GNU gcc 3 compiler as well as the best Open Source "
"development environments"
msgstr ""
"Ju posedni tėrė fuqinė e kompilatorit GNU gcc 3 njashtu dhe mjediset mė tė "
"mira tė Open Source"

#: ../../share/advertising/08-development.pl:1
#, c-format
msgid "Mandrake Linux 9.1 is the ultimate development platform"
msgstr "Mandrake Linux 9.1 ėshtė njė plate-formė e zgjedhur pėr zhvillim"

#: ../../share/advertising/08-development.pl:1
#, c-format
msgid "Development simplified"
msgstr "Thjeshtėsoni zhvillimet tuaja"

#: ../../share/advertising/09-server.pl:1
#, c-format
msgid ""
"Transform your machine into a powerful Linux server with a few clicks of "
"your mouse: Web server, mail, firewall, router, file and print server, ..."
msgstr ""
"Transformoni makinėn tuaj nė server tė plotėfuqishėm Linux me disa klikime "
"tė minit tuaj: Web server, mail, murė-i-zjarrtė (firewall), router, "
"shpėrndarje tė skedareve dhe stampuesve, ..."

#: ../../share/advertising/09-server.pl:1
#, c-format
msgid "Turn your machine into a reliable server"
msgstr "Kthejeni makinėn tuaj nė server tė vėrtet"

#: ../../share/advertising/10-mnf.pl:1
#, c-format
msgid "This product is available on MandrakeStore website"
msgstr "Ky produkt ėshtė disponible nė MandrakeStore"

#: ../../share/advertising/10-mnf.pl:1
#, c-format
msgid ""
"This firewall product includes network features that allow you to fulfill "
"all your security needs"
msgstr ""
"Ky produkt pėrfshinė tė gjitha nevojat e sigurisė nė rrjetin e internetit "
"pėr pėr nevojat tuaja tė sigurisė"

#: ../../share/advertising/10-mnf.pl:1
#, c-format
msgid ""
"The MandrakeSecurity range includes the Multi Network Firewall product (M.N."
"F.)"
msgstr ""
"Produkti MandrakeSecurity njef mes tjerash edhe Multi Network Firewall (M.N."
"F.)"

#: ../../share/advertising/10-mnf.pl:1
#, c-format
msgid "Optimize your security"
msgstr "Griteni sigurinė tuaj nė maksimum"

#: ../../share/advertising/11-mdkstore.pl:1
#, c-format
msgid ""
"Our full range of Linux solutions, as well as special offers on products and "
"other \"goodies,\" are available online on our e-store:"
msgstr ""
"Hyni nė bashkėsinė e zgjedhjeve tė Linux-it, pėrfitoni oferta eksluzive mbi "
"produktet tona dhe \"goodies,\" tjera qė janė tė lira nė linjė e shitorės "
"tonė nė web."

#: ../../share/advertising/11-mdkstore.pl:1
#, c-format
msgid "The official MandrakeSoft store"
msgstr "MandrakeStore: shitorja oficiale nė linjė"

#: ../../share/advertising/12-mdkstore.pl:1
#, c-format
msgid ""
"MandrakeSoft works alongside a selection of companies offering professional "
"solutions compatible with Mandrake Linux. A list of these partners is "
"available on the MandrakeStore"
msgstr ""
"Punuesit e ri dėrgojnė e kontributin e tyre pėr tė zhvilluar zgjedhjet "
"profesionale qė pėrpythen me Mandrake Linux. Njė listė e tyre ėshtė nė faqen "
"web nė MandrakeStore."

#: ../../share/advertising/12-mdkstore.pl:1
#, c-format
msgid "Strategic partners"
msgstr "Partenerė strategjikė"

#: ../../share/advertising/13-mdkcampus.pl:1
#, c-format
msgid ""
"Whether you choose to teach yourself online or via our network of training "
"partners, the Linux-Campus catalogue prepares you for the acknowledged LPI "
"certification program (worldwide professional technical certification)"
msgstr ""
"Pa marrė parasysh nėse ju vendosni tė mėsoni nėpėrmjet rrjetit apo mes "
"partenerve tjerė, katalogu i Linux-Campus ju pėrgatitė pėr njė ēertifikatė "
"LPI (Instituti Linux Profesionel) i njoftur preofesionalisht. "

#: ../../share/advertising/13-mdkcampus.pl:1
#, c-format
msgid "Certify yourself on Linux"
msgstr "Bėhuni Inxhinier i kualifikuer i Linux-it"

#: ../../share/advertising/13-mdkcampus.pl:1
#, c-format
msgid ""
"The training program has been created to respond to the needs of both end "
"users and experts (Network and System administrators)"
msgstr ""
"Programet ushtruese janė krijuar pėr tu pėrgjegjur nė nevojat e pėrdoruesve "
"expert dhe atyre fillestarė (administrues i Rrjetit dhe i Sistemeve)"

#: ../../share/advertising/13-mdkcampus.pl:1
#, c-format
msgid "Discover MandrakeSoft's training catalogue Linux-Campus"
msgstr ""
"Zbuloni katalogun e formimit Linux-Campus qė tė bėheni expert i MandrakeSoft"

#: ../../share/advertising/14-mdkexpert.pl:1
#, c-format
msgid ""
"Join the MandrakeSoft support teams and the Linux Community online to share "
"your knowledge and help others by becoming a recognized Expert on the online "
"technical support website:"
msgstr ""
"Bashkangjituni me pėrkrahjen e ekipit MandrakeSoft dhe bashkėsisė Linux nė "
"linje dhe shpėrndani dituritė tuaja, ndihmoni tė tjerėve qė tė bėhen Experta "
"nė linjė teknike me pėrkrahje tė sitit web:"

#: ../../share/advertising/14-mdkexpert.pl:1
#, c-format
msgid ""
"Find the solutions of your problems via MandrakeSoft's online support "
"platform"
msgstr ""
"Gjeni zgjidhjet e problemeve tuaja nėpėrmjet MandrakeSoft nė linjė me "
"pėrkrahje tė platė-formės"

#: ../../share/advertising/14-mdkexpert.pl:1
#, c-format
msgid "Become a MandrakeExpert"
msgstr "Bėhuni Expert Mandrake"

#: ../../share/advertising/15-mdkexpert-corporate.pl:1
#, c-format
msgid ""
"All incidents will be followed up by a single qualified MandrakeSoft "
"technical expert."
msgstr ""
"Tė gjitha aksidentet do tė pėrcillen me njė kualifikim tė vetėm teknik tė "
"MandrakeSoft expert."

#: ../../share/advertising/15-mdkexpert-corporate.pl:1
#, c-format
msgid "An online platform to respond to company's specific support needs"
msgstr "Njė pėrkrahje nė linjė pėr tu pėrgjegjur kompanive tė caktuara"

#: ../../share/advertising/15-mdkexpert-corporate.pl:1
#, c-format
msgid "MandrakeExpert Corporate"
msgstr "Kooperacioni MandrakeExpert"

#: ../../share/advertising/17-mdkclub.pl:1
#, c-format
msgid ""
"MandrakeClub and Mandrake Corporate Club were created for business and "
"private users of Mandrake Linux who would like to directly support their "
"favorite Linux distribution while also receiving special privileges. If you "
"enjoy our products, if your company benefits from our products to gain a "
"competititve edge, if you want to support Mandrake Linux development, join "
"MandrakeClub!"
msgstr ""
"MandrakeClub dhe Mandrake Corporate Club janė krijuar pėr pėrdorues tė "
"biznesit dhe privatė tė Mandrake Linux, qė dėshirojnė tė pėrkrahin direkt "
"shpėrndarėsit e tyre Linux tė preferuar duke pėrfituar pėparėsi speciale. "
"Nėse juve ju pėlqejnė produktet tona, nėse sipėrmarrja e juaj pėrdore "
"produketet tona pėr tė fituar nė konkurim, nėse dėshironi tė pėrkrahni "
"zhvillimin e Mandrake Linux, bashkangjituni nė MandrakeClub!"

#: ../../share/advertising/17-mdkclub.pl:1
#, c-format
msgid "Discover MandrakeClub and Mandrake Corporate Club"
msgstr "Zbuloni MandrakeClub dhe Mandrake Corporate Club"

#: ../../standalone/XFdrake:1
#, c-format
msgid "Please relog into %s to activate the changes"
msgstr "Ju lutemi ri-kyquni nė %s pėr ti aktivizuar ndryshimet"

#: ../../standalone/XFdrake:1
#, c-format
msgid "Please log out and then use Ctrl-Alt-BackSpace"
msgstr "Ju lutemi ēkyquni dhe shtypni mbi ēelėsat Ctrl-Alt-BackSpace"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "/etc/hosts.allow and /etc/hosts.deny already configured - not changed"
msgstr ""
"/etc/hosts.allow dhe /etc/hosts.deny janė konfiguruar mė heret - tė pa "
"ndryshuara"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Need to create /etc/dhcpd.conf first!"
msgstr "Duhet tė krijohet mė sė pari /etc/dhcpd.conf!"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Something went wrong! - Is mkisofs installed?"
msgstr "Diēka e keqe ka ndodhur! - A ėshtė instaluar mkisofs?"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Etherboot ISO image is %s"
msgstr "Imazhi ISO Etherboot ėshtė %s"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "No floppy drive available!"
msgstr "Asnjė lexues i lirė pėr disketė flopi!"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Floppy can be removed now"
msgstr "Tani disketa flopi mund tė nxjirret nga lexuesi"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Couldn't access the floppy!"
msgstr "Nuk mund tė hyjė nė lexuesin e disketės flopi:"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Please insert floppy disk:"
msgstr "Ju lutemi futni njė disketė flopi nė lexues:"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Write Config"
msgstr "Shkruaje Konfigurimin"

#: ../../standalone/drakTermServ:1
#, c-format
msgid "Dynamic IP Address Pool:"
msgstr "Adresė Dinamike IP e Grumbulluar:"