~ubuntu-branches/ubuntu/quantal/kde-l10n-ar/quantal

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
# translation of kompare.po to
# Copyright (C) 2003, 2004, 2007 Free Software Foundation, Inc.
#
# Nuriddin S. Aminagha <nuriddin@haydarlinux.org>, 2003.
# Ahmad M. Zawawi <azawawi@emirates.net.ae>, 2004.
# Youssef Chahibi <chahibi@gmail.com>, 2007.
msgid ""
msgstr ""
"Project-Id-Version: kompare\n"
"Report-Msgid-Bugs-To: http://bugs.kde.org\n"
"POT-Creation-Date: 2011-02-02 03:14+0100\n"
"PO-Revision-Date: 2007-10-14 15:59+0000\n"
"Last-Translator: Youssef Chahibi <chahibi@gmail.com>\n"
"Language-Team:  <en@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"X-Generator: KBabel 1.11.4\n"
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
"&& n%100<=10 ? 3 : n%100>=11 && n%100<=99 ? 4 : 5;\n"

#: libdiff2/komparemodellist.cpp:65
msgid "&Apply Difference"
msgstr "تطبيق الاختلاف"

#: libdiff2/komparemodellist.cpp:69
msgid "Un&apply Difference"
msgstr "إلغاء تطبيق الاختلاف"

#: libdiff2/komparemodellist.cpp:73
msgid "App&ly All"
msgstr "تطبيق الكل"

#: libdiff2/komparemodellist.cpp:77
msgid "&Unapply All"
msgstr "إ&لغ كل التطبيقات"

#: libdiff2/komparemodellist.cpp:81
msgid "P&revious File"
msgstr "الملف السابق"

#: libdiff2/komparemodellist.cpp:85
msgid "N&ext File"
msgstr "الملف التالي"

#: libdiff2/komparemodellist.cpp:89
msgid "&Previous Difference"
msgstr "التغيّر السابق"

#: libdiff2/komparemodellist.cpp:93
msgid "&Next Difference"
msgstr "التغيّّر التالي"

#: libdiff2/komparemodellist.cpp:252 libdiff2/komparemodellist.cpp:277
#, fuzzy, kde-format
msgid ""
"<qt>No models or no differences, this file: <b>%1</b>, is not a valid diff "
"file.</qt>"
msgstr "<qt> لا أو لا ملفّ<b></b> هو ليس a سليم ملفّ</qt>"

#: libdiff2/komparemodellist.cpp:261
#, fuzzy, kde-format
msgid ""
"<qt>There were problems applying the diff <b>%1</b> to the file <b>%2</b>.</"
"qt>"
msgstr "<qt> هناك<b></b> إلى ملفّ<b></b></qt>"

#: libdiff2/komparemodellist.cpp:288
#, fuzzy, kde-format
msgid ""
"<qt>There were problems applying the diff <b>%1</b> to the folder <b>%2</b>."
"</qt>"
msgstr "<qt> هناك<b></b> إلى مجلد<b></b></qt>"

#: libdiff2/komparemodellist.cpp:320 libdiff2/komparemodellist.cpp:632
msgid "Could not open a temporary file."
msgstr "فشل فتح ملف مؤقَت."

#: libdiff2/komparemodellist.cpp:368 libdiff2/komparemodellist.cpp:375
#, fuzzy, kde-format
msgid "<qt>Could not write to the temporary file <b>%1</b>, deleting it.</qt>"
msgstr "<qt> يمكن أن ليس كتابة إلى مؤقت ملفّ<b></b> الإيطالية</qt>"

#: libdiff2/komparemodellist.cpp:403
#, fuzzy, kde-format
msgid ""
"<qt>Could not create destination directory <b>%1</b>.\n"
"The file has not been saved.</qt>"
msgstr "<qt> يمكن أن ليس إ_نشئ مقصد دليل<b></b> ملفّ ليس</qt>"

#: libdiff2/komparemodellist.cpp:420
#, fuzzy, kde-format
msgid ""
"<qt>Could not upload the temporary file to the destination location <b>%1</"
"b>. The temporary file is still available under: <b>%2</b>. You can manually "
"copy it to the right place.</qt>"
msgstr ""
"<qt> يمكن أن ليس ارفع مؤقت ملفّ إلى مقصد موقع<b></b> الـ مؤقت ملفّ هو "
"متوفّر<b></b> أنت يدويّاً نسخ الإيطالية إلى يمين</qt>"

#: libdiff2/komparemodellist.cpp:485 libdiff2/komparemodellist.cpp:598
msgid "Could not parse diff output."
msgstr "فشل إعراب مخرجات الإختلافات."

#: libdiff2/komparemodellist.cpp:501
msgid "The files are identical."
msgstr "هذه الملفات متطابقة."

#: libdiff2/komparemodellist.cpp:664
msgid "Could not write to the temporary file."
msgstr "فشل الكتابة إلى الملف المؤقَت."

#: libdiff2/komparemodellist.cpp:932
msgid ""
"The diff is malformed. Some lines could not be parsed and will not be "
"displayed in the diff view."
msgstr ""

#: komparepart/kompareprefdlg.cpp:35
msgid "Preferences"
msgstr "خصائص"

#: komparepart/kompareprefdlg.cpp:45
#, fuzzy
msgid "View"
msgstr "عرض"

#: komparepart/kompareprefdlg.cpp:47
msgid "View Settings"
msgstr "عرض الإعدادات"

