-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmytranslation.qph
1964 lines (1962 loc) · 46.9 KB
/
mytranslation.qph
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
<!DOCTYPE QPH>
<QPH language="ar_DZ">
<phrase>
<source>Application</source>
<target>التطبيقات</target>
</phrase>
<phrase>
<source>To &Desktop</source>
<target>الى &سطح المكتب</target>
</phrase>
<phrase>
<source>&All Desktops</source>
<target>&كل أسطح المكتب</target>
</phrase>
<phrase>
<source>&To Current Desktop</source>
<target>الى &سطح المكتب الحالي</target>
</phrase>
<phrase>
<source>Desktop &%1</source>
<target>سطح المكتب &%1</target>
</phrase>
<phrase>
<source>Ma&ximize</source>
<target>ت&كبير</target>
</phrase>
<phrase>
<source>Roll down</source>
<target>ظلًل</target>
</phrase>
<phrase>
<source>Mi&nimize</source>
<target>ت&صغير</target>
</phrase>
<phrase>
<source>&Restore</source>
<target>ا&ستعادة</target>
</phrase>
<phrase>
<source>&Close</source>
<target>&اغلق</target>
</phrase>
<phrase>
<source>Always on &bottom</source>
<target>ابق &تحت الاخرين</target>
</phrase>
<phrase>
<source>&Normal</source>
<target>&عادي</target>
</phrase>
<phrase>
<source>Always on &top</source>
<target>ابق فوق الا&خرين</target>
</phrase>
<phrase>
<source>&Layer</source>
<target>المو&ضع</target>
</phrase>
<phrase>
<source>Roll up</source>
<target>استعادة</target>
</phrase>
<phrase>
<source>Roll down</source>
<target>ظلًل</target>
</phrase>
<phrase>
<source>Mi&nimize</source>
<target>ت&صغير</target>
</phrase>
<phrase>
<source>Office</source>
<target>المكتب</target>
</phrase>
<phrase>
<source>Add</source>
<target>إضافة</target>
</phrase>
<phrase>
<source>All Files (*)</source>
<target>كل الملفات (*)</target>
</phrase>
<phrase>
<source>Open Files...</source>
<target>فتح ملفات...</target>
</phrase>
<phrase>
<source>Image File (*.png );;All Files (*)</source>
<target>ملف صورة (*.png );;All Files (*)</target>
</phrase>
<phrase>
<source>Open Images Files...</source>
<target>فتح ملفات الصور...</target>
</phrase>
<phrase>
<source>Other</source>
<target>أخرى</target>
</phrase>
<phrase>
<source>System</source>
<target>النظام</target>
</phrase>
<phrase>
<source>Settings</source>
<target>الإعدادات</target>
</phrase>
<phrase>
<source>Network</source>
<target>الإنترنت</target>
</phrase>
<phrase>
<source>Utility</source>
<target>أدوات</target>
</phrase>
<phrase>
<source>Development</source>
<target>التطوير</target>
</phrase>
<phrase>
<source>Game</source>
<target>الألعاب</target>
</phrase>
<phrase>
<source>Graphics</source>
<target>الرسم</target>
</phrase>
<phrase>
<source>AudioVideo</source>
<target>الوسائط المتعددة</target>
</phrase>
<phrase>
<source>Office</source>
<target>المكتب</target>
</phrase>
<phrase>
<source>Exec</source>
<target>تنفيذ</target>
</phrase>
<phrase>
<source>Quit</source>
<target>خروج</target>
</phrase>
<phrase>
<source>Add Lancher</source>
<target>إضافة تطبيق</target>
</phrase>
<phrase>
<source>properties</source>
<target>خصائص</target>
</phrase>
<phrase>
<source>Dock Bar</source>
<target>اللوحة</target>
</phrase>
<phrase>
<source>Remove from quicklaunch</source>
<target>حذف من اللوحة</target>
</phrase>
<phrase>
<source>Generale</source>
<target>عام</target>
</phrase>
<phrase>
<source>Position :</source>
<target>الموضع :</target>
</phrase>
<phrase>
<source>Screen Edge :</source>
<target>الموقع من الشاشة</target>
</phrase>
<phrase>
<source>Screen Edge :</source>
<target>الموقع من الشاشة :</target>
</phrase>
<phrase>
<source>Bottom screen</source>
<target>اسفل الشاشة </target>
</phrase>
<phrase>
<source>Top screen</source>
<target>اعلى الشاشة</target>
</phrase>
<phrase>
<source>Icon size :</source>
<target>حجم الايقونة :</target>
</phrase>
<phrase>
<source>show Selection on mouse hover</source>
<target>اظهر التحديد عند مرور المؤشر على الايقونة</target>
</phrase>
<phrase>
<source>Auto hide</source>
<target>اخفاء تلقائي</target>
</phrase>
<phrase>
<source>On top</source>
<target>فوق الكل</target>
</phrase>
<phrase>
<source>keep the dock below</source>
<target>ابقه تحت الكل</target>
</phrase>
<phrase>
<source>keep the dock below</source>
<target>ابق اللوحة تحت الكل</target>
</phrase>
<phrase>
<source>Icons Theme</source>
<target>سمة الايقونات</target>
</phrase>
<phrase>
<source>Default <none></source>
<target>الافتراضي <لا شيئ></target>
</phrase>
<phrase>
<source>Rotation</source>
<target>تدوير</target>
</phrase>
<phrase>
<source>Image loading</source>
<target>تحميل</target>
</phrase>
<phrase>
<source>Default icons theme</source>
<target>الايقونات الافتراضية</target>
</phrase>
<phrase>
<source>Theme</source>
<target>السمة</target>
</phrase>
<phrase>
<source>Gradien</source>
<target>التدرج</target>
</phrase>
<phrase>
<source>Image</source>
<target>صورة</target>
</phrase>
<phrase>
<source>3D</source>
<target>ثلاثي الابعاد</target>
</phrase>
<phrase>
<source>image :</source>
<target>صورة :</target>
</phrase>
<phrase>
<source>Selection Color :</source>
<target>لون التحديد :</target>
</phrase>
<phrase>
<source>Border Color :</source>
<target>لون الاطار:</target>
</phrase>
<phrase>
<source>White</source>
<target>أبيض</target>
</phrase>
<phrase>
<source>White Rounded</source>
<target>أبيض دائري</target>
</phrase>
<phrase>
<source>Black</source>
<target>أسود</target>
</phrase>
<phrase>
<source>Black Rounded</source>
<target>أسود دائري </target>
</phrase>
<phrase>
<source>Open Image</source>
<target>فتح صورة</target>
</phrase>
<phrase>
<source>Image Files (*.png *.jpg *.bmp *.svg)</source>
<target>ملفات الصور (*.png *.jpg *.bmp *.svg)</target>
</phrase>
<phrase>
<source>Generate Download Script</source>
<target>انشاء سكريبت تنزيل</target>
</phrase>
<phrase>
<source>add to favorite</source>
<target>إضافة للمفظلة</target>
</phrase>
<phrase>
<source>remove from favorite</source>
<target>حذف من المفظلة</target>
</phrase>
<phrase>
<source>Maximize vertically</source>
<target>تكبير أفقيا</target>
</phrase>
<phrase>
<source>Maximize horizontally</source>
<target>تكبير عموديا</target>
</phrase>
<phrase>
<source>Quick Launch</source>
<target>تشغيل سريع</target>
</phrase>
<phrase>
<source>Device Mount</source>
<target>ضم الاجهزة</target>
</phrase>
<phrase>
<source>move up</source>
<target>الى الاعلى</target>
</phrase>
<phrase>
<source>remove</source>
<target>حذف</target>
</phrase>
<phrase>
<source>move down</source>
<target>الى الاسفل</target>
</phrase>
<phrase>
<source>Name</source>
<target>الاسم</target>
</phrase>
<phrase>
<source>Folders</source>
<target>مجلدات</target>
</phrase>
<phrase>
<source>Applications</source>
<target>التطبيقات</target>
</phrase>
<phrase>
<source>Start Here</source>
<target>ابدأ هنا</target>
</phrase>
<phrase>
<source>Remove from quicklaunch</source>
<target>حذف من التشغيل السريع</target>
</phrase>
<phrase>
<source>System Tray</source>
<target>صينية النظام</target>
</phrase>
<phrase>
<source>System Tray</source>
<target>منطقة الاعلام</target>
</phrase>
<phrase>
<source>Panel Settings</source>
<target>اعدادات اللوحة</target>
</phrase>
<phrase>
<source>Add Plugins</source>
<target>إضافة مكونات</target>
</phrase>
<phrase>
<source>Default</source>
<target>الافتراضي</target>
</phrase>
<phrase>
<source>Costum :</source>
<target>تخصيص</target>
</phrase>
<phrase>
<source>shoose</source>
<target>اختر</target>
</phrase>
<phrase>
<source>Globale Color :</source>
<target>لون عام :</target>
</phrase>
<phrase>
<source>Font Color :</source>
<target>لون الخط</target>
</phrase>
<phrase>
<source>Font Color :</source>
<target>لون الخط :</target>
</phrase>
<phrase>
<source>Border Color :</source>
<target>لون الاطار</target>
</phrase>
<phrase>
<source>Text beside icon</source>
<target>نص مع ايقونة</target>
</phrase>
<phrase>
<source>Icon only</source>
<target>ايقونة فقط</target>
</phrase>
<phrase>
<source>Desktop settings</source>
<target>اعدادات سطح المكتب</target>
</phrase>
<phrase>
<source>Wallpaper :</source>
<target>الخلفية :</target>
</phrase>
<phrase>
<source>Color</source>
<target>اللون</target>
</phrase>
<phrase>
<source>Options</source>
<target>خيارات</target>
</phrase>
<phrase>
<source>First color</source>
<target>اللون الاول</target>
</phrase>
<phrase>
<source>Second Color</source>
<target>اللون الثاني</target>
</phrase>
<phrase>
<source>Choose</source>
<target>اختر</target>
</phrase>
<phrase>
<source>Posittioning :</source>
<target>الموضع</target>
</phrase>
<phrase>
<source>Posittioning :</source>
<target>الموضع :</target>
</phrase>
<phrase>
<source>Centered</source>
<target>توسيط</target>
</phrase>
<phrase>
<source>Scaled</source>
<target>تمدد</target>
</phrase>
<phrase>
<source>Open File</source>
<target>فتح ملف</target>
</phrase>
<phrase>
<source>Open Directory</source>
<target>فتح مجلد</target>
</phrase>
<phrase>
<source>Dock Bar</source>
<target>لوحة الارساء</target>
</phrase>
<phrase>
<source>Name</source>
<target>الإسم</target>
</phrase>
<phrase>
<source>click to select icon file</source>
<target>انقر لتحديد ملف ايقونة</target>
</phrase>
<phrase>
<source>icon name :</source>
<target>اسم الايقونة :</target>
</phrase>
<phrase>
<source>Maximize vertically</source>
<target>تكبير عمودي</target>
</phrase>
<phrase>
<source>Maximize horizontally</source>
<target>تكبير أفقي</target>
</phrase>
<phrase>
<source>Application</source>
<target>التطبيق</target>
</phrase>
<phrase>
<source>Desktop Switch</source>
<target>مبدل اسطح المكتب</target>
</phrase>
<phrase>
<source>Home</source>
<target>المنزل</target>
</phrase>
<phrase>
<source>Documents</source>
<target>المستندات</target>
</phrase>
<phrase>
<source>Desktop settings</source>
<target>اعدادات خلفية سطح المكتب</target>
</phrase>
<phrase>
<source>Color :</source>
<target>لون الخلفية المبدئي</target>
</phrase>
<phrase>
<source>Color :</source>
<target>لون الخلفية المبدئي :</target>
</phrase>
<phrase>
<source>Edit</source>
<target>تحرير</target>
</phrase>
<phrase>
<source>Add program..</source>
<target>إضافة برنامج..</target>
</phrase>
<phrase>
<source>Program</source>
<target>برنامج</target>
</phrase>
<phrase>
<source>programe name</source>
<target>اسم البرنامج</target>
</phrase>
<phrase>
<source>script</source>
<target>ملف سكريبت</target>
</phrase>
<phrase>
<source>program</source>
<target>تطبيق</target>
</phrase>
<phrase>
<source>Islamic Software</source>
<target>برامج إسلامية</target>
</phrase>
<phrase>
<source>Icons </source>
<target>الأيقونات</target>
</phrase>
<phrase>
<source>General</source>
<target>عام</target>
</phrase>
<phrase>
<source>Themes</source>
<target>السمات</target>
</phrase>
<phrase>
<source>Autostart</source>
<target>بدأ التشغيل</target>
</phrase>
<phrase>
<source>Shortcuts</source>
<target>الاختصارات</target>
</phrase>
<phrase>
<source>Window Manager</source>
<target>مدير النوافذ</target>
</phrase>
<phrase>
<source>Auto Start</source>
<target>بدأ التشغيل</target>
</phrase>
<phrase>
<source>Aconfiguration tool for managing programs start up automatically with ddsktop </source>
<target>ادات لاعداد برامج بدأ التشغيل لسطح المكتب</target>
</phrase>
<phrase>
<source>type</source>
<target>النوع</target>
</phrase>
<phrase>
<source>Add program..</source>
<target>إضافة تطبيق..</target>
</phrase>
<phrase>
<source>shortcut</source>
<target>اختصار</target>
</phrase>
<phrase>
<source>select window manager</source>
<target>حدد مدير النوافذ</target>
</phrase>
<phrase>
<source>Comment</source>
<target>تعريف</target>
</phrase>
<phrase>
<source>File Manager</source>
<target>مدير الملفات</target>
</phrase>
<phrase>
<source>Costum :</source>
<target>تخصيص :</target>
</phrase>
<phrase>
<source>Widget theme</source>
<target>سمة الادوات</target>
</phrase>
<phrase>
<source>Desktop theme</source>
<target>سمة سطح المكتب</target>
</phrase>
<phrase>
<source>Creat new</source>
<target>انشاء سمة</target>
</phrase>
<phrase>
<source>theme name</source>
<target>اسم السمة</target>
</phrase>
<phrase>
<source>Preview</source>
<target>معاينة</target>
</phrase>
<phrase>
<source>Copy File Error</source>
<target>خطأ في نسخ الملف</target>
</phrase>
<phrase>
<source>Cannot copy file %1 to %2</source>
<target>لا يمكن نسخ الملف %1 الى %2</target>
</phrase>
<phrase>
<source>New File</source>
<target>ملف جديد</target>
</phrase>
<phrase>
<source>Enter name:</source>
<target>ادخل اسما :</target>
</phrase>
<phrase>
<source>New Folder</source>
<target>مجلد جديد</target>
</phrase>
<phrase>
<source>Name :</source>
<target>الاسم :</target>
</phrase>
<phrase>
<source>File Name :</source>
<target>المسار :</target>
</phrase>
<phrase>
<source>All file (*)</source>
<target>كل الملفات (*)</target>
</phrase>
<phrase>
<source>Link File</source>
<target>وصلة الى ملف</target>
</phrase>
<phrase>
<source>Create New</source>
<target>انشاء جديد</target>
</phrase>
<phrase>
<source>Open</source>
<target>فتح</target>
</phrase>
<phrase>
<source>Rename</source>
<target>اعد التسمية</target>
</phrase>
<phrase>
<source>Enter New name:</source>
<target>ادخل اسم جديد :</target>
</phrase>
<phrase>
<source>Copy File</source>
<target>نسخ ملف</target>
</phrase>
<phrase>
<source>Wallpapers</source>
<target>الخلفيات</target>
</phrase>
<phrase>
<source>Icons View</source>
<target>مشهد الايقونات</target>
</phrase>
<phrase>
<source>Icons Size :</source>
<target>حجم الايقونات :</target>
</phrase>
<phrase>
<source>Size :</source>
<target>النوع :</target>
</phrase>
<phrase>
<source>Last Modified :</source>
<target>اخر تعديل :</target>
</phrase>
<phrase>
<source>Readable :</source>
<target>يمكن قراءته:</target>
</phrase>
<phrase>
<source>Writable :</source>
<target>يمكن الكتابة فيه :</target>
</phrase>
<phrase>
<source>Comment :</source>
<target> تعريف :</target>
</phrase>
<phrase>
<source>Command :</source>
<target>تنفيذ :</target>
</phrase>
<phrase>
<source>Link to Application</source>
<target>وصلة الى تطبيق</target>
</phrase>
<phrase>
<source>New Desktop File</source>
<target>ملف تطبيق سطح مكتب جديد</target>
</phrase>
<phrase>
<source>Sort Icons By</source>
<target>ترتيب الايقونات</target>
</phrase>
<phrase>
<source>Do you really want to delets these itemes?</source>
<target>هل تريد حذف الملفات المحددة ؟</target>
</phrase>
<phrase>
<source>Size :</source>
<target>الحجم :</target>
</phrase>
<phrase>
<source>Shortcut : </source>
<target> اختصار :</target>
</phrase>
<phrase>
<source>Run</source>
<target>شغل</target>
</phrase>
<phrase>
<source>run any programme whit a cpmmand</source>
<target>تشغيل اي برنامج بواسطة امر</target>
</phrase>
<phrase>
<source>About</source>
<target>حول</target>
</phrase>
<phrase>
<source>Version :</source>
<target>النسخة :</target>
</phrase>
<phrase>
<source>Author :</source>
<target>المؤلف :</target>
</phrase>
<phrase>
<source>About Zakaria</source>
<target>أبو زكريا </target>
</phrase>
<phrase>
<source>Abou zakaria</source>
<target>أبو زكريا</target>
</phrase>
<phrase>
<source>Gpl 3</source>
<target>رخصة جنو العمومية 3</target>
</phrase>
<phrase>
<source>Gpl3</source>
<target>رخصة جنو العمومية 3 </target>
</phrase>
<phrase>
<source>Shortcut Edit</source>
<target>تحرير الاختصار</target>
</phrase>
<phrase>
<source>lisence :</source>
<target>الرخصة :</target>
</phrase>
<phrase>
<source>Mail :</source>
<target>البريد الالكتروني :</target>
</phrase>
<phrase>
<source>Home page :</source>
<target>الموقع الرسمي :</target>
</phrase>
<phrase>
<source>Description :</source>
<target>تعريفات :</target>
</phrase>
<phrase>
<source>Select your default file manager :</source>
<target>حدد مدير الملفات الافتراضي :</target>
</phrase>
<phrase>
<source>Themes Settings</source>
<target>اعدادات السمات</target>
</phrase>
<phrase>
<source>Langages Settings</source>
<target>اعدادات اللغة </target>
</phrase>
<phrase>
<source>Language</source>
<target>اللغة</target>
</phrase>
<phrase>
<source>Widget Style Settings</source>
<target>اعدادات سمة الادوات</target>
</phrase>
<phrase>
<source>Window Manager Settings</source>
<target>اعدادات مدير النوافذ</target>
</phrase>
<phrase>
<source>AutoStart Settings</source>
<target>اعدادات بدأ التشغيل</target>
</phrase>
<phrase>
<source>Select the icon theme you want to use :</source>
<target>حدد سمة الايقونات التي سيتم استخدامها :</target>
</phrase>
<phrase>
<source>Icons Theme Settings</source>
<target>اعدادات سمة الايقونات</target>
</phrase>
<phrase>
<source>File Manager Settings</source>
<target> اعدادات مدير الملفات</target>
</phrase>
<phrase>
<source>Show/Hide Desktop</source>
<target>اظهار /اخفاء سطح المكتب</target>
</phrase>
<phrase>
<source>Islamic</source>
<target>برامج اسلامية</target>
</phrase>
<phrase>
<source>New Item</source>
<target>عنصر جديد</target>
</phrase>
<phrase>
<source>New Subitem</source>
<target>عنصر ابن جديد</target>
</phrase>
<phrase>
<source>Tab 2</source>
<target>حاوي</target>
</phrase>
<phrase>
<source>Tab 2</source>
<target>حاوي 2</target>
</phrase>
<phrase>
<source>Tab 1</source>
<target>حاوي 1</target>
</phrase>
<phrase>
<source>GroupBox</source>
<target>مجموعة</target>
</phrase>
<phrase>
<source>Keyboard Settings</source>
<target>اعدادات لوحة المفاتيح</target>
</phrase>
<phrase>
<source>Advenced</source>
<target>متقدم</target>
</phrase>
<phrase>
<source>Layout</source>
<target>المخطط</target>
</phrase>
<phrase>
<source>Map</source>
<target>الخريطة</target>
</phrase>
<phrase>
<source>Keyboard Settings</source>
<target>اعدادات لوحة المفاتيح</target>
</phrase>
<phrase>
<source>Configure keyboard options</source>
<target>ضبط خيارات لوحة المفاتيح</target>
</phrase>
<phrase>
<source>keyboard Layout</source>
<target>تخطيط لوحة المفاتيح</target>
</phrase>
<phrase>
<source>Add Layout</source>
<target>اضافة تخطيط</target>
</phrase>
<phrase>
<source>add to Desktop</source>
<target>إضافة الى سطح المكتب</target>
</phrase>
<phrase>
<source>Variant :</source>
<target>متنوع :</target>
</phrase>
<phrase>
<source>Layoyt :</source>
<target>تخطيط :</target>
</phrase>
<phrase>
<source>configure...</source>
<target>تحرير...</target>
</phrase>
<phrase>
<source>Layouts</source>
<target>التخطيطات</target>
</phrase>
<phrase>
<source>Variant</source>
<target>متنوع</target>
</phrase>
<phrase>
<source>Key sequance to kill the X server</source>
<target>مفتاح لقتل المدير اكس</target>
</phrase>
<phrase>
<source>Key to change layout</source>
<target>مفتاح التبديل بين التخطيطات</target>
</phrase>
<phrase>
<source>Layout :</source>
<target>المخطط :</target>
</phrase>
<phrase>
<source>delets itemes</source>
<target>حذف العناصر</target>
</phrase>
<phrase>
<source>Do you want to permanently delete all items? This action cannot be undone.</source>
<target>هل تريد حذف الملفات المحددة نهائيا ؟ هذا الخيار لا يمكن التراجع عنه .</target>
</phrase>
<phrase>
<source>Image Repeat</source>
<target>تكرار الصورة</target>
</phrase>
<phrase>
<source>this application exist</source>
<target>هذا التطبيق موجود</target>
</phrase>
<phrase>
<source>this application is not xdg desktop valid</source>
<target>هذا التطبيق ليس ملف سطح مكتب صالح</target>
</phrase>
<phrase>
<source>PushButton</source>
<target>زر</target>
</phrase>
<phrase>
<source>Current theme</source>
<target>السمة الحالية</target>
</phrase>
<phrase>
<source>Prayer Time</source>
<target>أوقات الصلاة</target>
</phrase>
<phrase>
<source>prayer</source>
<target>الصلاة</target>
</phrase>
<phrase>
<source>Fajr</source>
<target>الفجر</target>
</phrase>
<phrase>
<source>Sunrise</source>
<target>الشروق</target>
</phrase>
<phrase>
<source>Dhuhr</source>
<target>الظهر</target>
</phrase>
<phrase>
<source>Asr</source>
<target>العصر</target>
</phrase>
<phrase>
<source>Maghrib</source>
<target>المغرب</target>
</phrase>
<phrase>
<source>Isha'a</source>
<target>العشاء</target>
</phrase>
<phrase>
<source>It is time for %1 prayer.</source>
<target>حان وقت صلاة %1.</target>
</phrase>
<phrase>
<source>%1 minute until %2 prayer.</source>
<target>"%1 دقيقة حتى صلاة %2.</target>
</phrase>
<phrase>
<source>%1 minute after %2 prayer.</source>
<target>%1 دقيقة منذ صلاة %2.</target>
</phrase>
<phrase>
<source>%1 from %2</source>
<target>%1 منذ %2</target>
</phrase>
<phrase>
<source> to %1</source>
<target> حتى %1</target>
</phrase>
<phrase>
<source>&Location</source>
<target>ال&موقع</target>
</phrase>
<phrase>
<source>&Display</source>