-
Notifications
You must be signed in to change notification settings - Fork 690
Expand file tree
/
Copy pathapp.php
More file actions
2388 lines (2387 loc) · 201 KB
/
app.php
File metadata and controls
2388 lines (2387 loc) · 201 KB
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
<?php
return [
'(blank)' => '(فراغ)',
'(included)' => '(متضمَّن)',
'({currencyCode}) {currencySymbol}' => '({currencyCode}) {currencySymbol}',
'({period} days)' => '({period} من الأيام)',
'/path/to/folder' => '/path/to/folder',
'1 job' => 'مهمة واحدة',
'<a>Renew now</a> for another year of updates.' => '<a> التجديد الآن</a> لعام آخر من التحديثات.',
'<span class="visually-hidden">Characters left:</span> {chars, number}' => '<span class="visually-hidden">أحرف متبقية:</span> {chars, number}',
'<strong>Your license has expired!</strong> Renew your {name} license for another year of amazing updates.' => '<strong dir="rtl">لقد انتهت صلاحية ترخيصك!</strong> جدد ترخيص {name} لعام آخر من التحديثات المذهلة.',
'<strong>You’ve reached a breakpoint!</strong> More updates will become available after you install {update}.' => '<strong dir="rtl">لقد وصلت إلى نقطة توقف!</strong> ستتوافر المزيد من التحديثات بعد تثبيت {update}.',
'A critical update is available.' => 'يتوفر تحديث هام.',
'A fatal error has occurred:' => 'حدث خطأ جسيم:',
'A file with the name “{filename}” already exists.' => 'يوجد بالفعل ملف بالاسم "{filename}".',
'A folder with the name “{folderName}” already exists in the folder.' => 'يوجد بالفعل مجلد بالاسم "{folderName}" داخل المجلد.',
'A folder with the name “{folderName}” already exists in the volume.' => 'يوجد بالفعل مجلد بالاسم "{folderName}" داخل وحدة التخزين.',
'A license key is required.' => 'مفتاح الترخيص مطلوب.',
'A server error occurred.' => 'حدث خطأ في الخادم.',
'A subpath is required for this filesystem.' => 'المسار الفرعي مطلوب لنظام الملفات هذا.',
'A template name cannot contain NUL bytes.' => 'لا يمكن لاسم القالب أن يكون فارغاً.',
'ARIA Label' => 'تسمية ARIA',
'Abandoned' => 'مهمل',
'Abort the update' => 'إيقاف التحديث',
'Access the control panel when the system is offline' => 'الوصول إلى لوحة التحكم عندما يكون النظام غير متصل بالإنترنت',
'Access the control panel' => 'الوصول إلى لوحة التحكم',
'Access the site when the system is off' => 'الوصول إلى الموقع عندما يكون النظام متوقف',
'Access {plugin}' => 'الوصول إلى {plugin}',
'Accessibility' => 'إمكانية الوصول',
'Account Security' => 'أمان الحساب',
'Account Type' => 'نوع الحساب',
'Account has not been activated.' => 'لم يتم تنشيط الحساب',
'Account locked. Try again in {time}.' => 'تم قفل الحساب. حاول مجدداً في {time}.',
'Account locked.' => 'تم قفل الحساب.',
'Account suspended.' => 'تم إيقاف الحساب.',
'Account' => 'الحساب',
'Accounts with this permission could use it to escalate their own permissions.' => 'إن الحسابات التي لديها هذا الأذن يمكنها استخدامه لتصعيد أذوناتها الخاصة.',
'Action' => 'الإجراء',
'Actions' => 'الإجراءات',
'Activate account' => 'تنشيط الحساب',
'Activation email sent.' => 'تم إرسال رسالة التنشيط.',
'Active Installs' => 'تثبيتات نشطة',
'Active Trials' => 'نسخ تجريبية',
'Active trials added to the cart.' => 'تمت إضافة الفترات التجريبية النشطة إلى سلة التسوق.',
'Active' => 'نشط',
'Activity' => 'النشاط',
'Add Group' => 'إضافة مجموعة',
'Add Row Label' => 'إضافة تسمية للصف',
'Add a category' => 'إضافة فئة',
'Add a color' => 'إضافة لون',
'Add a column' => 'إضافة عمود',
'Add a field' => 'Add a field',
'Add a filter' => 'إضافة عامل تصفية',
'Add a passkey' => 'إضافة مفتاح مرور',
'Add a row' => 'إضافة صف',
'Add a rule' => 'إضافة قاعدة',
'Add a tag' => 'إضافة علامة',
'Add a token' => 'إضافة رمز',
'Add a user' => 'إضافة مستخدم',
'Add all to cart' => 'إضافة الكل إلى السلة',
'Add an asset' => 'إضافة أصل',
'Add an entry' => 'إضافة إدخال',
'Add an option' => 'إضافة خيار',
'Add option' => 'إضافة خيار',
'Add to cart' => 'أضف إلى السلة',
'Add {type} above' => 'إضافة {type} أعلاه',
'Add' => 'إضافة',
'Added to cart' => 'تمت الإضافة إلى السلة',
'Address Fields' => 'حقول العنوان',
'Address Line 1' => 'العنوان 1',
'Address Line 2' => 'العنوان 2',
'Address Line 3' => 'سطر العنوان 3',
'Address fields saved.' => 'تم حفظ حقول العنوان.',
'Address' => 'العنوان',
'Addresses' => 'العناوين',
'Add…' => 'إضافة…',
'Admin' => 'مسؤول',
'Administrate users' => 'مستخدمين مسؤولين',
'Administrative Area' => 'المنطقة الإدارية',
'Admins' => 'المدراء',
'Advanced Fields' => 'الحقول المتقدمة',
'Advanced' => 'متقدم',
'Affiliated Site' => 'الموقع التابع',
'After other {type}' => 'بعد {type} آخر',
'After…' => 'بعد…',
'Aliases' => 'الأسماء المستعارة',
'All Sites' => 'جميع المواقع',
'All color values must be valid.' => 'يجب أن تكون جميع الألوان صالحة.',
'All done!' => 'اكتمل الكل!',
'All done' => 'اكتمل الكل',
'All elements' => 'كل العناصر',
'All entries' => 'جميع الإدخالات',
'All jobs released.' => 'تم تحرير جميع المهام.',
'All option labels must be unique.' => 'يجب أن تكون جميع تسميات الخيار فريدة.',
'All option values must be unique.' => 'يجب أن تكون جميع القيم فريدة.',
'All plugins must be compatible with Craft {version} before you can upgrade.' => 'يجب أن تتوافق جميع الملحقات مع إصدار Craft {version} قبل أن تتمكن من الترقية.',
'All reviews' => 'جميع المراجعات',
'All targets must have a label.' => 'يجب أن تكون جميع الأهداف لديها تسمية.',
'All users' => 'جميع المستخدمين',
'All' => 'الكل',
'Allow Upscaling' => 'السماح بالترقية',
'Allow anchors' => 'السماح بروابط الارتساء',
'Allow custom URL schemes' => 'السماح بمخططات URL المُخصَّصة',
'Allow custom colors' => 'السماح بالألوان المُخصَّصة',
'Allow custom options' => 'السماح بالخيارات المخصَّصة',
'Allow line breaks in titles' => 'السماح بفواصل الأسطر في العناوين',
'Allow line breaks' => 'السماح بفواصل الأسطر',
'Allow public registration' => 'السماح بالتسجيل العام',
'Allow root-relative URLs' => 'السماح بعناوين URL ذات الصلة بالجذر',
'Allow self relations' => 'السماح بالعلاقات الذاتية',
'Allow subfolders' => 'السماح بالمجلدات الفرعية',
'Allow uploading directly to the field' => 'السماح بالتحميل مباشرة إلى الحقل',
'Allowed File Types' => 'أنواع الملفات المسموح بها',
'Allowed Link Types' => 'أنواع الروابط المسموح بها',
'Allows creating drafts of new {type}.' => 'يسمح بإنشاء مسودات لإدخالات {type} جديدة.',
'Allows deleting other users’ {type} for all sites.' => 'تسمح بحذف {type} للمستخدمين الآخرين لجميع المواقع.',
'Allows deleting other users’ {type} for individual sites, provided the user has access to them.' => 'تسمح بحذف {type} للمستخدمين الفرديين للمواقع الفردية، بشرط أن يكون لدى المستخدم وصول إليها.',
'Allows deleting {type} for all sites.' => 'تسمح بحذف {type} لجميع المواقع.',
'Allows deleting {type} for individual sites, provided the user has access to them.' => 'تسمح بحذف {type} للمواقع الفردية، بشرط أن يكون لدى المستخدم وصول إليها.',
'Allows fully saving canonical {type} (directly or by applying drafts).' => 'يسمح بحفظ إدخالات {type} المتعارف عليها بالكامل (مباشرةً أو عن طريق تطبيق المسودات).',
'Allows viewing existing {type} and creating drafts for them.' => 'يسمح بعرض إدخالات {type} الحالية وإنشاء مسودات لها.',
'Already in your cart' => 'في السلة بالفعل',
'Alternative Text' => 'نص بديل',
'Amber' => 'عنبري',
'An elevated session is required to change a user’s email.' => 'يلزم وجود جلسة بصلاحيات مرتفعة لتغيير البريد الإلكتروني للمستخدم.',
'An error occurred when duplicating the category.' => 'حدث خطأ عند عمل نسخة مماثلة من الفئة.',
'An error occurred when duplicating the entry.' => 'حدث خطأ عند عمل نسخة مماثلة من الإدخال.',
'An error occurred when installing {name}.' => 'حدث خطأ عند تثبيت {name}.',
'An error occurred while processing your request.' => 'حدث خطأ أثناء معالجة طلبك.',
'Ancestors' => 'الأصول',
'Announcements' => 'الإعلانات',
'Another page already has that name.' => 'هناك صفحة أخرى تحمل هذا الاسم بالفعل.',
'Any changes will be lost if you leave this page.' => 'سيتم فقدان أي تغييرات إذا غادرت هذه الصفحة.',
'Anything cached with {method}' => 'Anything cached with {method}',
'Application Info' => 'معلومات التطبيق',
'Applied new migrations successfully.' => 'تم تطبيق الترحيلات الجديدة بنجاح.',
'Applied “{name}”' => 'تم تطبيق "{name}"',
'Applied' => 'مُطبق',
'Apply Time' => 'تطبيق التوقيت',
'Apply YAML Changes' => 'تطبيق تغييرات YAML',
'Apply YAML changes' => 'تطبيق تغييرات YAML',
'Apply changes in your project config YAML files to the loaded project config.' => 'تطبيق التغييرات الموجودة في ملفات تكوين مشروع YAML على تكوين المشروع الذي تم تحميله.',
'Apply changes only' => 'تطبيق التغييرات فقط',
'Apply draft' => 'تطبيق المسودة',
'Apply new migrations' => 'تطبيق الترحيلات الجديدة',
'Apply this to the {number} remaining conflicts?' => 'هل سيتم تطبيق ذلك على {number} من التعارضات المتبقية؟',
'Apply' => 'تطبيق',
'Applying changes from the project config YAML files…' => 'جار تطبيق التغييرات من ملف تكوين مشروع YAML…',
'Applying new propagation method to elements' => 'تطبيق طريقة نشر جديدة على الكتل البرمجية للعناصر',
'Applying new propagation method to {name} entries' => 'تطبيق طريقة نشر جديدة على إدخالات {name}',
'Applying this change to existing entries can take some time.' => 'يمكن أن يستغرق تطبيق هذا التغيير على الإدخالات الحالية بعض الوقت.',
'Are you sure you want to close the editor? Any changes will be lost.' => 'هل أنت متأكد أنك تريد إغلاق المحرر؟ سيتم فقد أي تغييرات.',
'Are you sure you want to close this screen? Any changes will be lost.' => 'هل أنت متأكد أنك تريد إغلاق هذه الشاشة؟ سيتم فقدان أي تغييرات.',
'Are you sure you want to delete the logo?' => 'هل تريد بالتأكيد حذف الشعار؟',
'Are you sure you want to delete the selected {type} along with their descendants?' => 'هل تريد بالتأكيد حذف {type} المحدد مع العناصرالتابعة؟',
'Are you sure you want to delete the selected {type} for this site?' => 'هل أنت متأكد أنك تريد حذف {type} المحدد لهذا الموقع؟',
'Are you sure you want to delete the selected {type}?' => 'هل تريد بالتأكيد حذف {type} المحددة؟',
'Are you sure you want to delete the {type} for this site?' => 'هل أنت متأكد أنك تريد حذف {type} لهذا الموقع؟',
'Are you sure you want to delete the “{name}” passkey?' => 'هل تريد بالتأكيد حذف مفتاح المرور "{name}"؟',
'Are you sure you want to delete this group?' => 'هل تريد بالتأكيد حذف هذه المجموعة؟',
'Are you sure you want to delete this image?' => 'هل تريد بالتأكيد حذف هذه الصورة؟',
'Are you sure you want to delete this route?' => 'هل أنت متأكد أنك تريد حذف هذا الطريق؟',
'Are you sure you want to delete this {type}?' => 'هل أنت متأكد أنك تريد حذف هذا {type}؟',
'Are you sure you want to delete {numElements, plural, =1{this} other{these}} {type}?' => 'Are you sure you want to delete {numElements, plural, =1{this} other{these}} {type}?',
'Are you sure you want to delete “{name}” and all entries of that type?' => 'هل تريد بالتأكيد حذف "{name}" وكل الإدخالات من هذا النوع؟',
'Are you sure you want to delete “{name}” and all its entries?' => 'هل تريد بالتأكيد حذف ”{name}“ وكل الإدخالات المرتبطة به؟',
'Are you sure you want to delete “{name}”?' => 'هل تريد بالتأكيد حذف ”{name}“؟',
'Are you sure you want to discard the pending project config YAML changes?' => 'هل أنت متأكد من أنك تريد تجاهل تغييرات تكوين مشروع YAML المعلقة؟',
'Are you sure you want to discard your changes?' => 'هل أنت متأكد أنك تريد تجاهل تغييراتك؟',
'Are you sure you want to move the selected items?' => 'هل تريد بالتأكيد نقل العناصر المُحدَّدة؟',
'Are you sure you want to permanently delete the selected {type}?' => 'هل تريد بالتأكيد حذف {type} المحدد نهائيًا؟',
'Are you sure you want to permanently delete {numElements, plural, =1{this} other{these}} {type}?' => 'Are you sure you want to permanently delete {numElements, plural, =1{this} other{these}} {type}?',
'Are you sure you want to release all jobs in the queue?' => 'هل أنت متأكد أنك تريد تحرير جميع المهام في قائمة الانتظار؟',
'Are you sure you want to release the job “{description}”?' => 'هل أنت متأكد من أنك تريد تحرير المهمة "{description}؟',
'Are you sure you want to remove the page “{name}”?' => 'هل أنت متأكد من رغبتك في إزالة الصفحة "{name}"؟',
'Are you sure you want to remove {name} verification?' => 'هل تريد بالتأكيد إزالة التحقق من {name}؟',
'Are you sure you want to remove {plugin}?' => 'هل أنت متأكد من رغبتك في إزالة {plugin}؟',
'Are you sure you want to restart the job “{description}”? Any progress could be lost.' => 'هل أنت متأكد من أنك تريد إعادة تشغيل المهمة "{description}"؟ قد يتم فقد أي تقدم.',
'Are you sure you want to transfer your license to this domain?' => 'هل تريد بالتأكيد نقل ترخيصك إلى هذا النطاق؟',
'Are you sure you want to undo the move?' => 'هل تريد بالتأكيد التراجع عن الحركة؟',
'Are you sure you want to uninstall {plugin}? You will lose all of its associated data.' => 'هل تريد بالتأكيد إلغاء تثبيت {plugin}؟ ستفقد كل البيانات المرتبطة به.',
'Area' => 'المنطقة',
'As currency values' => 'كقيم عملات',
'As decimal numbers' => 'كأرقام عشرية',
'Ascending' => 'تصاعدي',
'Ask on Stack Exchange' => 'سؤال على موقع Stack Exchange',
'Asset Filesystem' => 'نظام ملفات الأصول',
'Asset Indexes' => 'فهارس الأصول',
'Asset Location' => 'موقع الأصل',
'Asset Settings' => 'إعدادات الأصول',
'Asset caches' => 'الذاكرة المؤقتة للأصول',
'Asset indexing data' => 'بيانات فهرسة الأصول',
'Asset not found with that id' => 'لم يتم العثور على أصل بهذا المعرف',
'Asset transform index' => 'فهرس تحويل الأصول',
'Asset' => 'الأصل',
'Assets' => 'الأصول',
'Assign user permissions' => 'تخصيص أذونات المستخدمين',
'Assign users to this group' => 'تعيين المستخدمين لهذه المجموعة',
'Assign users to “{group}”' => 'تخصيص المستخدمين إلى "{group}"',
'At least one currently-enabled site must remain enabled.' => 'يجب أن يظل أحد المواقع الممكّنة حاليًا على الأقل ممكّنًا.',
'Attach a database backup' => 'إرفاق نسخة من قاعدة البيانات',
'Attach an additional file' => 'إرفاق ملف إضافي',
'Attach error logs' => 'إرفاق سجلات الأخطاء',
'Attachment' => 'المرفق',
'Attribute Name' => 'اسم السمة',
'Attributes' => 'السمات',
'Audio' => 'صوت',
'Auth error' => 'خطأ في المصادقة',
'Authentication method removed.' => 'تمت إزالة طريقة المصادقة.',
'Authenticator App' => 'تطبيق المصادقة',
'Author Group' => 'مجموعة المؤلفين',
'Author' => 'المؤلف',
'Authorization Header' => 'عنوان الترخيص',
'Authors' => 'المؤلفون',
'Auto' => 'تلقائي',
'Auto-refresh' => 'التحديث التلقائي',
'Auto-renew for {price} annually, starting on {date}.' => 'التجديد التلقائي مقابل {price} سنويًا، يبدأ في {date}.',
'Back to pages' => 'الرجوع إلى الصفحات',
'Back to sign in' => 'العودة إلى تسجيل الدخول',
'Back to sources' => 'الرجوع إلى المصادر',
'Back to the queue index' => 'العودة إلى فهرس قائمة الانتظار',
'Back' => 'رجوع',
'Backing-up database…' => 'يتم نسخ قاعدة البيانات احتياطياً…',
'Backup' => 'نسخ احتياطي',
'Bad Request' => 'طلب غير صالح',
'Base Path' => 'مسار القاعدة',
'Base URL' => 'عنوان URL أساسي',
'Before deleting {label}, please address the following {numBlockers, plural, =1{issue} other{issues}}:' => 'Before deleting {label}, please address the following {numBlockers, plural, =1{issue} other{issues}}:',
'Before other {type}' => 'قبل {type} آخر',
'Before…' => 'قبل…',
'Blank values will default to the settings above.' => 'سيتم ضبط القيم الخالية على الإعدادات أعلاه بشكلٍ افتراضي.',
'Blocks' => 'الكتل',
'Blue' => 'أزرق',
'Body' => 'النص الأساسي',
'Bottom Handle' => 'المؤشر السفلي',
'Bottom-Center' => 'منتصف الأسفل',
'Bottom-Left Handle' => 'المؤشر السفلي الأيسر',
'Bottom-Left' => 'أسفل اليسار',
'Bottom-Right Handle' => 'المؤشر السفلي الأيمن',
'Bottom-Right' => 'أسفل اليمين',
'Branch Limit' => 'حد الفروع',
'Breadcrumbs' => 'فتات الخبز',
'Briefly describe your issue or idea.' => 'اشرح بإيجاز مشكلتك أو فكرتك.',
'Briefly describe your question.' => 'اشرح بإيجاز سؤالك.',
'Bug reports and feature requests' => 'تقارير الأخطاء وطلبات الميزات',
'Button Group' => 'مجموعة الأزرار',
'Buy now' => 'شراء الآن',
'Buy {name}' => 'شراء {name}',
'Bytes' => 'بايت',
'Cache remote images' => 'تخزين مؤقت للصور البعيدة',
'Caches' => 'ذاكرة التخزين المؤقت',
'Can be dismissed?' => 'يمكن تجاهله؟',
'Can be exploited by DoS attacks.' => 'Can be exploited by DoS attacks.',
'Can be exploited to reveal sensitive content by information disclosure attacks.' => 'Can be exploited to reveal sensitive content by information disclosure attacks.',
'Can contain Markdown formatting.' => 'يمكن أن يحتوي على تنسيق Markdown.',
'Cancel' => 'إلغاء',
'Cannot find the indexing session, or there’s nothing to review.' => 'لا يمكن العثور على جلسة الفهرسة، أو ليس هناك شيئًا لمراجعته.',
'Canton' => 'كانتون',
'Can’t run Craft CMS' => 'يتعذر تشغيل Craft CMS',
'Captions/Subtitles' => 'التسميات التوضيحية / الترجمات',
'Card Attributes' => 'سمات البطاقة',
'Card Layout Editor' => 'محرر تخطيط البطاقات',
'Card Layout Preview' => 'معاينة تخطيط البطاقة',
'Card grid' => 'شبكة بطاقات',
'Cards' => 'البطاقات',
'Cart' => 'سلة',
'Categories' => 'الفئات',
'Category Group - {name}' => 'مجموعة الفئات - {name}',
'Category Group' => 'مجموعات الفئات',
'Category Groups' => 'مجموعات الفئات',
'Category URI Format' => 'تنسيق عنوان URI للفئة',
'Category group saved.' => 'تم حفظ مجموعة الفئات.',
'Category' => 'الفئة',
'Center-Center' => 'نقطة مركز الوسط',
'Center-Left' => 'منتصف اليسار',
'Center-Right' => 'منتصف اليمين',
'Change icon' => 'تغيير الأيقونة',
'Change logo' => 'تغيير الشعار',
'Change photo' => 'تغيير الصورة',
'Change the author of other users’ entries' => 'تغيير مؤلف إدخالات المستخدمين الآخرين',
'Change your Password' => 'تغيير كلمة مرورك',
'Change' => 'تغيير',
'Changelog' => 'سجل التغييرات',
'Changes discarded.' => 'تم تجاهل التغييرات.',
'Changes saved.' => 'تم حفظ التغييرات.',
'Changes to these settings aren’t permitted in this environment.' => 'غير مُصرَّح بإجراء تغييرات على هذه الإعدادات في هذه البيئة.',
'Changing this may result in data loss.' => 'تغيير هذا قد يتسبب في فقدان البيانات.',
'Channel' => 'القناة',
'Channels' => 'القنوات',
'Characters' => 'أحرف',
'Charts' => 'الخرائط',
'Check again' => 'التحقق مرة أخرى',
'Check for {onLabel}.' => 'وضع علامة على {onLabel}.',
'Check your email for instructions to reset your password.' => 'تحقق من بريدك الالكتروني للحصول على إرشادات إعادة تعيين كلمة المرور الخاصة بك.',
'Checkbox Options' => 'خيارات مربع الاختيار',
'Checkbox' => 'مربع اختيار',
'Checkboxes' => 'مربعات اختيار',
'Checking environment…' => 'جاري فحص البيئة…',
'Checking for updates…' => 'يتم التحقق من وجود تحديثات…',
'Checking server requirements…' => 'جارٍ التحقق من متطلبات الخادم...',
'Checking…' => 'جارٍ الفحص...',
'Checkout' => 'السداد مع الخروج',
'Choose a currency…' => 'اختر عملة…',
'Choose a new author' => 'Choose a new author',
'Choose a new password' => 'اختر كلمة مرور جديدة',
'Choose a new {type}' => 'Choose a new {type}',
'Choose a page' => 'اختيار صفحة',
'Choose a password' => 'اختر كلمة مرور',
'Choose a site' => 'اختر موقع',
'Choose a user group that publicly-registered members will be added to by default.' => 'اختر مجموعة مستخدمين بحيث يتم افتراضياً إضافة من سجل عبر التسجيل العام من المستخدمين إليها.',
'Choose how nested {type} should be presented to authors.' => 'اختر طريقة تقديم إدخالات {type} المتداخلة إلى المؤلفين.',
'Choose how the field should look for authors.' => 'اختر كيف ينبغي أن يظهر هذا الحقل للمؤلفين.',
'Choose optional features available to this schema:' => 'Choose optional features available to this schema:',
'Choose the available content for querying with this schema:' => 'اختر المحتوى المتاح للاستعلام عن هذا المخطط:',
'Choose the available mutations for this schema:' => 'اختر التغيرات المتاحة لهذا المخطط:',
'Choose the site-specific settings for nested entries.' => 'اختر الإعدادات الخاصة بالموقع للإدخالات المتداخلة.',
'Choose the types of entries that can be created in this field.' => 'اختر أنواع الإدخالات التي يمكن إنشاؤها في هذا الحقل.',
'Choose the types of entries that can be included in this section.' => 'اختر أنواع الإدخالات التي يمكن تضمينها في هذا القسم.',
'Choose which filesystem assets should be stored in.' => 'اختر نظام ملفات الأصول التي يجب تخزينها.',
'Choose which filesystem image transforms should be stored in.' => 'اختر أي تحويلات صور نظام الملفات يجب تخزينها.',
'Choose which sites this section should be available in, and configure the site-specific settings.' => 'اختر المواقع التي يجب أن يتوفر بها هذا القسم، وقم بتكوين الإعدادات الخاصة بالموقع.',
'Choose which sites this source should be visible for.' => 'اختر المواقع التي ينبغي أن يكون هذا المصدر مرئيًا لها.',
'Choose which table columns should be visible by default.' => 'اختر أعمدة الجدول التي ينبغي أن تكون ظاهرة بشكلٍ افتراضي.',
'Choose which table columns should be visible for this source by default.' => 'اختر أعمدة الجدول التي ينبغي أن تكون ظاهرة لهذا المصدر بشكلٍ افتراضي.',
'Choose which user groups should have access to this source.' => 'اختر مجموعات المستخدمين التي يجب أن يكون لها حق الوصول إلى هذا المصدر.',
'Choose which users must use two-step verification to sign in.' => 'Choose which users must use two-step verification to sign in.',
'Choose' => 'اختر',
'City' => 'المدينة',
'City/Town' => 'المدينة/البلدة',
'Class Name' => 'اسم الفئة',
'Class' => 'الفئة',
'Clear Caches' => 'مسح التخزين المؤقت',
'Clear all' => 'مسح الكل',
'Clear caches' => 'مسح ذاكرة التخزين المؤقت',
'Clear search' => 'مسح البحث',
'Clear' => 'مسح',
'Clearing cache:' => 'جاري مسح ذاكرة التخزين المؤقتة:',
'Close Preview' => 'إغلاق المعاينة',
'Close' => 'إغلاق',
'Closed Issues' => 'مشكلات تم إغلاقها',
'Collapse all blocks' => 'طي جميع الكتل',
'Collapse selected blocks' => 'طي الكتل المحددة',
'Collapse' => 'طي',
'Color hex value' => 'تلوين قيمة نظام العد الست عشري',
'Color picker' => 'أداة انتقاء اللون',
'Color' => 'اللون',
'Column Heading' => 'عنوان العمود',
'Column handles can’t be in the format “{format}”.' => 'لا يمكن أن تكون مقابض الأعمدة بتنسيق "{format}".',
'Column headers with buttons are sortable' => 'رؤوس الأعمدة ذات الأزرار قابلة للترتيب',
'Compatibility' => 'التوافق',
'Compiled classes' => 'فئات مجمعة',
'Compiled templates' => 'القوالب المترجمة برمجياً',
'Complete the Update' => 'إتمام التحديث',
'Completed job' => 'إنهاء مهمة',
'Composer output:' => 'نتيجة أداة Composer:',
'Composer was unable to install the updates due to a dependency conflict.' => 'تعذر على أداة Composer تثبيت التحديثات بسبب تعارض في التبعية.',
'Composer was unable to install the updates.' => 'تعذر على أداة Composer تثبيت التحديثات.',
'Composer was unable to remove the plugin.' => 'تعذر على أداة Composer إزالة الملحق.',
'Composer was unable to revert the updates.' => 'تعذر على أداة Composer التراجع عن التحديثات.',
'Compressed' => 'مضغوط',
'Condition {num, number}' => 'الحالة {num, number}',
'Configure the category group’s site-specific settings.' => 'قم بتكوين الإعدادات الخاصة بموقع مجموعة الفئات.',
'Confirm your identity.' => 'قم بتأكيد هويتك.',
'Congrats! You’re up to date.' => 'تهانينا! لديك آخر تحديث.',
'Connect the database' => 'الاتصال بقاعدة البيانات',
'Connecting to CraftCMS.com…' => 'جاري الاتصال بـ CraftCMS.com...',
'Constraints' => 'القيود',
'Contact Developer Support' => 'التواصل مع دعم المطوِّرين',
'Content Block' => 'كتلة المحتوى',
'Content Blocks' => 'كتل المحتوى',
'Content' => 'المحتوى',
'Contents of {path}' => 'محتوى {path}',
'Context' => 'السياق',
'Continue anyway' => 'متابعة على أي حال',
'Continue shopping' => 'مواصلة التسوق',
'Continue to the control panel in {num, number} {num, plural, =1{second} other{seconds}}' => 'تابع إلى لوحة التحكم بعد {num, number} {num, plural, =1{ثانية} other{من الثواني}}',
'Continue to the control panel' => 'تابع إلى لوحة التحكم',
'Continue' => 'متابعة',
'Control panel resources' => 'مصادر لوحة التحكم',
'Cookies must be enabled to access the Craft CMS control panel.' => 'يجب تمكين ملفات تعريف الارتباط (الكوكيز) للوصول إلى لوحة التحكم الخاصة بـ Craft CMS.',
'Cooldown Time Remaining' => 'وقت التهدئة المتبقي',
'Copied to clipboard.' => 'تم النسخ إلى الحافظة.',
'Copy URL' => 'نسخ عنوان URL',
'Copy activation URL…' => 'نسخ عنوان URL الخاص بالتنشيط…',
'Copy all {type}' => 'نسخ كل {type}',
'Copy attribute name' => 'نسخ اسم السمة',
'Copy field handle' => 'نسخ مؤشر الحقل',
'Copy from' => 'النسخ من',
'Copy impersonation URL…' => 'انسخ عنوان URL الخاص بانتحال الهوية…',
'Copy package name' => 'نسخ اسم الحزمة',
'Copy password reset URL…' => 'نسخ عنوان URL الخاص بإعادة تعيين كلمة المرور.…',
'Copy plugin handle' => 'نسخ مؤشر الملحق',
'Copy reference tag' => 'نسخ علامة المرجع',
'Copy selected {type}' => 'نسخ {type} المحددة',
'Copy the URL' => 'نسخ عنوان URL',
'Copy the activation URL' => 'نسخ عنوان URL الخاص بالتنشيط',
'Copy the impersonation URL, and open it in a new private window.' => 'انسخ عنوان URL الخاص بانتحال الهوية وافتحه في نافذة خاصة جديدة.',
'Copy the reference tag' => 'نسخ علامة المرجع',
'Copy to clipboard' => 'النسخ إلى الحافظة',
'Copy value from site…' => 'نسخ القيمة من الموقع…',
'Copy {type}' => 'نسخ {type}',
'Copy “{name}” value' => 'نسخ قيمة "{name}"',
'Copy' => 'نسخ',
'Could not create a preview token.' => 'تعذر إنشاء رمز المعاينة.',
'Could not create the group:' => 'تعذر إنشاء المجموعة:',
'Could not duplicate all elements due to validation errors.' => 'تعذر تكرار جميع العناصر بسبب أخطاء في التحقق من الصحة.',
'Could not duplicate elements due to validation errors.' => 'تعذر تكرار العناصر بسبب أخطاء في التحقق من الصحة.',
'Could not find a suitable replacement filename for “{filename}”.' => 'تعذر العثور على اسم ملف بديل مناسب لأجل "{filename}".',
'Could not generate a unique URI based on the URI format.' => 'تعذر إنشاء عنوان URI فريد على أساس تنسيق URI.',
'Could not open file for streaming at {path}' => 'تعذر فتح الملف للتدفق في المسار {path}',
'Could not read SVG contents.' => 'تعذرت قراءة محتويات SVG.',
'Could not rename the group:' => 'تعذر إعادة تسمية المجموعة:',
'Could not save due to validation errors.' => 'تعذَّر الحفظ بسبب أخطاء التحقق.',
'Could not update status due to a validation error.' => 'تعذر تحديث الحالة بسبب خطأ في التحقق من الصحة.',
'Could not update statuses due to validation errors.' => 'تعذر تحديث الحالات بسبب أخطاء في التحقق من الصحة.',
'Could not write to the temporary upload folder.' => 'تعذرت الكتابة إلى مجلد التحميل المؤقت.',
'Couldn’t add all items to the cart.' => 'تعذرت إضافة كل البنود إلى السلة.',
'Couldn’t apply changes.' => 'تعذر تطبيق التغييرات.',
'Couldn’t apply draft.' => 'تعذر تطبيق المسودة.',
'Couldn’t apply new migrations.' => 'تعذر تطبيق الترحيلات الجديدة.',
'Couldn’t backup the database. How would you like to proceed?' => 'تعذر عمل نسخ احتياطي لقاعدة البيانات. كيف ترغب في المتابعة؟',
'Couldn’t change Craft CMS edition.' => 'تعذَّر تغيير إصدار Craft CMS.',
'Couldn’t create {type}.' => 'تعذر إنشاء {type}.',
'Couldn’t delete all {type}.' => 'تعذَّر حذف كل إدخالات {type}.',
'Couldn’t delete {type}.' => 'تعذر حذف {type}.',
'Couldn’t delete “{name}”.' => 'تعذر حذف ”{name}“.',
'Couldn’t disable plugin.' => 'تعذر تعطيل الملحق.',
'Couldn’t duplicate {type}.' => 'تعذر تكرار {type}.',
'Couldn’t enable plugin.' => 'تعذر تمكين الملحق.',
'Couldn’t find any sections that all selected elements could be moved to.' => 'تعذَّر العثور على أي أقسام يمكن نقل جميع العناصر المحدَّدة إليها.',
'Couldn’t generate a password reset URL: {error}' => 'تعذَّر إنشاء عنوان URL لإعادة تعيين كلمة المرور: {error}',
'Couldn’t generate an activation URL: {error}' => 'تعذَّر إنشاء عنوان URL للتنشيط: {error}',
'Couldn’t install plugin.' => 'تعذر تثبيت الملحق.',
'Couldn’t load CMS editions.' => 'تعذر تحميل إصدارات CMS.',
'Couldn’t load active trials.' => 'لا يمكن تحميل النسخ التجريبية النشطة.',
'Couldn’t move entries to the “{name}” section.' => 'تعذَّر نقل الإدخالات إلى قسم "{name}".',
'Couldn’t reorder items.' => 'تعذَّرت إعادة ترتيب العناصر.',
'Couldn’t save address fields.' => 'تعذر حفظ حقول العنوان.',
'Couldn’t save email settings.' => 'تعذر حفظ إعدادات البريد.',
'Couldn’t save entry type.' => 'تعذر حفظ نوع الإدخال.',
'Couldn’t save entry.' => 'تعذر حفظ الإدخال.',
'Couldn’t save field.' => 'تعذر حفظ الحقل.',
'Couldn’t save filesystem.' => 'تعذر حفظ نظام الملفات.',
'Couldn’t save group.' => 'تعذر حفظ المجموعة.',
'Couldn’t save message.' => 'تعذر حفظ الرسالة.',
'Couldn’t save new order.' => 'تعذر حفظ الأمر الجديد.',
'Couldn’t save new route order.' => 'تعذر حفظ أمر التوجيه الجديد.',
'Couldn’t save password.' => 'تعذَّر حفظ كلمة المرور.',
'Couldn’t save plugin settings.' => 'تعذر حفظ إعدادات الملحق.',
'Couldn’t save public schema settings.' => 'تعذر حفظ إعدادات المخطط العام.',
'Couldn’t save route.' => 'تعذر حفظ المسار.',
'Couldn’t save schema.' => 'تعذر حفظ المخطط.',
'Couldn’t save section.' => 'تعذر حفظ القسم.',
'Couldn’t save the category group.' => 'تعذر حفظ مجموعة الفئات.',
'Couldn’t save the site.' => 'تعذر حفظ الموقع.',
'Couldn’t save the tag group.' => 'تعذر حفظ مجموعة العلامات.',
'Couldn’t save token.' => 'تعذر حفظ الرمز المميز.',
'Couldn’t save user fields.' => 'تعذر حفظ حقول المستخدم.',
'Couldn’t save volume.' => 'تعذر حفظ وحدة التخزين.',
'Couldn’t save widget.' => 'تعذر حفظ عنصر الواجهة.',
'Couldn’t save {type}.' => 'تعذر حفظ {type}.',
'Couldn’t send activation email. Check your email settings.' => 'تعذر إرسال البريد الإلكتروني الخاص بالتنشيط. تحقق من إعدادات البريد الإلكتروني لديك.',
'Couldn’t send the activation email: {error}' => 'تعذَّر إرسال رسالة البريد الإلكتروني للتنشيط: {error}',
'Couldn’t suspend all users.' => 'تعذر تعليق جميع المستخدمين.',
'Couldn’t suspend user.' => 'لا يمكن تعليق عضوية المستخدم.',
'Couldn’t uninstall plugin.' => 'تعذر إلغاء تثبيت الملحق.',
'Couldn’t unsuspend all users.' => 'تعذر إلغاء تعليق جميع المستخدمين.',
'Couldn’t unsuspend user.' => 'تعذر إلغاء إيقاف المستخدم.',
'Couldn’t update cart’s email.' => 'تعذَّر تحديث البريد الإلكتروني للعربة.',
'Couldn’t update item in cart.' => 'تعذَّر تحديث العنصر في العربة.',
'Couldn’t update password.' => 'تعذر تحديث كلمة المرور.',
'Country' => 'البلد',
'County' => 'المقاطعة',
'Craft CMS does not support backtracking to this version. Please update to Craft CMS {version} or later.' => 'لا يدعم Craft CMS التراجع إلى هذا الإصدار. الرجاء التحديث إلى Craft CMS إصدار {version} أو أحدث.',
'Craft CMS edition changed.' => 'تم تغيير إصدار Craft CMS.',
'Craft CMS is running in Dev Mode.' => 'Craft CMS يشتغل حالياً في وضع التطوير.',
'Craft Support' => 'دعم Craft',
'Craft isn’t installed yet.' => 'لم يتم تثبيت Craft بعد.',
'Craft {version} Upgrade' => 'الترقية إلى إصدار Craft {version}',
'Create a draft' => 'إنشاء مسودة',
'Create a new GraphQL Schema' => 'إنشاء مخطط GraphQL جديد',
'Create a new GraphQL token' => 'إنشاء رمز GraphQL جديد',
'Create a new asset volume' => 'إنشاء وحدة تخزين أصول جديدة',
'Create a new category group' => 'إنشاء مجموعة فئة جديدة',
'Create a new child {type}' => 'أنشئ {type} فرعيًا جديدًا',
'Create a new entry type' => 'إنشاء نوع إدخال جديد',
'Create a new field' => 'إنشاء حقل جديد',
'Create a new filesystem' => 'إنشاء نظام ملفات جديد',
'Create a new filesystem…' => 'إنشاء نظام ملفات جديد…',
'Create a new image transform' => 'إنشاء تحويل جديد للصورة',
'Create a new route' => 'إنشاء مسار جديد',
'Create a new section' => 'إنشاء قسم جديد',
'Create a new site' => 'إنشاء موقع جديد',
'Create a new tag group' => 'إنشاء مجموعة علامات جديدة',
'Create a new user group' => 'إنشاء مجموعة مستخدمين جديدة',
'Create a new volume…' => 'إنشاء وحدة تخزين جديدة…',
'Create a new {section} entry' => 'إنشاء إدخال جديد في {section}',
'Create a new {type} after' => 'أنشئ {type} جديدًا بعد',
'Create a new {type} before' => 'أنشئ {type} جديدًا قبل',
'Create a new {type}' => 'إنشاء {type} جديد',
'Create a one-time password.' => 'إنشاء كلمة مرور لمرة واحدة.',
'Create and add another' => 'إنشاء وإضافة آخر',
'Create and continue editing' => 'إنشاء وإكمال التحرير',
'Create and set permissions' => 'إنشاء وتعيين الأذونات',
'Create assets in the “{volume}” volume' => 'إنشاء أصول في وحدة التخزين "{volume}"',
'Create entries in the “{section}” section' => 'إنشاء إدخالات في قسم "{section}"',
'Create entries in the “{section}” {type} field' => 'إنشاء إدخالات في حقل {type} في قسم "{section}"',
'Create subfolders' => 'إنشاء مجلدات فرعية',
'Create your account' => 'إنشاء حسابك',
'Create {type}' => 'إنشاء {type}',
'Create' => 'إنشاء',
'Created at' => 'مُنشأ في',
'Created by' => 'أنشأه',
'Credentialed' => 'معتمد',
'Critical' => 'هام',
'Crop' => 'اقتصاص',
'Cropping Rectangle' => 'مستطيل القص',
'Currency' => 'العملة',
'Current Password' => 'كلمة المرور الحالية',
'Current User Condition' => 'حالة المستخدم الحالية',
'Current' => 'الإصدار الحالي',
'Custom Fields' => 'الحقول المخصَّصة',
'Custom color:' => 'اللون المُخصَّص:',
'Custom' => 'مخصص',
'Custom:' => 'مُخصَّص:',
'Customize sources' => 'تخصيص المصادر',
'Custom…' => 'مخصص...',
'Cyan' => 'سيان',
'Dashboard' => 'لوحة المعلومات',
'Data caches' => 'التخزين المؤقت للبيانات',
'Database Backup' => 'نسخ احتياطي لقاعدة البيانات',
'Database Name' => 'اسم قاعدة البيانات',
'Date Created' => 'تاريخ الإنشاء',
'Date Range' => 'نطاق التاريخ',
'Date Updated' => 'تاريخ التحديث',
'Date Uploaded' => 'تاريخ التحميل',
'Date' => 'التاريخ',
'Days' => 'أيام',
'Deactivate users by default' => 'إلغاء تنشيط المستخدمين بشكل افتراضي',
'Deactivate' => 'إلغاء التنشيط',
'Deactivating a user revokes their ability to sign in. Are you sure you want to continue?' => 'يؤدي إلغاء تنشيط المستخدم إلى إبطال قدرته على تسجيل الدخول. هل تريد بالتأكيد المتابعة؟',
'Debug Toolbar' => 'شريط أدوات تصحيح الأخطاء',
'Decimal Points' => 'النقاط العشرية',
'Default Focal Point' => 'النقطة البؤرية الافتراضية',
'Default Instructions' => 'الإرشادات الافتراضية',
'Default Sort' => 'الترتيب الافتراضي',
'Default Status' => 'الحالة الافتراضية',
'Default Table Columns' => 'أعمدة الجدول الافتراضية',
'Default Title Format' => 'التنسيق الافتراضي للعنوان',
'Default Upload Location' => 'الموقع الافتراضي للتحميل',
'Default User Group' => 'مجموعة المستخدم الافتراضية',
'Default Value' => 'القيمة الافتراضية',
'Default Values' => 'القيم الافتراضية',
'Default View Mode' => 'وضع العرض الافتراضي',
'Default {type} Placement' => 'موضع {type} افتراضي',
'Default' => 'افتراضي',
'Default?' => 'افتراضي؟',
'Define any additional values that should be saved on your elements.' => 'حدِّد أي قيم إضافية ينبغي حفظها على عناصرك.',
'Define the available colors to choose from.' => 'يُحدِّد الألوان المتاحة للاختيار منها.',
'Define the available options.' => 'حدد الخيارات المتاحة.',
'Define the columns your table should have.' => 'حدد الأعمدة التي يلزم أن يحتوي عليها الجدول.',
'Define the default values for the field.' => 'حدد القيم الافتراضية للحقل.',
'Delayed' => 'متأخر',
'Delete (with descendants)' => 'حذف (باستخدام العناصر التابعة)',
'Delete assets from the “{volume}” volume' => 'حذف الأصول من وحدة التخزين "{volume}"',
'Delete categories from the “{categoryGroup}” category group' => 'حذف الفئات من مجموعة الفئات "{categoryGroup}"',
'Delete custom source' => 'حذف المصدر المخصص',
'Delete entries in the “{section}” section' => 'حذف الإدخالات في قسم "{section}"',
'Delete entries in the “{section}” {type} field' => 'حذف الإدخالات في حقل {type} في قسم "{section}"',
'Delete folder' => 'حذف المجلد',
'Delete for site' => 'حذف للموقع',
'Delete icon' => 'حذف الأيقونة',
'Delete it' => 'حذف',
'Delete logo' => 'حذف الشعار',
'Delete other users’ {type} for site' => 'حذف {type} للمستخدمين الآخرين للموقع',
'Delete other users’ {type}' => 'حذف {type} المستخدمين الآخرين',
'Delete permanently' => 'الحذف نهائيًا',
'Delete photo' => 'حذف الصورة',
'Delete row {index}' => 'حذف الصف {index}',
'Delete selected group' => 'حذف المجموعة المحددة',
'Delete selected {type}' => 'حذف {type} المحددة',
'Delete tags from the “{tagGroup}” tag group' => 'حذف العلامات من مجموعة علامات "{tagGroup}"',
'Delete them' => 'حذفهم',
'Delete users' => 'حذف المستخدمين',
'Delete {site}' => 'حذف {site}',
'Delete {type} for site' => 'حذف {type} للموقع',
'Delete {type} for this site' => 'حذف {type} لهذا الموقع',
'Delete {type}' => 'حذف {type}',
'Delete' => 'حذف',
'Delete…' => 'حذف...',
'Department' => 'القسم',
'Dependent Locality' => 'الموقع التابع',
'Deprecation Warnings' => 'تحذيرات البرمجة المهجورة',
'Descending' => 'تنازلي',
'Description' => 'الوصف',
'Deselect All' => 'إلغاء تحديد الكل',
'Desktop' => 'سطح المكتب',
'Determines which site the user will receive emails from, when sent via the control panel.' => 'يُحدِّد الموقع الذي سيتلقَّى المستخدم الرسائل الإلكترونية منه، عند إرسالها من لوحة التحكم.',
'Developer Response' => 'رد المُطوِّر',
'Development Settings' => 'إعدادات التطوير',
'Development' => 'تطوير',
'Device type' => 'نوع الجهاز',
'Dimensions' => 'الأبعاد',
'Direction' => 'الاتجاه',
'Directories cannot be deleted while moving assets.' => 'لا يمكن حذف الدلائل أثناء نقل الأصول.',
'Disable autofocus' => 'تعطيل الضبط التلقائي للبؤرة',
'Disable focal point' => 'تعطيل النقطة المحورية',
'Disable selected {type}' => 'Disable selected {type}',
'Disable' => 'تعطيل',
'Disabled' => 'معطل',
'Discard changes' => 'تجاهل التغييرات',
'Discard' => 'تجاهل',
'Discover' => 'اكتشف',
'Dismiss' => 'تجاهل',
'Display Settings' => 'إعدادات العرض',
'Display as cards' => 'العرض كبطاقات',
'Display as thumbnails' => 'عرض كمصغرات',
'Display content in a pane' => 'عرض المحتوى في لوحة',
'Display hierarchically' => 'عرض بتدرج هرمي',
'Display in a structured table' => 'العرض في جدول منظَّم',
'Display in a table' => 'عرض في جدول',
'District' => 'الحي',
'Do Si' => 'المقاطعة',
'Documentation' => 'التوثيق',
'Done' => 'تم',
'Don’t require a password reset on next login' => 'عدم طلب إعادة تعيين كلمة المرور في عملية تسجيل الدخول التالية',
'Down' => 'Down',
'Download backup' => 'تنزيل نسخة احتياطية',
'Download codes' => 'تنزيل الرموز',
'Download' => 'تنزيل',
'Draft Name' => 'اسم المسودة',
'Draft applied.' => 'تم تطبيق المسودة.',
'Draft {num}' => 'المسودة {num}',
'Draft' => 'المسودة',
'Drafts' => 'المسودات',
'Driver' => 'سائق',
'Dropdown Options' => 'خيارات القائمة المنسدلة',
'Dropdown' => 'قائمة منسدلة',
'Duplicate (with descendants)' => 'التكرار (باستخدام العناصر التابعة)',
'Duplicate selected {type}' => 'تكرار {type} المحددة',
'Duplicate' => 'تكرار',
'Edit Category Group' => 'تحرير مجموعة الفئة',
'Edit Entry Type' => 'تحرير نوع الإدخال',
'Edit Field' => 'تحرير الحقل',
'Edit Filesystem' => 'تحرير نظام الملفات',
'Edit GraphQL Schema' => 'تعديل مخطط GraphQL',
'Edit GraphQL Token' => 'تعديل رمز GraphQL',
'Edit Image Transform' => 'تحرير تحويل الصور',
'Edit Image' => 'تحرير الصورة',
'Edit Message' => 'تحرير الرسالة',
'Edit Route' => 'تحرير المسار',
'Edit Section' => 'تحرير القسم',
'Edit Site' => 'تحرير الموقع',
'Edit Tag Group' => 'تحرير مجموعة العلامات',
'Edit User Group' => 'تحرير مجموعة المستخدمين',
'Edit Volume' => 'تحرير وحدة التخزين',
'Edit assets in the “{volume}” volume' => 'تحرير الأصول في وحدة التخزين "{volume}"',
'Edit categories in the “{categoryGroup}” category group' => 'تحرير الفئات في مجموعة الفئات "{categoryGroup}"',
'Edit draft settings' => 'تحرير إعدادات المسودة',
'Edit entries in the “{name}” section' => 'تعديل الإدخالات في قسم "{name}"',
'Edit entries in the “{name}” {type} field' => 'تعديل الإدخالات في حقل {type} في قسم "{name}"',
'Edit entry type' => 'تحرير نوع الإدخال',
'Edit entry types ({count})' => 'تحرير أنواع الإدخالات ({count})',
'Edit entry types' => 'تحرير أنواع الإدخالات',
'Edit images uploaded by other users' => 'تحرير الصور التي تم تحميلها من قبل مستخدمين آخرين',
'Edit images' => 'تحرير الصور',
'Edit tags in the “{tagGroup}” tag group' => 'تحرير العلامات في مجموعة علامات "{tagGroup}"',
'Edit the public GraphQL schema' => 'تعديل مخطط GraphQL العام',
'Edit the “{globalSet}” global set.' => 'تحرير مجموعة العموميات "{globalSet}".',
'Edit {type}' => 'تحرير {type}',
'Edit “{title}”' => 'تحرير ”{title}“',
'Edit' => 'تحرير',
'Editability Conditions' => 'شروط قابلية التعديل',
'Edited {updated}' => 'تم تعديل {updated}',
'Edited' => 'تم التحرير',
'Eircode' => 'Eircode',
'Element' => 'عنصر',
'Elements duplicated.' => 'تم تكرار العناصر.',
'Elements' => 'العناصر',
'Email Settings' => 'إعدادات البريد',
'Email is required.' => 'البريد الإلكتروني مطلوب.',
'Email sent successfully! Check your inbox.' => 'تم إرسال الرسالة بنجاح! تحقق من صندوق الوارد.',
'Email settings saved.' => 'تم حفظ إعدادات البريد.',
'Email verified' => 'تم التحقق من البريد الإلكتروني',
'Email' => 'البريد',
'Emerald' => 'زمردي',
'Emirate' => 'الإمارة',
'Enable focal point' => 'تنشيط النقطة المحورية',
'Enable selected {type}' => 'Enable selected {type}',
'Enable versioning for entries in this field' => 'تمكين إنشاء إصدارات للإدخالات في هذا القسم',
'Enable versioning for entries in this section' => 'تمكين عمل الإصدارات للإدخالات في هذا القسم',
'Enable' => 'تمكين',
'Enabled for all sites' => 'مفعَّل لكل المواقع',
'Enabled' => 'ممكّن',
'Enabling the plugin…' => 'جاري تمكين الملحق...',
'Enlarged' => 'تم التكبير',
'Enter a name for the passkey.' => 'أدخل اسمًا لمفتاح المرور.',
'Enter the authentication code provided by the app to verify that everything has been set up correctly.' => 'أدخل رمز المصادقة الذي يوفره التطبيق للتحقق من إعداد كل شيء بشكلٍ صحيح.',
'Enter the name of the folder' => 'أدخل اسم المجلد',
'Enter the new filename' => 'إدخال الاسم الجديد للملف',
'Enter your password to log back in.' => 'أدخل كلمة المرور الخاصة بك لتسجيل الدخول مرة أخرى.',
'Entries have been moved to the “{name}” section.' => 'تم نقل الإدخالات إلى قسم "{name}".',
'Entries' => 'الإدخالات',
'Entry Type' => 'نوع الإدخال',
'Entry Types' => 'أنواع الإدخال',
'Entry URI Format' => 'تنسيق عنوان URI للإدخال',
'Entry could not be added. Maximum number of entries reached.' => 'تعذَّرت إضافة الإدخال. تم بلوغ الحد الأقصى لعدد الإدخالات.',
'Entry type saved.' => 'تم حفظ نوع الإدخال.',
'Entry type settings' => 'إعدادات أنواع الإدخال',
'Entry' => 'إدخال',
'Environment Variables' => 'متغيرات البيئة',
'Error' => 'خطأ',
'Error:' => 'خطأ:',
'Everything in {edition}, plus…' => 'كل شيء في {edition}، بالإضافة إلى…',
'Existing {type}' => '{type} حالي',
'Expand all blocks' => 'توسيع جميع الكتل',
'Expand selected blocks' => 'توسيع الكتل المحددة',
'Expand {heading} sources' => 'توسيع مصادر {heading}',
'Expand' => 'توسيع',
'Expanded' => 'توسيع',
'Expired' => 'منتهي',
'Expires' => 'تنتهي صلاحيته',
'Expiry Date' => 'تاريخ الانتهاء',
'Explore the GraphQL API' => 'استكشاف واجهة برمجة تطبيقات GraphQL',
'Explorer' => 'المستكشف',
'Export Type' => 'نوع التصدير',
'Export' => 'تصدير',
'Export…' => 'تصدير…',
'External project config changes discarded.' => 'تم تجاهل تغييرات تكوين المشروع الخارجي.',
'Failed to generate transform with id of {id}.' => 'فشل إنشاء تحويل بالمعرف {id}.',
'Failed to load plugin reviews. Please try again' => 'فشل تحميل مراجعات الملحق. يُرجى إعادة المحاولة',
'Failed to load the SVG string.' => 'فشل تحميل سلسلة SVG.',
'Failed to save the image.' => 'فشل حفظ الصورة.',
'Failed' => 'فشل',
'Feed' => 'تغذية إخبارية',
'Fetching upgrade info…' => 'جارٍ إحضار معلومات الترقية…',
'Field Handle' => 'مُعرف الحقل',
'Field Layout' => 'مخطط الحقل',
'Field Limit' => 'حد الحقل',
'Field Type' => 'نوع الحقل',
'Field saved.' => 'تم حفظ الحقل.',
'Field settings' => 'إعدادات الحقل',
'Field value copied.' => 'تم نسخ قيمة الحقل.',
'Field' => 'الحقل',
'Fields' => 'الحقول',
'File Kind' => 'نوع الملف',
'File Modification Date' => 'تاريخ تعديل الملف',
'File Modified Date' => 'تاريخ تعديل الملف',
'File Size' => 'حجم الملف',
'File Type' => 'نوع الملف',
'File size' => 'حجم الملف',
'Filename' => 'اسم الملف',
'Files in this filesystem have public URLs' => 'الملفات في نظام الملفات هذا لها عناوين URL عامة',
'Filesystem Type' => 'نوع نظام الملف',
'Filesystem saved.' => 'تم حفظ نظام الملفات.',
'Filesystem settings' => 'Filesystem settings',
'Filesystems' => 'أنظمة الملفات',
'Fill Color' => 'لون التعبئة',
'Filter results' => 'تصفية النتائج',
'Find Text' => 'بحث عن نص',
'Find an official Craft Partner' => 'العثور على شريك رسمي لـ Craft',
'Find and Replace' => 'بحث واستبدال',
'Finish up' => 'إنهاء الإجراء',
'Finished' => 'انتهى',
'Finishing up…' => 'جاري إنهاء الإجراء...',
'First Name' => 'الاسم الأول',
'First draft' => 'المسودة الأولى',
'Fit' => 'ملاءمة',
'Flip Horizontal' => 'انعكاس أفقي',
'Flip Vertical' => 'انعكاس عمودي',
'Focal Point' => 'النقطة البؤرية',
'Folder actions' => 'إجراءات المجلد',
'Folder created.' => 'تم إنشاء المجلد.',
'Folder deleted.' => 'تم حذف المجلد.',
'Folder renamed.' => 'تمت إعادة تسمية المجلد.',
'Folder “{folder}” already exists at target location' => 'المجلد "{folder}" موجود بالفعل في الموقع الهدف',
'Folder' => 'المجلد',
'For everything else.' => 'لكل شيء آخر.',
'For marketing sites managed by small teams.' => 'لمواقع التسويق المُدارة من قِبل فرق صغيرة.',
'For personal sites built for yourself or a friend.' => 'للمواقع الشخصية المصمَّمة لك أو لصديق.',
'Forgot password?' => 'هل نسيت كلمة المرور؟',
'Format' => 'التنسيق',
'Formatting Locale' => 'تنسيق الإعدادات المحلية',
'Found {num, number} {num, plural, =1{error} other{errors}} in this tab.' => 'تم العثور على {num, number} {num, plural, =1{خطأ} other{من الأخطاء}} في علامة التبويب هذه.',
'Found {num, number} {num, plural, =1{error} other{errors}}' => 'تم العثور على {num, number} من {num, plural, =1{الأخطاء} other{الأخطاء}}',
'Free' => 'حر',
'From {date}' => 'من {date}',
'From' => 'من',
'Fuchsia' => 'فوشيا',
'Full Name' => 'الاسم الكامل',
'Full Schema' => 'المخطط الكامل',
'Full data' => 'البيانات الكاملة',
'General Settings' => 'الإعدادات العامة',
'General settings saved.' => 'تم حفظ الإعدادات العامة.',
'General' => 'عام',
'Generate YAML Files' => 'إنشاء ملفات YAML',
'Generate recovery codes that can be used as a backup.' => 'إنشاء رموز استعادة يمكن استخدامها كبديلٍ احتياطي.',
'Generate recovery codes' => 'إنشاء رموز استعادة',
'Generate' => 'إنشاء',
'Generated Fields' => 'الحقول المُنشأة',
'Generating image transform for {file}' => 'جاري إنشاء تحويل الصور لـ{file}',
'Generating image transform' => 'جارٍ إنشاء تحويل الصور',
'Generating pending image transforms' => 'جاري جلب تحويلات الصور المعلقة',
'Get help' => 'الحصول على تعليمات',
'Give feedback' => 'إعطاء ملاحظات',
'Give your tab a name.' => 'قم بتسمية علامة التبويب.',
'Global Set Name' => 'اسم المجموعة العمومية',
'Global Sets' => 'المجموعات العمومية',
'Global set' => 'مجموعة عموميات',
'Global sets' => 'المجموعات العمومية',
'Global' => 'عمومي',
'Globals' => 'العموميات',
'Go to Craft CMS' => 'انتقال إلى Craft CMS',
'Go to Updates' => 'الانتقال إلى التحديثات',
'Go' => 'انطلق',
'Got it' => 'فهمت',
'GraphQL Mode' => 'وضع GraphQL',
'GraphQL Schemas' => 'مخططات GraphQL',
'GraphQL Tokens' => 'رموز GraphQL',
'GraphQL queries' => 'استفسارات GraphQL',
'Green' => 'أخضر',
'Group Name' => 'اسم المجموعة',
'Group deleted.' => 'تم حذف المجموعة.',
'Group renamed.' => 'تمت إعادة تسمية المجموعة.',
'Group saved.' => 'تم حفظ المجموعة.',
'Group' => 'المجموعة',
'Grouped' => 'مُجمَّعة',
'Groups' => 'المجموعات',
'Guest Required' => 'يتطلب وجود ضيف',
'HTML Email Template' => 'قالب الرسالة بتنسيق HTML',
'Handle' => 'المقبض',
'Has Descendants' => 'لديها تبعيات',
'Has URL' => 'له عنوان URL',
'Has alternative text' => 'له نص بديل',
'Heading' => 'العنوان',
'Height unit' => 'وحدة الارتفاع',
'Height' => 'الارتفاع',
'Helper text to guide the author.' => 'النص المساعد لتوجيه المؤلف.',
'Hide sidebar' => 'إخفاء الشريط الجانبي',
'Hide' => 'إخفاء',
'High' => 'عالية',
'History' => 'السجل',
'Homepage' => 'الصفحة الرئيسية',
'Horizontal Rule' => 'المسطرة الأفقية',
'Hostname' => 'اسم المضيف',
'Hours' => 'ساعات',
'How entries should be labeled within the control panel.' => 'كيفية تسمية الإدخالات داخل لوحة التحكم.',
'How field values will be formatted within element indexes.' => 'كيف سيتم تنسيق قيم الحقول داخل فهارس العناصر.',
'How long notifications should be shown before they disappear automatically.' => 'مدة عرض الإشعارات قبل أن تختفي تلقائيًا.',
'How should Craft CMS send the emails?' => 'كيف يجب أن يُرسل نظام Craft CMS رسائل البريد الإلكتروني؟',
'How should this field’s values be translated?' => 'كيف يجب ترجمة قيم هذا الحقل؟',
'How should {name} values be translated?' => 'كيف ينبغي ترجمة قيم {name}؟',
'How the field should be presented in the control panel.' => 'كيف يجب تقديم الحقل في لوحة التحكم.',
'How the related {type} should be displayed within element indexes.' => 'كيف يجب عرض {type} المرتبط ضمن فهارس العناصر.',
'How you’ll refer to this category group in the templates.' => 'كيف يمكنك الإشارة إلى مجموعة الفئات هذه في القوالب.',
'How you’ll refer to this entry type in the templates.' => 'كيف يمكنك الإشارة إلى نوع الإدخال هذا في القوالب.',
'How you’ll refer to this field in the templates.' => 'كيف يمكنك الإشارة إلى هذا الحقل في القوالب.',
'How you’ll refer to this global set in the templates.' => 'كيف يمكنك الإشارة إلى هذه المجموعة العمومية في القوالب.',
'How you’ll refer to this section in the templates.' => 'كيف يمكنك الإشارة إلى هذا القسم في القوالب.',
'How you’ll refer to this site in the templates.' => 'كيف ستقوم بالإشارة إلى هذا الموقع في القوالب.',
'How you’ll refer to this tag group in the templates.' => 'كيف يمكنك الإشارة إلى مجموعة العلامات هذه في القوالب.',
'How-to’s and other questions' => 'معلومات عن كيفية القيام بالإجراءات وأسئلة أخرى',
'ID' => 'المعرف',
'Icon' => 'أيقونة',
'Icons only' => 'الأيقونات فقط',
'If the URI looks like this' => 'إذا كان معرف URI يبدو مثل',
'Image Format' => 'تنسيق الصورة',
'Image Height' => 'ارتفاع الصورة',
'Image Position' => 'موضع الصورة',
'Image Transforms' => 'تحويلات الصور',
'Image Width' => 'عرض الصورة',
'Image transformer' => 'محول الصورة',
'Image' => 'صورة',
'Impersonate users' => 'انتحال صفة المستخدمين',
'Improve your account’s security by adding a second verification step when signing in.' => 'قم بتحسين أمان حسابك عن طريق إضافة خطوة تحقق ثانية عند تسجيل الدخول.',
'In a pane' => 'في لوحة',
'Inactive' => 'غير نشط',
'Include Pro icons' => 'تضمين أيقونات Pro',
'Include Table View' => 'تضمين طريقة عرض الجدول',
'Include your template files' => 'تضمين ملفات القوالب الخاصة بك',
'Includes activating/deactivating user accounts, resetting passwords, and changing email addresses.' => 'يتضمن تنشيط/إلغاء التنشيط حسابات المستخدمين وإعادة تعيين كلمات المرور وتغيير عناوين البريد الإلكتروني.',
'Includes read-only access to user data and most content, via element selector modals and other means.' => 'يتضمَّن وصولًا للقراءة فقط إلى بيانات المستخدم ومعظم المحتوى، عبر نماذج محدِّد العناصر ووسائل أخرى.',
'Includes suspending, unsuspending, and unlocking user accounts.' => 'يتضمن حسابات المستخدمين المعلقة وغير المعلقة والمفتوحة.',
'Including a Content Block field recursively is not allowed.' => 'لا يُسمح بتضمين حقل كتلة المحتوى بشكل متكرر.',
'Incorrect current password.' => 'كلمة المرور الحالية غير صحيحة.',
'Incorrect password.' => 'كلمة المرور غير صحيحة.',
'Index' => 'فهرس',
'Indexing assets: {progress}' => 'جارٍ فهرسة الأصول: {progress}',
'Indigo' => 'Indigo',
'Information' => 'معلومات',
'Initial Rows' => 'الصفوف الأولية',
'Inline list' => 'قائمة مضمَّنة',
'Inline' => 'داخل السطر',
'Insert the button label for adding a new row to the table.' => 'أدخل تسمية الزر لإضافة صف جديد في الجدول.',
'Install Craft CMS' => 'تثبيت Craft CMS',
'Install an authenticator app, such as:' => 'قم بتثبيت تطبيق مصادقة، مثل:',
'Install an authenticator app.' => 'قم بتثبيت تطبيق مصادقة.',
'Install with Composer' => 'التثبيت باستخدام Composer',
'Install' => 'تثبيت',
'Installation Instructions' => 'تعليمات التثبيت',
'Installed as a trial' => 'تم التثبيت كتجربة',
'Installed' => 'مثبّت',
'Installing Craft CMS…' => 'جارِ تثبيت Craft CMS…',
'Installing the plugin…' => 'جاري تثبيت الملحق...',
'Installing {name}' => 'تثبيت {name}',
'Instructions' => 'إرشادات',
'Interlace' => 'يعرض بشكل متداخل',
'Interlacing' => 'تداخل',
'Internal Server Error' => 'خطأ داخلي من الخادم',
'Invalid email or password.' => 'البريد الإلكتروني أو كلمة المرور غير صالحة.',
'Invalid email.' => 'بريد إلكتروني غير صالح.',
'Invalid recovery code.' => 'رمز الاستعادة غير صالح.',
'Invalid transform handle: {handle}' => 'مؤشر التحويل غير صالح: {handle}',
'Invalid username or email.' => 'اسم المستخدم أو البريد الإلكتروني غير صالح.',
'Invalid username or password.' => 'اسم المستخدم أو كلمة المرور غير صالحة.',
'Invalid value “{value}”.' => 'قيمة غير صالحة "{value}".',
'Invalid verification code.' => 'رمز التحقق غير صالح.',
'Invalidate Data Caches' => 'إبطال بيانات ذاكرة التخزين المؤقت',
'Invalidate caches' => 'إبطال ذاكرة التخزين المؤقت',
'Invalidating cache tag:' => 'إبطال علامات ذاكرة التخزين المؤقت:',
'Island' => 'جزيرة',
'It looks like someone is currently performing a system update.<br>Only continue if you’re sure that’s not the case.' => 'يبدو أن هناك شخص يقوم حاليًا بإجراء تحديث للنظام.<br>قم بالمتابعة فقط إذا كنت متأكدًا من أن هذه ليست الحالة.',
'It looks like these settings are being overridden by {paths}.' => 'يبدو أن هذه الإعدادات يتم تجاوزها بواسطة {paths}.',
'Item' => 'عنصر',
'Items in your cart' => 'العناصر الموجودة في السلة الخاصة بك',
'Items reordered.' => 'تمت إعادة ترتيب العناصر.',
'It’s not possible to rename the top folder of a Volume.' => 'لا يمكن إعادة تسمية المجلد العلوي لوحدة التخزين.',
'JavaScript must be enabled to access the Craft CMS control panel.' => 'يجب تمكين JavaScript للوصول إلى لوحة تحكم Craft.',
'Job Data' => 'بيانات المهمة',
'Job released.' => 'تم تحرير المهمة.',
'Job restarted.' => 'تم إعادة تشغيل المهمة.',
'Job retried.' => 'تم إعادة محاولة تشغيل المهمة.',
'Job' => 'مهمة',
'Keep both' => 'الاحتفاظ بالاثنين',
'Keep me signed in' => 'الإبقاء على تسجيل دخولي',
'Keep them' => 'حفظهم',
'Knowledge Base' => 'قاعدة المعرفة',
'Label' => 'تسمية',
'Landscape' => 'أفقي',
'Language' => 'اللغة',
'Last Edited By' => 'آخر تعديل بواسطة',
'Last Login Date' => 'تاريخ آخر تسجيل دخول',
'Last Login' => 'آخر تسجيل دخول',
'Last Month' => 'الشهر الماضي',
'Last Name' => 'الاسم الأخير',
'Last Occurrence' => 'آخر حدوث',
'Last Update' => 'آخر تحديث',
'Last Used' => 'آخر استخدام',
'Last Week' => 'الأسبوع الماضي',
'Last login fail' => 'آخر تسجيل دخول فشل',
'Last login' => 'آخر تسجيل دخول',
'Last release' => 'آخر إصدار',
'Last saved <time title="{timestampWithDate}">{timestamp}</time>' => 'آخر حفظ <time title="{timestampWithDate}">{timestamp}</time>',
'Last saved {timestamp}' => 'آخر حفظ {timestamp}',
'Last {num, number} {num, plural, =1{day} other{days}}' => 'آخر {num, number} {num, plural, zero {} one {days} two {يوم} few {أيام} many {يوم} =1{يوم} other{يوم}}',
'Latitude' => 'خط العرض',
'Latitude/Longitude' => 'خطوط العرض والطول',
'Layout element types' => 'أنواع عناصر التخطيط',
'Learn how' => 'تعلم كيف',
'Learn more' => 'تعرف على المزيد',
'Leave a review' => 'اترك مراجعة',
'Leave blank if categories don’t have URLs' => 'اترك هذا الجزء فارغًا إذا لم تتوفر عناوين URL للفئات',
'Leave blank if entries don’t have URLs' => 'اترك هذا الجزء فارغًا إذا لم تتوفر عناوين URL للإدخالات',
'Leave blank if the entry doesn’t have a URL' => 'اترك هذا الجزء فارغًا إذا لم تتوفر عناوين URL للإدخالات',
'Leave it uninstalled' => 'لا تقم بتثبيته',
'Left Handle' => 'المؤشر الأيسر',
'Left' => 'أيسر',
'Let each entry choose which sites it should be saved to' => 'دع كل إدخال يختار المواقع التي يجب حفظه فيها',
'Letterbox' => 'صندوق البريد',
'Level {num}' => 'المستوى {num}',
'Level' => 'المستوى',
'License purchase required.' => 'مطلوب شراء ترخيص.',
'License transferred.' => 'تم نقل الترخيص.',
'License' => 'ترخيص',
'Licensed' => 'تم الترخيص',
'Lightswitch' => 'مفتاح تبديل',
'Lime' => 'ليمي',
'Limit the number of selectable {type} branches.' => 'تقييد عدد فروع {type} القابلة للتحديد.',
'Limit' => 'الحد',
'Line Break' => 'فاصل بين السطور',
'Line' => 'خط',
'Link' => 'رابط',
'List all tabs' => 'سرد كل علامات التبويب',
'List empty folders' => 'إدراج المجلدات الفارغة',
'List' => 'القائمة',
'Live' => 'مباشر',
'Load this template' => 'تحميل هذا القالب',
'Loaded Project Config Data' => 'بيانات تكوين المشروع التي تم تحميلها',
'Loading Plugin Store…' => 'جاري تحميل متجر الملحقات...',
'Loading complete' => 'اكتمل التحميل',
'Loading' => 'جار التحميل',
'Local Folder' => 'المجلد المحلي',
'Local copies of remote images, generated thumbnails' => 'نسخ محلية من الصور عن بعد، والصور المصغرة التي تم إنشاؤها',
'Local filesystems cannot be located within or above system directories.' => 'لا يمكن تحديد موقع أنظمة الملفات ضمن أدلة النظام أو فوقها.',
'Locality' => 'الموقع',
'Localizing relations' => 'إضفاء الطابع اللغوي على العلاقات',
'Location' => 'الموقع',
'Locations that should be available for previewing entries in this section.' => 'المواقع التي يجب أن تكون متاحة لمعاينة الإدخالات في هذا القسم.',
'Locked' => 'مقفل',