#: komparepart/kompareprefdlg.cpp:51 libdialogpages/diffpage.cpp:218
#: kompareurldialog.cpp:52
msgid "Diff"
msgstr "الاختلافات"

#: komparepart/kompareprefdlg.cpp:53
msgid "Diff Settings"
msgstr "إعدادات الاختلافات"

#: komparepart/kompare_part.cpp:176
msgid "Save &All"
msgstr "حفظ ال&كل"

#: komparepart/kompare_part.cpp:178
#, fuzzy
msgid "Save &Diff..."
msgstr "احفظ."

#: komparepart/kompare_part.cpp:180
msgid "Swap Source with Destination"
msgstr "تبديل المصدر مع الهدف"

#: komparepart/kompare_part.cpp:182
msgid "Show Statistics"
msgstr "عرض الإحصائيات"

#: komparepart/kompare_part.cpp:185
msgid "Refresh Diff"
msgstr ""

#: komparepart/kompare_part.cpp:294 komparepart/kompare_part.cpp:305
#, fuzzy, kde-format
msgid "<qt>The URL <b>%1</b> cannot be downloaded.</qt>"
msgstr "<qt> الـ URL<b></b></qt>"

#: komparepart/kompare_part.cpp:343
#, fuzzy, kde-format
msgid "<qt>The URL <b>%1</b> does not exist on your system.</qt>"
msgstr "<qt> الـ URL<b></b> ليس يعمل نظام</qt>"

#: komparepart/kompare_part.cpp:535
msgid "Diff Options"
msgstr "خيارات الاختلافات"

#: komparepart/kompare_part.cpp:553
#, fuzzy
msgid "*.diff *.dif *.patch|Patch Files"
msgstr "patch الرقعة ملفات"

#: komparepart/kompare_part.cpp:553
msgid "Save .diff"
msgstr "حفظ الإختلافات"

#: komparepart/kompare_part.cpp:556
#, fuzzy
msgid "The file exists or is write-protected; do you want to overwrite it?"
msgstr "الـ ملفّ موجود أو هو كتابة محمي إلى كتابة فوقية :: كتابة على الإيطالية?"

#: komparepart/kompare_part.cpp:556
#, fuzzy
msgid "File Exists"
msgstr "الملف موجود"

#: komparepart/kompare_part.cpp:556
#, fuzzy
msgid "Overwrite"
msgstr "الكتابة فوقه"

#: komparepart/kompare_part.cpp:556
#, fuzzy
msgid "Do Not Overwrite"
msgstr "عدم الكتابة فوقه"

#: komparepart/kompare_part.cpp:636
msgid "KomparePart"
msgstr "برنامج KomparePart"

#: komparepart/kompare_part.cpp:637
#: komparenavtreepart/komparenavtreepart.cpp:797 main.cpp:62
#, fuzzy
msgid "John Firebaugh"
msgstr "John Firebaugh"

#: komparepart/kompare_part.cpp:637 komparepart/kompare_part.cpp:638
#: komparepart/kompare_part.cpp:639
#: komparenavtreepart/komparenavtreepart.cpp:797
#: komparenavtreepart/komparenavtreepart.cpp:798 main.cpp:62 main.cpp:63
msgid "Author"
msgstr "المؤلف"

#: komparepart/kompare_part.cpp:638
#: komparenavtreepart/komparenavtreepart.cpp:798 main.cpp:63
#, fuzzy
msgid "Otto Bruggeman"
msgstr "Otto Bruggeman"

#: komparepart/kompare_part.cpp:639 main.cpp:65
msgid "Kevin Kofler"
msgstr ""

#: komparepart/kompare_part.cpp:649
msgid "Running diff..."
msgstr "جاري البحث عن الإختلافات..."

#: komparepart/kompare_part.cpp:652
msgid "Parsing diff output..."
msgstr "جاري إعراب مخرجات الإختلافات..."

#: komparepart/kompare_part.cpp:701
#, kde-format
msgid "Comparing file %1 with file %2"
msgstr "جاري مقارنة الملف %1 مع الملف %2"

#: komparepart/kompare_part.cpp:706
#, kde-format
msgid "Comparing files in %1 with files in %2"
msgstr "جاري مقارنة الملفات في %1 مع الملفات في %2"

#: komparepart/kompare_part.cpp:711
#, kde-format
msgid "Viewing diff output from %1"
msgstr "جاري عرض مخرجات الإختلافات من %1"

#: komparepart/kompare_part.cpp:714
#, kde-format
msgid "Blending diff output from %1 into file %2"
msgstr "جاري مزج مخرجات الإختلافات من %1 إلى الملف %2"

#: komparepart/kompare_part.cpp:719
#, kde-format
msgid "Blending diff output from %1 into folder %2"
msgstr "جاري مزج مخرجات الإختلافات من %1 إلى المجلَد %2"

#: komparepart/kompare_part.cpp:770 komparepart/kompare_part.cpp:801
#: komparepart/kompare_part.cpp:916
#, fuzzy
msgid ""
"You have made changes to the destination file(s).\n"
"Would you like to save them?"
msgstr "أنت إلى مقصد ملفّ s مثل إلى حفظ?"

#: komparepart/kompare_part.cpp:772 komparepart/kompare_part.cpp:803
#: komparepart/kompare_part.cpp:918
msgid "Save Changes?"
msgstr "حفظ التغييرات؟"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:229
#. i18n: ectx: property (text), widget (QRadioButton, m_UnifiedRB)
#: komparepart/kompare_part.cpp:841 libdialogpages/diffpage.cpp:243 rc.cpp:77
msgid "Unified"
msgstr "موحّد"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:201
#. i18n: ectx: property (text), widget (QRadioButton, m_ContextRB)
#: komparepart/kompare_part.cpp:844 libdialogpages/diffpage.cpp:237 rc.cpp:65
msgid "Context"
msgstr "سياق"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:222
#. i18n: ectx: property (text), widget (QRadioButton, m_RCSRB)
#: komparepart/kompare_part.cpp:847 rc.cpp:74
msgid "RCS"
msgstr "RCS"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:208
#. i18n: ectx: property (text), widget (QRadioButton, m_EdRB)
#: komparepart/kompare_part.cpp:850 rc.cpp:68
msgid "Ed"
msgstr "Ed"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:215
#. i18n: ectx: property (text), widget (QRadioButton, m_NormalRB)
#: komparepart/kompare_part.cpp:853 libdialogpages/diffpage.cpp:240 rc.cpp:71
msgid "Normal"
msgstr "عادي"

#: komparepart/kompare_part.cpp:857
#: komparenavtreepart/komparenavtreepart.cpp:625
msgid "Unknown"
msgstr "مجهزل"

#: komparepart/kompare_part.cpp:873
msgid ""
"No diff file, or no 2 files have been diffed. Therefore no stats are "
"available."
msgstr ""
"لا تتوفر أي إحصاءات إما لعدم وجود ملف الإختلافات، أو لعدم مقارنة أي ملفين."

#: komparepart/kompare_part.cpp:875 komparepart/kompare_part.cpp:889
#: komparepart/kompare_part.cpp:905
msgid "Diff Statistics"
msgstr "إحصائيات الاختلافات"

#: komparepart/kompare_part.cpp:879
#, kde-format
msgid ""
"Statistics:\n"
"\n"
"Old file: %1\n"
"New file: %2\n"
"\n"
"Format: %3\n"
"Number of hunks: %4\n"
"Number of differences: %5"
msgstr ""
"إحصائيات:\n"
"\n"
"ملف قديم: %1\n"
"ملف جديد: %2\n"
"\n"
"هيئة: %3\n"
"عدد الكتل: %4\n"
"عدد الإختلافات: %5"

#: komparepart/kompare_part.cpp:892
#, kde-format
msgid ""
"Statistics:\n"
"\n"
"Number of files in diff file: %1\n"
"Format: %2\n"
"\n"
"Current old file: %3\n"
"Current new file: %4\n"
"\n"
"Number of hunks: %5\n"
"Number of differences: %6"
msgstr ""
"إحصائيات:\n"
"\n"
"عدد الملفات في ملف الإختلافات: %1\n"
"هيئة: %2\n"
"\n"
"الملف القديم الحالي: %3\n"
"الملف الجديد الحالي: %4\n"
"\n"
"عدد الكتل: %5\n"
"عدد الإختلافات: %6"

#: libdialogpages/filespage.cpp:60
#, fuzzy
msgid "Encoding"
msgstr "الترميز"

#: libdialogpages/diffpage.cpp:207
msgid "Diff Program"
msgstr "برنامج الاختلافات"

#: libdialogpages/diffpage.cpp:212
#, fuzzy
msgid ""
"You can select a different diff program here. On Solaris the standard diff "
"program does not support all the options that the GNU version does. This way "
"you can select that version."
msgstr ""
"أنت تحديد a مختلف برنامج تشغيل Solaris قياسي برنامج ليس دعم الكل خيارات جينو "
"النسخة هذا تحديد النسخة."

#: libdialogpages/diffpage.cpp:231
#, fuzzy
msgid ""
"Select the format of the output generated by diff. Unified is the one that "
"is used most frequently because it is very readable. The KDE developers like "
"this format the best so use it for sending patches."
msgstr ""
"انتقِ تنسيق من مخرجات أداء موحّد هو هو مُستخدَم الإيطالية هو مقروء الـ كدي مثل "
"تنسيق استخدام الإيطالية لـ."

#: libdialogpages/diffpage.cpp:234
msgid "Output Format"
msgstr "هيئة المخرجات"

#: libdialogpages/diffpage.cpp:252
msgid "Lines of Context"
msgstr "خطوط السَياق"

#: libdialogpages/diffpage.cpp:253 libdialogpages/diffpage.cpp:258
#: libdialogpages/diffpage.cpp:261
#, fuzzy
msgid ""
"The number of context lines is normally 2 or 3. This makes the diff readable "
"and applicable in most cases. More than 3 lines will only bloat the diff "
"unnecessarily."
msgstr "الـ رقم من سياق سطور هو أو هذا مقروء و بوصة المزيد سطور."

#. i18n: file: komparepart/komparesaveoptionsbase.ui:257
#. i18n: ectx: property (text), widget (QLabel, m_ContextLinesLabel)
#: libdialogpages/diffpage.cpp:256 rc.cpp:83
msgid "Number of context lines:"
msgstr "عدد سطور السَياق:"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:189
#. i18n: ectx: property (title), widget (Q3ButtonGroup, m_FormatBG)
#: libdialogpages/diffpage.cpp:267 rc.cpp:62
msgid "Format"
msgstr "هيئة"

#: libdialogpages/diffpage.cpp:281
msgid "General"
msgstr "عام"

#: libdialogpages/diffpage.cpp:284
#, fuzzy
#| msgid "Treat new files as empty"
msgid "&Treat new files as empty"
msgstr "معاملة الملفات الجديدة كفارغة"

#: libdialogpages/diffpage.cpp:285
#, fuzzy
msgid "This option corresponds to the -N diff option."
msgstr "هذا خيار إلى I خيار."

#: libdialogpages/diffpage.cpp:286
msgid ""
"With this option enabled diff will treat a file that only exists in one of "
"the directories as empty in the other directory. This means that the file is "
"compared with an empty file and because of this will appear as one big "
"insertion or deletion."
msgstr ""

#: libdialogpages/diffpage.cpp:289
msgid "&Look for smaller changes"
msgstr "انظر إلى تغيّرات أصغر"

#: libdialogpages/diffpage.cpp:290
#, fuzzy
msgid "This corresponds to the -d diff option."
msgstr "هذا إلى d خيار."

#: libdialogpages/diffpage.cpp:291
msgid ""
"With this option enabled diff will try a little harder (at the cost of more "
"memory) to find fewer changes."
msgstr ""

#: libdialogpages/diffpage.cpp:293
msgid "O&ptimize for large files"
msgstr "إجر ال&تحسينات المثلى للملفات الكبيرة"

#: libdialogpages/diffpage.cpp:294
#, fuzzy
msgid "This corresponds to the -H diff option."
msgstr "هذا إلى H خيار."

#: libdialogpages/diffpage.cpp:295
msgid ""
"This option lets diff makes better diffs when using large files. The "
"definition of large is nowhere to be found though."
msgstr ""

#: libdialogpages/diffpage.cpp:297
msgid "&Ignore changes in case"
msgstr "تجاهل التغيرات في حالة"

#: libdialogpages/diffpage.cpp:298
#, fuzzy
msgid "This corresponds to the -i diff option."
msgstr "هذا إلى i خيار."

#: libdialogpages/diffpage.cpp:299
msgid ""
"With this option to ignore changes in case enabled, diff will not indicate a "
"difference when something in one file is changed into SoMEthing in the other "
"file."
msgstr ""

#: libdialogpages/diffpage.cpp:307
msgid "Ignore regexp:"
msgstr "تجاهل الشكل:"

#: libdialogpages/diffpage.cpp:308
#, fuzzy
msgid "This option corresponds to the -I diff option."
msgstr "هذا خيار إلى I خيار."

#: libdialogpages/diffpage.cpp:309
msgid ""
"When this checkbox is enabled, an option to diff is given that will make "
"diff ignore lines that match the regular expression."
msgstr ""

#: libdialogpages/diffpage.cpp:313
#, fuzzy
msgid ""
"Add the regular expression here that you want to use\n"
"to ignore lines that match it."
msgstr "إضافة عادي تعبير إلى استخدام تجاهل سطور طابق الإيطالية."

#: libdialogpages/diffpage.cpp:319
msgid "&Edit..."
msgstr "&حرر..."

#: libdialogpages/diffpage.cpp:320
#, fuzzy
msgid ""
"Clicking this will open a regular expression dialog where\n"
"you can graphically create regular expressions."
msgstr "النقر فتح a عادي تعبير حوار إ_نشئ عادي."

#: libdialogpages/diffpage.cpp:328
msgid "Whitespace"
msgstr "مساحة بيضاء"

#: libdialogpages/diffpage.cpp:331
#, fuzzy
msgid "E&xpand tabs to spaces in output"
msgstr "توسيع إلى فراغات بوصة مخرجات"

#: libdialogpages/diffpage.cpp:332
#, fuzzy
msgid "This option corresponds to the -t diff option."
msgstr "هذا خيار إلى t خيار."

#: libdialogpages/diffpage.cpp:333
msgid ""
"This option does not always produce the right result. Due to this expansion "
"Kompare may have problems applying the change to the destination file."
msgstr ""

#: libdialogpages/diffpage.cpp:335
msgid "I&gnore added or removed empty lines"
msgstr "تجاهل الأسطر الفارغة المضافة أو المزالة"

#: libdialogpages/diffpage.cpp:336
#, fuzzy
msgid "This option corresponds to the -B diff option."
msgstr "هذا خيار إلى B خيار."

#: libdialogpages/diffpage.cpp:337
msgid ""
"This can be very useful in situations where code has been reorganized and "
"empty lines have been added or removed to improve legibility."
msgstr ""

#: libdialogpages/diffpage.cpp:339
msgid "Ig&nore changes in the amount of whitespace"
msgstr "تجاهل التغيرات في حدود المساحة البيضاء"

#: libdialogpages/diffpage.cpp:340
#, fuzzy
msgid "This option corresponds to the -b diff option."
msgstr "هذا خيار إلى b خيار."

#: libdialogpages/diffpage.cpp:341
msgid ""
"If you are uninterested in differences arising due to, for example, changes "
"in indentation, then use this option."
msgstr ""

#: libdialogpages/diffpage.cpp:343
#, fuzzy
msgid "Ign&ore all whitespace"
msgstr "تجاهل الكل فراغ ، فاصل"

#: libdialogpages/diffpage.cpp:344
#, fuzzy
msgid "This option corresponds to the -w diff option."
msgstr "هذا خيار إلى w خيار."

#: libdialogpages/diffpage.cpp:345
msgid ""
"This is useful for seeing the significant changes without being overwhelmed "
"by all the white space changes."
msgstr ""

#: libdialogpages/diffpage.cpp:347
#, fuzzy
msgid "Igno&re changes due to tab expansion"
msgstr "تجاهل إلى لسان توسيع"

#: libdialogpages/diffpage.cpp:348
#, fuzzy
msgid "This option corresponds to the -E diff option."
msgstr "هذا خيار إلى E خيار."

#: libdialogpages/diffpage.cpp:349
msgid ""
"If there is a change because tabs have been expanded into spaces in the "
"other file, then this option will make sure that these do not show up. "
"Kompare currently has some problems applying such changes so be careful when "
"you use this option."
msgstr ""

#. i18n: file: komparepart/komparesaveoptionsbase.ui:93
#. i18n: ectx: property (title), widget (Q3ButtonGroup, m_OptionsGB)
#: libdialogpages/diffpage.cpp:355 rc.cpp:32
#, fuzzy
msgid "Options"
msgstr "خيارات"

#: libdialogpages/diffpage.cpp:368
#, fuzzy
msgid "File Pattern to Exclude"
msgstr "ملف نمط إلى إستثنِ"

#: libdialogpages/diffpage.cpp:371
#, fuzzy
msgid ""
"If this is checked you can enter a shell pattern in the text box on the "
"right or select entries from the list."
msgstr ""
"إذا هو مؤكّد أدخل a صدَفة التشكيلة بوصة نص مربّع يعمل يمين أو تحديد خانات من "
"قائمة."

#: libdialogpages/diffpage.cpp:377
#, fuzzy
msgid ""
"Here you can enter or remove a shell pattern or select one or more entries "
"from the list."
msgstr "هنا أدخل أو أزِل a صدَفة التشكيلة أو تحديد أو المزيد خانات من قائمة."

#: libdialogpages/diffpage.cpp:386
#, fuzzy
msgid "File with Filenames to Exclude"
msgstr "ملف مع أسماء الملفات إلى إستثنِ"

#: libdialogpages/diffpage.cpp:389
#, fuzzy
msgid ""
"If this is checked you can enter a filename in the combo box on the right."
msgstr "إذا هو مؤكّد أدخل a اسم الملف بوصة مربّع يعمل يمين."

#: libdialogpages/diffpage.cpp:393
#, fuzzy
msgid ""
"Here you can enter the URL of a file with shell patterns to ignore during "
"the comparison of the folders."
msgstr "هنا أدخل URL من a ملفّ مع صدَفة إلى تجاهل من."

#: libdialogpages/diffpage.cpp:397
#, fuzzy
msgid ""
"Any file you select in the dialog that pops up when you click it will be put "
"in the dialog to the left of this button."
msgstr ""
"أيّ ملفّ تحديد بوصة حوار أعلى انقر الإيطالية put بوصة حوار إلى يسار من زر."

#: libdialogpages/diffpage.cpp:405
#, fuzzy
msgid "Exclude"
msgstr "إستثنِ"

#: libdialogpages/viewpage.cpp:57
msgid "Colors"
msgstr "الألوان"

#: libdialogpages/viewpage.cpp:63
msgid "Removed color:"
msgstr "اللون المزال:"

#: libdialogpages/viewpage.cpp:70
msgid "Changed color:"
msgstr "اللون المغيّر:"

#: libdialogpages/viewpage.cpp:77
msgid "Added color:"
msgstr "اللون المضاف:"

#: libdialogpages/viewpage.cpp:84
msgid "Applied color:"
msgstr "اللون المطبّق:"

#: libdialogpages/viewpage.cpp:94
msgid "Mouse Wheel"
msgstr "عجلة الفأرة"

#: libdialogpages/viewpage.cpp:98
msgid "Number of lines:"
msgstr "عدد الأسطر:"

#: libdialogpages/viewpage.cpp:109
msgid "Tabs to Spaces"
msgstr "علامة جدولة إلى الفراغات"

#: libdialogpages/viewpage.cpp:113
msgid "Number of spaces to convert a tab character to:"
msgstr "عدد الفراغات في حرف علامة الجدولة:"

#: libdialogpages/viewpage.cpp:122 kompareurldialog.cpp:60
#, fuzzy
#| msgid "A&ppearance"
msgid "Appearance"
msgstr "المظهر"

#: libdialogpages/viewpage.cpp:132
#, fuzzy
msgid "Text Font"
msgstr "نص الخط"

#: libdialogpages/viewpage.cpp:136
#, fuzzy
msgid "Font:"
msgstr "الخط:"

#: libdialogpages/viewpage.cpp:143
#, fuzzy
msgid "Size:"
msgstr "الحجم:"

#: libdialogpages/viewpage.cpp:152
#, fuzzy
msgid "Fonts"
msgstr "&خطوط"

#: komparenavtreepart/komparenavtreepart.cpp:63
msgid "Source Folder"
msgstr "المجلد المصدر"

#: komparenavtreepart/komparenavtreepart.cpp:68
msgid "Destination Folder"
msgstr "المجلد الهدف "

#: komparenavtreepart/komparenavtreepart.cpp:73
msgid "Source File"
msgstr "الملف المصدر"

#: komparenavtreepart/komparenavtreepart.cpp:73
msgid "Destination File"
msgstr "ملف الهدف"

#: komparenavtreepart/komparenavtreepart.cpp:79
msgid "Source Line"
msgstr "سطر المصدر"

#: komparenavtreepart/komparenavtreepart.cpp:79
msgid "Destination Line"
msgstr "سطر الهدف"

#: komparenavtreepart/komparenavtreepart.cpp:79
msgid "Difference"
msgstr "إختلاف"

#: komparenavtreepart/komparenavtreepart.cpp:452
#, fuzzy, kde-format
msgid "Applied: Changes made to %1 line undone"
msgid_plural "Applied: Changes made to  %1 lines undone"
msgstr[0] "انطبق التغييرات إلى سطر"
msgstr[1] "انطبق التغييرات إلى سطر"
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""

#: komparenavtreepart/komparenavtreepart.cpp:455
#, fuzzy, kde-format
msgid "Changed %1 line"
msgid_plural "Changed %1 lines"
msgstr[0] "غُيِّر سطر"
msgstr[1] "غُيِّر سطر"
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""

#: komparenavtreepart/komparenavtreepart.cpp:460
#, fuzzy, kde-format
msgid "Applied: Insertion of %1 line undone"
msgid_plural "Applied: Insertion of %1 lines undone"
msgstr[0] "انطبق إدراج من سطر"
msgstr[1] "انطبق إدراج من سطر"
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""

#: komparenavtreepart/komparenavtreepart.cpp:463
#, fuzzy, kde-format
msgid "Inserted %1 line"
msgid_plural "Inserted %1 lines"
msgstr[0] "مدخل سطر"
msgstr[1] "مدخل سطر"
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""

#: komparenavtreepart/komparenavtreepart.cpp:468
#, fuzzy, kde-format
msgid "Applied: Deletion of %1 line undone"
msgid_plural "Applied: Deletion of %1 lines undone"
msgstr[0] "انطبق حذف من سطر"
msgstr[1] "انطبق حذف من سطر"
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""

#: komparenavtreepart/komparenavtreepart.cpp:471
#, fuzzy, kde-format
msgid "Deleted %1 line"
msgid_plural "Deleted %1 lines"
msgstr[0] "محذوف سطر"
msgstr[1] "محذوف سطر"
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""

#: komparenavtreepart/komparenavtreepart.cpp:796
msgid "KompareNavTreePart"
msgstr ""

#: kompareurldialog.cpp:44
#, fuzzy
msgid "Files"
msgstr "&ملف"

#: kompareurldialog.cpp:46
msgid "Here you can enter the files you want to compare."
msgstr ""

#: kompareurldialog.cpp:54
msgid "Here you can change the options for comparing the files."
msgstr ""

#: kompareurldialog.cpp:62
msgid "Here you can change the options for the view."
msgstr ""

#: kompareurldialog.cpp:105
msgid ""
"File used for excluding files cannot be found, please specify another file."
msgstr ""

#: main.cpp:43
#, fuzzy
msgid ""
"A program to view the differences between files and optionally generate a "
"diff"
msgstr "A برنامج إلى اعرض بين ملفات و توليد a"

#: main.cpp:59
msgid "Kompare"
msgstr "Kompare"

#: main.cpp:61
#, fuzzy
msgid ""
"(c) 2001-2004 John Firebaugh, (c) 2001-2005,2009 Otto Bruggeman, (c) 2004-"
"2005 Jeff Snyder, (c) 2007-2008 Kevin Kofler"
msgstr "c جون و العطر"

#: main.cpp:64
msgid "Jeff Snyder"
msgstr ""

#: main.cpp:64
msgid "Developer"
msgstr ""

#: main.cpp:65
msgid "Maintainer"
msgstr ""

#: main.cpp:66
#, fuzzy
msgid "Chris Luetchford"
msgstr "كريس"

#: main.cpp:66
#, fuzzy
msgid "Kompare icon artist"
msgstr "Kompare أيقونة"

#: main.cpp:67
#, fuzzy
msgid "Malte Starostik"
msgstr "Malte Starostik"

#: main.cpp:67
msgid "A lot of good advice"
msgstr "كثيراَ من النصيحة الجيَدة"

#: main.cpp:68
msgid "Bernd Gehrmann"
msgstr ""

#: main.cpp:68
msgid "Cervisia diff viewer"
msgstr "عارض الإختلافات Cervisia"

#: main.cpp:73
#, fuzzy
msgid "This will compare URL1 with URL2"
msgstr "هذا مقارنة مع"

#: main.cpp:74
#, fuzzy
msgid ""
"This will open URL1 and expect it to be diff output. URL1 can also be a '-' "
"and then it will read from standard input. Can be used for instance for cvs "
"diff | kompare -o -. Kompare will do a check to see if it can find the "
"original file(s) and then blend the original file(s) into the diffoutput and "
"show that in the viewer. -n disables the check."
msgstr ""
"هذا فتح و الإيطالية إلى مخرجات a و الإيطالية قراءة من قياسي دَخْل يمكن أن "
"مُستخدَم لـ مرة لـ o Kompare a تفقّد إلى IF الإيطالية ابحث أصلي ملفّ s و أصلي "
"ملفّ s و إظهار بوصة مُظهر n تفقّد."

#: main.cpp:75
#, fuzzy
msgid ""
"This will blend URL2 into URL1, URL2 is expected to be diff output and URL1 "
"the file or folder that the diffoutput needs to be blended into. "
msgstr "هذا هو إلى مخرجات و ملفّ أو مجلد إلى "

#: main.cpp:76
#, fuzzy
msgid ""
"Disables the check for automatically finding the original file(s) when using "
"'-' as URL with the -o option."
msgstr "يعطّل تفقّد لـ أصلي ملفّ s URL مع o خيار."

#: main.cpp:77
#, fuzzy
msgid ""
"Use this to specify the encoding when calling it from the command line. It "
"will default to the local encoding if not specified."
msgstr ""
"إستعمل إلى تحديد ترميز الإيطالية من أمر سطر itإيطالياهو افتراضي إلى محليّ "
"ترميز IF ليس."

#: main.cpp:201 kompare_shell.cpp:415
msgid "Compare Files or Folders"
msgstr "مقارنة ملفات أو مجلدات"

#: main.cpp:202 kompare_shell.cpp:416
msgid "Source"
msgstr "المصدر"

#: main.cpp:203 kompare_shell.cpp:417
msgid "Destination"
msgstr "الهدف"

#: main.cpp:205 kompare_shell.cpp:419
msgid "Compare"
msgstr "قارن"

#: main.cpp:205
msgid "Compare these files or folder"
msgstr "مقارنة هذه الملفَات أو المجلَد"

#: main.cpp:205 kompare_shell.cpp:419
#, fuzzy
msgid ""
"If you have entered 2 filenames or 2 folders in the fields in this dialog "
"then this button will be enabled and pressing it will start a comparison of "
"the entered files or folders. "
msgstr "إذا أو بوصة بوصة حوار زر ممكن و الإيطالية تشغيل a من ملفات أو "

#: kompare_shell.cpp:81
#, fuzzy
msgid "Could not find our KompareViewPart."
msgstr "يمكن أن ليس ابحث."

#: kompare_shell.cpp:113
#, fuzzy
msgid "Could not load our KompareViewPart."
msgstr "يمكن أن ليس التحميل."

#: kompare_shell.cpp:121
#, fuzzy
msgid "Could not find our KompareNavigationPart."
msgstr "يمكن أن ليس ابحث."

#: kompare_shell.cpp:130
#, fuzzy
msgid "Navigation"
msgstr "الملاحة"

#: kompare_shell.cpp:148
#, fuzzy
msgid "Could not load our KompareNavigationPart."
msgstr "يمكن أن ليس التحميل."

#: kompare_shell.cpp:249
msgid "&Open Diff..."
msgstr "فتح الا&ختلافات."

#: kompare_shell.cpp:252
msgid "&Compare Files..."
msgstr "&مقارنة ملفات ..."

#: kompare_shell.cpp:255
msgid "&Blend URL with Diff..."
msgstr "إ&خلط عنوان الموقع مع الاختلافات."

#: kompare_shell.cpp:261
msgid "Show T&ext View"
msgstr "إظهار عارض ال&نص "

#: kompare_shell.cpp:274
msgid " 0 of 0 differences "
msgstr "0 من 0 إختلاف"

#: kompare_shell.cpp:275
msgid " 0 of 0 files "
msgstr "0 من 0 ملف"

#: kompare_shell.cpp:290
#, fuzzy, kde-format
msgid " %2 of %1 file "
msgid_plural " %2 of %1 files "
msgstr[0] "من ملفّ "
msgstr[1] "من ملفّ "
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""

#: kompare_shell.cpp:292
#, fuzzy, kde-format
msgid " %1 file "
msgid_plural " %1 files "
msgstr[0] "ملفّ "
msgstr[1] "ملفّ "
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""

#: kompare_shell.cpp:295
#, fuzzy, kde-format
msgid " %2 of %1 difference, %3 applied "
msgid_plural " %2 of %1 differences, %3 applied "
msgstr[0] "من اختلاف "
msgstr[1] "من اختلاف "
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""

#: kompare_shell.cpp:298
#, fuzzy, kde-format
msgid " %1 difference "
msgid_plural " %1 differences "
msgstr[0] "اختلاف "
msgstr[1] "اختلاف "
msgstr[2] ""
msgstr[3] ""
msgstr[4] ""
msgstr[5] ""

#: kompare_shell.cpp:386
#, fuzzy
msgid "Blend File/Folder with diff Output"
msgstr "الخليط ملف مجلّد مع مخرجات"

#: kompare_shell.cpp:387
msgid "File/Folder"
msgstr "ملف أو المجلد"

#: kompare_shell.cpp:388
msgid "Diff Output"
msgstr "مخرجات الاختلافات"

#: kompare_shell.cpp:390
msgid "Blend"
msgstr "الخليط"

#: kompare_shell.cpp:390
msgid "Blend this file or folder with the diff output"
msgstr "إخلط هذا الملف أو المجلَد مع مخرجات الإختلافات"

#: kompare_shell.cpp:390
#, fuzzy
msgid ""
"If you have entered a file or folder name and a file that contains diff "
"output in the fields in this dialog then this button will be enabled and "
"pressing it will open kompare's main view where the output of the entered "
"file or files from the folder are mixed with the diff output so you can then "
"apply the difference(s) to a file or to the files. "
msgstr ""
"إذا a ملفّ أو مجلد الاسم و a ملفّ يحتوي مخرجات بوصة بوصة حوار زر ممكن و "
"الإيطالية فتح s رئيسي اعرض مخرجات من ملفّ أو ملفات من مجلد مع مخرجات تطبيق "
"اختلاف s إلى a ملفّ أو إلى ملفات "

#: kompare_shell.cpp:419
msgid "Compare these files or folders"
msgstr "قارن هذه الملفَات أو المجلَدات"

#: kompare_shell.cpp:455
msgid "Text View"
msgstr "مشهد النص"

#: rc.cpp:1
msgctxt "NAME OF TRANSLATORS"
msgid "Your names"
msgstr "Isam Bayazidi, Nuriddin Aminagha,أحمد محمد زواوي"

#: rc.cpp:2
msgctxt "EMAIL OF TRANSLATORS"
msgid "Your emails"
msgstr ""
"bayazidi@arabeyes.org, nuriddin@haydarlinux.org,azawawi@emirates.net.ae"

#. i18n: file: kompareui.rc:4
#. i18n: ectx: Menu (file)
#. i18n: file: komparepart/komparepartui.rc:4
#. i18n: ectx: Menu (file)
#: rc.cpp:5 rc.cpp:14
#, fuzzy
msgid "&File"
msgstr "&ملف"

#. i18n: file: kompareui.rc:14
#. i18n: ectx: Menu (settings)
#. i18n: file: komparepart/komparepartui.rc:29
#. i18n: ectx: Menu (settings)
#: rc.cpp:8 rc.cpp:20
#, fuzzy
msgid "&Settings"
msgstr "إ&عدادات"

#. i18n: file: kompareui.rc:27
#. i18n: ectx: ToolBar (mainToolBar)
#: rc.cpp:11
#, fuzzy
msgid "Main Toolbar"
msgstr "شريط الأدوات الرئيسي"

#. i18n: file: komparepart/komparepartui.rc:17
#. i18n: ectx: Menu (difference)
#: rc.cpp:17
msgid "&Difference"
msgstr "اختلاف"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:30
#. i18n: ectx: property (title), widget (QGroupBox, GroupBox2)
#: rc.cpp:23
msgid "Run Diff In"
msgstr "تشغيل الاختلافات داخل"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:65
#. i18n: ectx: property (title), widget (QGroupBox, m_CommandLineGB)
#: rc.cpp:26
msgid "Command Line"
msgstr "سطر الأوامر"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:80
#. i18n: ectx: property (text), widget (QLabel, m_CommandLineLabel)
#: rc.cpp:29
#, fuzzy
msgid "cd dir && diff -udHprNa -- source destination"
msgstr "قرص مدمج dir مصدر مقصد"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:105
#. i18n: ectx: property (text), widget (QCheckBox, m_SmallerChangesCB)
#: rc.cpp:35
msgid "Look for smaller changes"
msgstr "ابحث على تغيرات أصغر"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:115
#. i18n: ectx: property (text), widget (QCheckBox, m_LargeFilesCB)
#: rc.cpp:38
msgid "Optimize for large files"
msgstr "إجر التحسينات المثلى للملفات الكبيرة"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:125
#. i18n: ectx: property (text), widget (QCheckBox, m_IgnoreCaseCB)
#: rc.cpp:41
msgid "Ignore changes in case"
msgstr "تجاهل الاختلاف في حالة"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:132
#. i18n: ectx: property (text), widget (QCheckBox, m_ExpandTabsCB)
#: rc.cpp:44
msgid "Expand tabs to spaces"
msgstr "توسيع علامات الجدولة إلى فراغات"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:139
#. i18n: ectx: property (text), widget (QCheckBox, m_IgnoreEmptyLinesCB)
#: rc.cpp:47
msgid "Ignore added or removed empty lines"
msgstr "تجاهل الأسطر الفارغة المضافة أو المزالة"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:146
#. i18n: ectx: property (text), widget (QCheckBox, m_IgnoreWhiteSpaceCB)
#: rc.cpp:50
msgid "Ignore changes in whitespace"
msgstr "تجاهل التغييرات في المسافة البيضاء"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:153
#. i18n: ectx: property (text), widget (QCheckBox, m_FunctionNamesCB)
#: rc.cpp:53
msgid "Show function names"
msgstr "اظهر أسماء الدوال"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:163
#. i18n: ectx: property (text), widget (QCheckBox, m_RecursiveCB)
#: rc.cpp:56
msgid "Compare folders recursively"
msgstr "مقارنة المجلدات بشكل متكرر"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:173
#. i18n: ectx: property (text), widget (QCheckBox, m_NewFilesCB)
#: rc.cpp:59
msgid "Treat new files as empty"
msgstr "معاملة الملفات الجديدة كفارغة"

#. i18n: file: komparepart/komparesaveoptionsbase.ui:239
#. i18n: ectx: property (text), widget (QRadioButton, m_SideBySideRB)
#: rc.cpp:80
msgid "Side-by-side"
msgstr "جنبًا إلى جنبًا"

#~ msgid "A&ppearance"
#~ msgstr "المظهر"

#~ msgid "&Diff"
#~ msgstr "ال&اختلافات"

#~ msgid "&Format"
#~ msgstr "هيئة"

#~ msgid "O&ptions"
#~ msgstr "خيارات"

#, fuzzy
#~ msgid "My Second Test Page"
#~ msgstr "خاصتي الثّانية اختبار صفحة"

#, fuzzy
#~ msgid "Hide T&ext View"
#~ msgstr "إخفاء نص عرض"