forked from filerun/translations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arabic.php
3010 lines (3010 loc) · 168 KB
/
arabic.php
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 array (
'trans' =>
array (
'Login Page' =>
array (
'Username' => 'اسم المستخدم',
'Password' => 'كلمة المرور',
'Language' => 'اللغة',
'Sign in' => 'تسجيل الدخول',
'Please login.' => 'الرجاء تسجيل الدخول',
'Please type a username.' => 'الرجاء إدخال اسم مستخدم
',
'Invalid password.' => 'كلمة المرور غير صحيحة',
'Invalid username.' => 'اسم المستخدم غير صحيح
',
'Your account has been deactivated!' => 'لقد تم إلغاء تفعيل حسابك!',
'Create account' => 'تسجيل
',
'Forgot password?' => 'نسيت كلمة المرور؟',
'Signing in...' => 'تسجيل الدخول...',
'Your account access is limited to a particular IP address!' => 'إن تسجيل الدخول باستخدام هذا الحساب محصور من عنوان انترنت محدد!',
'2-step verification: add account' => '2-خطوة التحقق: إضافة حساب',
'Scan this barcode with the <a href="%1" target="_blank">Google Authenticator</a> app on your mobile device to add your account.' => '
مسح هذا الباركود مع <a href="٪1" target="_blank"> لأداة مصادقة Google </A> التطبيق على الجهاز المحمول الخاص بك لإضافة حسابك.',
'Done' => 'أنتهي',
'Your account is configured for 2-step verification. You need to type in a verification code!' => 'تم تكوين حسابك لمدة :خطوة (2) التحقق. تحتاج إلى كتابة في رمز التحقق!',
'The provided verification code is not valid!' => 'رمز التحقق المدخل غير صالح!',
'Your account is configured for 2-step verification. Click Ok to start the setup.' => 'تم تكوين حسابك لمدة 2-خطوة التحقق. انقر فوق موافق لبدء الإعداد.',
'Type the following key code into your authentication app:' => 'اكتب رمز المفتاح التالي في التطبيق المصادقة الخاصة بك:',
'Verification code' => 'رمز التحقق',
'Please type a password.' => 'الرجاء كتابة كلمة المرور.',
'Changing language...' => 'تغيير اللغة...',
'Loading...' => 'جاري التحميل...',
'There is an Android app that you can use to access your files more comfortably. Would you like to try that instead?' => 'هل تود إستخدام تطبيق الهاتف الجوال ؟ إنة يوفر طريقة مريحة للوصول وإدارة ملفاتك',
),
'User Registration' =>
array (
'User Registration' => 'تسجيل مستخدم جديد',
'Username' => 'اسم المستخدم',
'E-mail address' => 'البريد الإلكتروني',
'Password' => 'كلمة المرور',
'Retype password' => 'إعادة كلمة المرور',
'Name' => 'الاسم',
'Company' => 'الشركة',
'Web site address' => 'رابط الموقع',
'Comment' => 'التعليقات',
'Submit' => 'اذهب',
'Please type a username!' => 'فضلا ادخل اسم المستخدم!',
'Please avoid using special characters for the username!' => 'فضلا لا تستخدم حروف خاصة في اسم المستخدم',
'Username already in use. Please choose another one.' => 'اسم المستخدم مسجل من قبل فضلا اختر اسم اخر',
'Please type a password!' => 'فضلا ادخل كلمة المرور!',
'Please retype the password correctly!' => 'فضلا اعد إدخال كلمة المرور',
'Please type your name!' => 'فضلا ادخل الاسم',
'Please type your email address!' => 'يرجى كتابة عنوان البريد الإلكتروني الخاص بك!',
'Please type the company name!' => 'يرجى كتابة اسم الشركة!',
'Please type your website address!' => 'يرجى كتابة عنوان موقع الويب الخاص بك!',
'Please type the comment!' => 'يرجى كتابة تعليق!',
'Failed to create user account!' => 'فشل إنشاء حساب مستخدم!',
'Your account has been successfully created.' => 'لقد تم إنشاء حسابك بنجاح.',
'Login' => 'دخول',
'Your account information has been emailed to you!' => 'معلومات تسجيل حسابك تم ارسالها الي بريدك الأكتروني',
'An e-mail message has been sent at "%1" with details on how to complete the registration process.' => 'شكرا للتسجيل لقد تم تفعيل حسابك',
'E-mail address already registered. Please use the password recovery options if you forgot your password.' => 'عنوان البريد الإلكتروني مسجل بالفعل. الرجاء استخدام خيارات استرداد كلمة المرور إذا كنت قد نسيت كلمة المرور الخاصة بك.',
'Cancel' => 'إلغاء',
'Please make sure you are not a robot! :)' => 'يرجى كتابة الكلمتين بشكل صحيح!',
'Please type your last name!' => 'يرجى كتابة إسم العائلة!',
'Loading...' => 'جاري التحميل...',
'Phone' => 'الهاتف',
'Please type the phone number' => 'من فضلك إكتب رقم الهاتف',
),
'Password Reset' =>
array (
'The login information has been sent to your email address.' => ' لقد تم ارسال معلومات تسجيل الدخول إلى عنوان البريد الإلكتروني الخاص بك.',
'Password Reset' => 'إعادة تعيين كلمة المرور',
'E-mail address' => 'البريد الأكتروني',
'Submit' => 'أرسل',
'Please type the e-mail address.' => 'يرجى كتابة عنوان البريد الإلكتروني.',
'The e-mail address was not found in the database.' => 'لم يتم العثور على عنوان البريد الإلكتروني في قاعدة البيانات.',
'Please check your inbox for information on how to reset your account\'s password.' => 'يرجى التحقق من البريد الوارد الخاص بك للحصول على معلومات حول كيفية إعادة ضبط كلمة المرور الخاصة بحسابك.',
),
'Main Interface' =>
array (
'The file is already in the download cart' => 'الملف موجود مسبقاً في سلة التحميل',
'Rating' => 'التقييم',
'Please check your network connection.' => 'الرجاء التحقق من اتصالك بالشبكة.',
'<a href="%1">The data</a> recevied from the server contains errors.' => '<a href="%1">البيانات</a> التي تم استقبالها من الخادم تحتوي على أخطاء.',
'Loading...' => 'تحميل ...',
'Sign out' => 'تسجيل الخروج',
'Control Panel' => 'لوحة التحكم',
'Change password' => 'تغيير كلمة المرور',
'Preview' => 'معاينة',
'No preview available for this type of files.' => 'لا تتوفر معاينة لهذا النوع من الملفات.',
'Comments' => 'تعليقات',
'Please select a file.' => 'يرجى تحديد ملف.',
'Folder contains no image file' => 'يحتوي المجلد أي ملف صورة',
'There are no files in this folder' => 'لا توجد ملفات في هذا المجلد.',
'This item contains changes' => 'تم إنشاء هذا الملف أو تعديله منذ وصول الأخير.',
'This file is locked by %1.' => 'هذا الملف مقفول بواسطة ٪1',
'This file has %1 comment(s).' => 'هذا الملف يحتوي على٪ 1 من التعليقات).',
'This file has a WebLink attached to it.' => 'هذا الملف له ارتباط ويب مرتبطه به.',
'Loading Preview...' => 'انتظار المعاينة ...',
'Free space available:' => 'المساحة الحرة المتوفرة:',
'Delete "%1"?' => 'حذف "%1"?',
'Internet Explorer is blocking the download?<br>Click <a href="%1" target="_blank">here</a> to download the file without reloading this page.' => 'برنامج Internet Explorer يتم حظر التحميل؟ <شريط> <a انقر href="٪1" target="_blank"> وهنا </a> لتحميل الملف من دون إعادة تحميل هذه الصفحة.',
'Upload' => 'تحميل',
'%1 used (%2%)' => '%1 إستخدم (%2%)',
'Please type a file name:' => 'يرجى كتابة اسم الملف:',
'Creating blank file...' => 'إنشاء ملف فارغ ...',
'Sort' => 'نوع',
'Settings' => 'الإعدادات',
'Select All' => 'اختر الكل',
'View' => 'معاينة',
'Tools' => 'أدوات',
'List view' => 'عرض القائمة',
'Refresh' => 'تحديث',
'New File' => 'ملف جديد',
'New tab' => 'تبويب جديد',
'Space:' => 'مساحة',
'Search' => 'بحث',
'File Search' => 'البحث في الملفات',
'Share' => 'شارك',
'Sharing' => 'مشاركة',
'New sub-folder' => 'ملف فرعي جديد',
'Rename' => 'إعادة تسمية',
'Remove' => 'حذف',
'Properties' => 'الخصائص',
'Download' => 'تحميل',
'..in one zip file' => 'ضغط في ملف واحد..',
'Open with..' => 'فتح بواسطة ..',
'E-mail Files' => 'ملفات البريد الإلكترونى',
'Share with users' => 'مشاركة مع المستخدمين',
'Get link' => 'رابط مباشر',
'Details and activity' => 'تفاصيل',
'Versioning' => 'إصدارات',
'Previous Versions' => 'الإصدارات السابقة',
'Lock' => 'قفل',
'Unlock' => 'فتح',
'File Versions' => 'إصدار الملف',
'Metadata' => 'اضافة وصف',
'Comment' => 'تعليق',
'Zip archive..' => 'اضافة إلى ملف zip',
'Extract archive..' => 'استخراج أرشيف',
'Copy' => 'نسخة',
'Loading file list...' => 'تحميل قائمة الملف ..',
'Name' => 'اسم',
'Size' => 'الحجم',
'Type' => 'النوع',
'Meta Type' => 'نوع الوصف',
'Modified' => 'تاريخ التعديل',
'Created' => 'تاريخ الانشاء',
'Comments count' => 'عدد التعليقات',
'Yes' => 'نعم',
'No' => 'لا',
'Version' => 'نسخة',
'Is new' => 'هو جديد',
'Locked by' => 'تم تأمينه من قبل',
'Sort Ascending' => 'ترتيب تصاعدي',
'Sort Descending' => 'ترتيب تنازلي',
'Columns' => 'الأعمدة ',
'Reset Columns' => 'إعادة تعيين الأعمدة',
'%1 items' => 'عنصر %1',
'Opening popup window... <br>Click <a href="%1" target="_blank">here</a> if the browser prevents it from opening.' => 'فتح نافذة منبثقة ... <BR> انقر <a href="٪1" target="_blank"> وهنا </a> إذا كان المتصفح يمنعها من الافتتاح.',
'Moving files...' => 'نقل الملفات ...',
'Moving folder...' => 'نقل المجلد ...',
'Renaming file...' => 'إعادة تسمية ملف ...',
'Zipping files...' => ' الملفات المضغوطة ...',
'Extracting archive contents...' => 'استخراج محتويات الأرشيف ...',
'Deleting...' => 'حذف ...',
'Restoring file(s)...' => 'استعادة الملف ...',
'Locking file...' => 'قفل الملف ..',
'Unlocking file...' => 'فتح الملف ..',
'Renaming folder...' => 'إعادة تسمية مجلد ...',
'Please wait while the selected files are being zipped...' => 'يرجى الانتظار بينما يجري ضغط الملفات المحددة ...',
'Please wait while the selected folder is being zipped...' => 'يرجى الانتظار بينما يتم ضغط المجلد المحدد ...',
'Selected Files.zip' => 'اختيار Files.zip',
'Downloading zip file...' => 'تحميل ملف مضغوط ...',
'Are you sure you want to delete the selected file(s)?' => 'هل أنت متأكد أنك تريد حذف الملف المحدد ؟',
'The selected folder and all its contents will be deleted.' => 'هل أنت متأكد أنك تريد حذف المجلد المحدد وكافة محتوياته؟',
'Permanent deletion' => 'حذف دائم',
'New Folder' => 'ملف جديد',
'Creating new folder...' => 'إنشاء مجلد جديد ...',
'Please type a folder name for the archive contents:' => 'يرجى كتابة اسم مجلد عن محتويات أرشيف:',
'Extracted Files' => 'الملفات التي تم استخراجها',
'Deleted from' => 'حذف من',
'Trash' => 'سلة المحذوفات',
'Restore' => 'استعادة',
'Recent' => 'مؤخرا',
'Shared by me' => 'تمت مشاركتها من قِبلى',
'There are no shared files or folders' => 'لايوجد ملف او مجلد تمت مشاركته',
'Files' => 'الملفات',
'There are no recently accessed files' => 'لاتوجد ملفات تم الوصول إليها حديثا',
'Activity' => 'مجلد نشط',
'Please type a name for the zip file:' => 'يرجى كتابة اسم للملف مضغوط:',
'New Archive.zip' => 'جديد Archive.zip',
'E-mail' => 'البريد الإلكتروني',
'Activity log' => 'سجل النشاط',
'Loading the file\'s activity log...' => 'تحميل سجل النشاط الملف ...',
'External Window' => 'فتح بنافذة خارجية',
'Folders' => 'المجلدات',
'Zip and download' => 'أضغط وحمل',
'This type of archives is not supported by the current server configuration.' => 'لا يتم اعتماد هذا النوع من المحفوظات من جانب تكوين الملقم الحالي.',
'With users' => 'مع المستخدمين',
'BitTorrent Sync' => 'تورنت سينك',
'One item' => 'ملف واحد',
'One item selected' => 'عنصر واحد تم اختياره',
'More' => 'أكثر',
'Confirm' => 'تأكيد',
'Details' => 'التفاصيل',
'My Files' => 'ملفاتي',
'Upload to "%1"' => 'تحميل الي "%1"',
'Folder upload' => 'تحميل مجلد',
'File upload' => 'تحميل ملف',
'Create new' => 'إنشاء جديد',
'Add Files' => 'إضافة ملفات',
'Add Folder' => 'إضافة مجلد',
'Remove from queue' => 'إزالة من قائمة الانتظار',
'Cancel' => 'إلغاء',
'Cancel all' => 'الغاء الكل',
'Skip file' => 'تخطي الملف',
'Resume file' => 'ملف السيرة الذاتية',
'Pause all' => 'ايقاف الجميع',
'File name' => 'اسم الملف',
'Uploaded' => 'تم تحميلها.',
'Progress' => 'التقدم',
'Speed' => 'السرعة',
'Time remaining' => 'الوقت المتبقي',
'%1 files left' => '٪ 1 ملفات اليسار',
'%1 of %2' => '٪ 1 من٪ 2',
'[Skipped]' => '[تخطي]',
'Paused' => 'توقف',
'Uploading (Retry #%1)...' => 'تحميل (إعادة المحاولة #٪ 1) ...',
'Paused (%1%)' => 'متوقف',
'Waiting (100%)' => 'الانتظار (100٪)',
'Server error' => 'خطأ في الخادم',
'A problem has been encountered!' => 'تم مصادفة مشكلة!',
'Try again' => 'حاول مرة أخرى',
'%1 hours' => '٪ 1 ساعة',
'%1 minutes' => '٪ 1 دقيقة',
'%1 seconds' => '٪ 1 ثانية',
'You are not allowed to upload the file "%1"' => 'لا يسمح لك بتحميل الملف "٪ 1"',
'There are no comments for this item' => 'لا توجد تعليقات لهذا البند',
'Write a comment...' => 'اكتب تعليقا ...',
'Use the displayed header bar to sort by the desired field.' => 'استخدام شريط رأس العرض للفرز حسب الحقل المطلوب.',
'Drop files here' => 'سحب وإسقاط الملفات هنا',
'or use the "NEW" button' => 'أو استخدام الزر الأحمر \'جديد\' للتحميل',
'Queued' => 'في قائمة الانتظار',
'Mute sound notifications' => 'تنبيهات كنم الصوت',
'Notifications' => 'التنبيهات',
'Add to cart' => 'أضف إلى السلة',
'Download cart' => 'خدماتنا مجانية',
'Label' => 'تسمية',
'No label' => 'لم تسمية',
'Custom label' => 'تسمية مخصصة',
'New label' => 'تسمية جديدة',
'Page' => 'صفحة',
'of {0}' => 'من {0}',
'First Page' => 'الصفحة الاولى',
'Last Page' => 'الصفحة الأخيرة',
'Next Page' => 'الصفحة التالية',
'Previous Page' => 'الصفحة السابقة',
'Uploading pasted image...' => 'تحميل صورة الملصق...',
'Pasted image' => 'صورة الملصق',
'Pasted image successfully uploaded' => 'صورة الملصق تم تحميلها بنجاح',
'Are you sure you want to remove the comment?' => 'هل أنت متأكد أنك تريد إزالة التعليق؟',
'%1 of %2 results' => '٪ 1 من٪ 2 النتائج',
'%1 results' => '٪ 1 النتائج',
'Show more...' => 'عرض المزيد ...',
'Star' => 'علامة',
'Starred' => 'ملفات معلمة',
'Remove star' => 'حذف العلامة',
'There are no starred files or folders' => 'إضافة علامة للملفات للعثور عليها بسهولة في وقت لاحق.',
'There are no shared links' => 'لايوجد اي روابط ملفات تم مشاركتها',
'Folder' => 'إنشاء مجلد جديد',
'File' => 'ملف',
'More options' => 'خيارات أخرى',
'Location' => 'العنوان',
'Please wait as loading the file might take a while...' => 'يرجى الانتظار تحميل الملف قد يستغرق لحظة ...',
'New' => 'جديد',
'Shared links' => 'الروابط المشتركة',
'Locate' => 'حدد',
'Next' => 'التالى',
'Previous' => 'السابق',
'Close' => 'إغلاق',
'Zoom' => 'تكبير',
'%1/%2' => '٪ 1 من٪ 2 البنود',
'First page' => 'الصفحة الاولى',
'Page %1' => 'الصفحة٪ 1',
'You are required to change your password.' => 'هل هناك حاجة لتغيير كلمة المرور الخاصة بك.',
'No file was found matching your search criteria.' => 'لم يتم العثور على اي ملف حسب البحث',
'To upload files, drag them from your computer' => 'لتحميل الملفات، قم بسحبها من جهاز الكمبيوتر الخاص بك',
'Account settings' => 'اعدادات الحساب',
'Download all' => 'تحميل الجميع',
'Use "Page Down" and "Page Up" to change the page' => 'استخدام "صفحة لأسفل" و "صفحة لأعلى" لتغيير الصفحة',
'Empty trash' => 'تفريغ سلة المهملات',
'Emptying trash...' => 'يتم تفريغ سلة المهملات...',
'Empty trash?' => 'تفريغ سلة المهملات؟',
'All files and folders in your trash are about to be permanently deleted.' => 'جميع الملفات والمجلدات في سلة المهملات على وشك أن يتم حذفها نهائيا.',
'An error occurred while trying to process the request.' => 'حدث خطأ أثناء محاولة معالجة الطلب.',
'Resume' => 'استئناف',
'Delete folder?' => 'حذف المجلد',
'Please enter a new name for the item:' => 'الرجاء ادخال اسم جديد للملف:',
'Are you sure you want to move the folder?' => 'هل أنت متأكد من رغبتك بنقل المجلد؟',
'Move folder?' => 'نقل المجلد؟',
'Web link' => 'رابط موقع',
'Please type the %1label\'s text%2' => 'من فضلك اكتب تسمية %1 هنا %2',
'Date Format: Files' => 'صيغة التاريخ : الملفات',
'Tags' => 'كلمات دلالية',
'Failed to load file list.' => 'فشل في تحميل قائمة الملف.',
'You need a modern browser in order to use this feature.' => 'تحتاج إلى متصفح حديث من أجل استخدام هذه الميزة.',
'Please select a PNG or JPG image file.' => 'الرجاء اختيار ملف الصورة PNG أو JPG.',
'File request' => 'طلب ملف',
'What are you requesting?' => 'ما الذي تطلبه؟',
'Photos, Documents, Contracts...' => 'صور, ملفات, عقود...',
'Search options' => 'خيارات البحث',
'Create new folder' => 'إنشاء مجلد جديد',
'This field is required' => 'هذا الحقل مطلوب',
'Photos' => 'الصور',
'Uploading...' => 'جار الرفع...',
'Help' => 'مساعدة',
'Display mode' => 'طريقة العرض',
'Detailed list' => 'قائمة مفصلة',
'Thumbnails' => 'صور مصغرة',
'Last taken' => 'تؤخذ في الماضي ',
'By date' => 'حسب التاريخ',
'By tag' => 'حسب الوسوم الدلالية',
'Music' => 'موسيقى',
'Last added' => 'مضافة مؤخرا',
'By artist' => 'حسب الفنان',
'By album' => 'حسب الالبوم',
'Random' => 'عشوائي',
'Failed to load audio file.' => 'فشل في تحميل ملف الصوت.',
'There are no photos in here' => 'لاتوجد صور هنا',
'There are no audio files in here' => 'لاتوجد ملفات صوت هنا',
'There is one other item' => 'لايوجد عنصر اخر هنا',
'There are %1 other items' => 'يوجد %1 عنصر اخر',
'Show all items' => 'عرض كافة الملفات',
'Show the item' => 'عرض الملف',
'Scan files for changes' => 'البحث عن تغييرات فى الملفات',
'This folder is empty' => 'هذا المجلد فارغ',
'Tag files' => 'وسم الملفات',
'Please select at least a file or a folder!' => 'من فضلك قم بتحديد ملف او مجلد واحد على الاقل',
'Please add at least one tag!' => 'من فضلك قم بإضافة وسم واحد على الاقل',
'Add tags...' => 'إضافة وسم',
'Tag selected' => 'الوسوم المختارة',
),
'General' =>
array (
'One file successfully copied.' => 'تم نسخ ملف واحد بنجاح',
'Folder successfully moved.' => 'تم نقل المجلد بنجاح',
'One minute ago' => 'منذ دقيقة واحدة',
'One minute' => 'دقيقة واحدة',
'Under one minute' => 'اقل من دقيقة واحدة',
'just now' => 'الآن',
'Folder successfully copied.' => 'تم نسخ المجلد بنجاح',
'Copying...' => 'جارى النسخ',
'Submit' => 'إرسال',
'Save' => 'حفظ',
'Cancel' => 'الغاء',
'Error' => 'خطأ',
'Invalid path.' => 'مسار غير صالح.',
'File not found!' => 'الملف غير موجود!',
'You are not allowed to preview the selected file.' => 'لا يسمح لك معاينة الملف المحدد.',
'%1 users' => '٪ 1 المستخدمين',
'You are not allowed to download the requested file!' => 'لا يسمح لك بتحميل الملف المطلوب!',
'The file you are trying to download is no longer available!' => 'نأسف الملف الذي تحاول تحميلة لم يعد متوفرا!',
'You are not allowed to download or preview files.' => 'لا يسمح لك بتحميل الملف أو المعاينة.',
'Invalid folder.' => 'مجلد غير صالح',
'You are not allowed to copy that shared file.' => 'لا يسمح لك نسخ هذة الملفات المشتركة.',
'You are not allowed to copy files to the specified target.' => 'لا يسمح لك نسخ الملفات إلى الهدف المحدد.',
'No file was copied!' => 'لا توجد ملفات تم نسخها!',
'One file copied.' => 'نسخ ملف واحد.',
'%1 files copied.' => '٪ 1 الملفات المنسوخة.',
'No more file space available.' => 'لا مزيد من المساحة متاحة للملفات.',
'You are not allowed to delete files from this shared folder.' => 'لا يسمح لك حذف الملفات من هذا المجلد المشترك.',
'No files were deleted!' => 'لا توجد ملفات تم حذفها!',
'One file deleted.' => 'حذف ملف واحد.',
'%1 files successfully deleted.' => '٪ 1 الملفات المحذوفة بنجاح.',
'You are not allowed to move that shared file.' => 'لا يسمح لك نقل ملف مشترك.',
'You are not allowed to move files to the specified target.' => 'لا يسمح لك بنقل الملفات إلى الهدف المحدد.',
'You are not allowed to move these shared files to your own folder.' => 'لا يسمح لك بنقل هذه الملفات إلى المجلد المشترك الخاصة بك.',
'No file was moved!' => 'لا توجد ملفات انتقلت!',
'One file moved.' => 'انتقل ملف واحد.',
'%1 files moved.' => 'انتقلت٪ 1 الملفات.',
'Invalid target path, file already exists.' => 'المسار الهدف غير صالح، الملف موجود بالفعل.',
'The selected file is currently locked by another user.' => 'الملف مغلق من قبل شخص أخر ',
'Invalid path, not a file.' => 'مسار غير صالح، ليس ملف.',
'Invalid path, not a folder.' => 'مسار غير صالح، ليس مجلد.',
'Invalid source path, not a folder.' => 'مسار المصدر غير صالحة، ليس مجلد.',
'Invalid target path, not a folder.' => 'المسار الهدف غير صحيح، ليس مجلد.',
'Invalid source path, not a file.' => 'مسار المصدر غير صالحة، ليس ملف.',
'You are not allowed to rename files in this shared folder.' => 'لا يسمح لك اعادة تسمية الملفات في هذا المجلد المشترك.',
'File successfully renamed.' => 'تم اعادة تسمية الملف بنجاح',
'There is already a file or a folder with the same name!' => 'بالفعل هناك ملف بنفس الاسم في هذا المجلد!',
'Failed to rename file!' => 'فشل في إعادة تسمية الملف!',
'You are not allowed to extract archives in this shared folder.' => 'لا يسمح لك بأستخراج المحفوظات في هذا المجلد المشترك.',
'You are not allowed to zip files in this shared folder.' => 'لا يسمح لك بضغط الملفات في هذا المجلد المشترك.',
'Invalid folder name!' => 'اسم المجلد غير صالح!',
'Invalid file name' => 'اسم الملف غير صالح',
'A folder with that name already exists!' => 'مجلد بهذا الاسم موجود بالفعل!',
'Unzipped Files' => 'فك ضغط الملفات',
'The archive was successfully extracted.' => 'تم استخراج الأرشيف بنجاح.',
'Invalid zip name!' => 'اسم zip غير صالح!',
'A file with that name already exists!' => 'ملف بهذا الاسم موجود بالفعل!',
'Zip archive successfully created.' => 'Zip archive إنشاء بنجاح.',
'You are not allowed to delete that shared folder.' => 'لا يسمح لك بحذف هذا المجلد المشترك.',
'You cannot delete the root of a shared folder.' => 'لا يمكنك حذف جذر مجلد مشترك.',
'Folder deleted.' => 'حذف المجلد.',
'Failed to delete folder!' => 'فشل في حذف مجلد!',
'You are not allowed to move that shared folder.' => 'لا يسمح لك بنقل هذا المجلد المشترك.',
'You are not allowed to copy that shared folder.' => 'لا يسمح لك نسخ هذا المجلد المشترك.',
'You are not allowed to copy folder to the specified target.' => 'لا يسمح لك نسخ المجلد إلى الهدف المحدد.',
'You are not allowed to move the folder to the shared location.' => 'لا يسمح لك لنقل المجلد إلى موقع مشترك.',
'You are not allowed to move this shared folder to your own folder.' => 'لا يسمح لك لنقل هذا المجلد المشترك إلى مجلد خاص بك.',
'Folder moved.' => 'أنقل المجلد.',
'Failed to move folder!' => 'فشل نقل المجلد!',
'Failed to rename folder!' => 'فشل فى إعادة تسمية المجلد',
'There is already a folder with the same name in this folder!' => 'هناك بالفعل مجلد بنفس الاسم في هذا المجلد!',
'Folder successfully created.' => 'إنشاء المجلد.',
'Failed to create folder!' => 'فشل إنشاء مجلد!',
'Failed to upload file "%1": %2' => 'فشل لتحميل الملف "٪ 1":٪ 2',
'You are not allowed to upload to this shared folder.' => 'لا يسمح لك بتحميل هذا المجلد المشترك.',
'No more file space available!' => 'لا مزيد من المساحة المتاحة للملفات!',
'File uploaded.' => 'تحميل الملف.',
'The previous version is available from the versioning menu.' => 'الإصدار السابق هو متاح من قائمة الإصدارات.',
'Failed to upload file.' => 'فشل بتحميل الملف.',
'Please specify a file for upload.' => 'يرجى تحديد ملف للتحميل.',
'The monthly traffic limit has been reached!' => 'تم الوصول إلى الحد النهائي للحركة الشهرية!',
'Click <a href="%1">here</a> to go back.' => 'انقر <a href="٪1"> هنا </a>للعودة.',
'A file named "%1" already exists!' => 'ملف يسمى "٪ 1" موجود بالفعل!',
'The path of your home folder doesn\'t point to an existing folder. Please contact the site administrator.' => 'لا يشير مسار المجلد الرئيسي إلى مجلد موجود. يرجى الاتصال بمسؤول الموقع.',
'Failed to move file %1' => ' %1 فشل فى نقل الملف',
'The file size exceeds the destination folder quota.' => 'حجم الملف اكبر من حصة المجلد',
'The shared folder is no longer available.' => 'المجلد المشارك لم يعد موجودا',
'You are not allowed to modify files in this shared folder.' => 'لا يسمح لك بتعديل الملفات الموجودة في هذا المجلد المشترك.',
'You are not allowed to upload files in this folder.' => 'لا يسمح لك بتحميل الملفات في هذا المجلد.',
'Please type a name for the file!' => 'يرجى كتابة اسم للملف!',
'Please type a name for the folder!' => 'من فضلك اكتب اسم للمجلد',
'You are not allowed to create folders under this shared folder.' => 'لا يسمح لك أنشاء مجلدات تحت هذا المجلد المشترك.',
'%1 minutes' => '٪ 1 دقيقة',
'%1 minutes ago' => 'منذ٪ 1 دقيقة',
'One hour' => 'ساعة واحدة',
'One hour ago' => 'قبل ساعة واحدة',
'%1 hours' => '٪ 1 ساعات',
'%1 hours ago' => 'منذ٪ 1 ساعات',
'One day' => 'يوم واحد',
'One day ago' => 'قبل يوم واحد',
'Yesterday' => 'أمس',
'%1 days' => '٪ 1 أيام',
'%1 days ago' => 'منذ٪ 1 أيام',
'One week' => 'اسبوع واحد',
'One week ago' => 'منذ أسبوع',
'%1 weeks' => '٪ 1 أسابيع',
'%1 weeks ago' => '%1قبل اسابيع',
'One month' => 'شهر واحد',
'One month ago' => 'قبل شهر',
'%1 months' => '٪ 1 منذ أشهر',
'%1 months ago' => 'منذ٪ 1 منذ أشهر',
'One year' => 'سنة واحدة',
'One year ago' => 'منذ عام مضى',
'%1 years' => '٪ 1 سنة',
'%1 years ago' => 'منذ٪ 1 سنة',
'You are not allowed to rename folders!' => 'لا يسمح لك اعادة تسمية المجلدات!',
'You are not allowed to create folders!' => 'لا يسمح لك انشاء مجلدات!',
'One file moved to trash.' => 'انقل ملف واحد إلى سلة المهملات.',
'%1 files successfully moved to trash.' => '٪ 1 نقل الملفات بنجاح إلى سلة المهملات.',
'One folder moved to trash.' => 'تم نقل مجلد واحد لسلة المهملات',
'%1 files and folders successfully deleted.' => '%1 من الملفات و المجلدات تم حذفها بنجاح',
'%1 files and folders successfully moved to trash.' => '%1 من الملفات و المجلدات تم نقلها لسلة المهملات',
'Invalid folder name' => 'اسم خطاء للمجلد',
'Folder successfully renamed.' => 'تم تغيير إسم المجلد بنجاح',
'One folder successfully copied.' => 'تم نسخ مجلد واحد بنجاح',
'One folder successfully moved.' => 'تم نقل مجلد واحد بنجاح',
'File successfully copied.' => 'تم نسخ الملف بنجاح',
'File successfully moved.' => 'تم نقل الملف بنجاح',
'%1 files and folders successfully copied.' => '%1 ملف و مجلد تم نسخهم بنجاح',
'%1 files and folders successfully moved.' => '%1 ملف و مجلد تم نقلهم بنجاح',
'%1 folders successfully copied.' => '%1 مجلد تم نسخهم بنجاح',
'%1 folders successfully moved.' => '%1 مجلد تم نقلهم بنجاح',
'You cannot copy a deleted file.' => 'لايمكنك نسخ ملف محذوف',
'You cannot move a deleted file.' => 'لايمكنك نقل ملف محذوف',
'The folder cannot be copied under itself!' => 'لايمكن نسخ المجلد داخل نفسه',
'The folder cannot be moved under itself!' => 'لايمكن نقل المجلد داخل نفسه',
'The specified target location is the same!' => 'موقع الوجهة المحددة متطابق',
'One file successfully moved.' => 'تم نقل ملف واحد بنجاح',
'%1 files successfully copied.' => '%1 ملف تم نسخهم بنجاح',
'%1 files successfully moved.' => '%1 ملف تم نقلهم بنجاح',
'You are not allowed to zip folders' => 'غير مسموح لك بضغط المجلدات',
'You are no longer logged in.' => 'لم تعد مسجل الدخول',
'This application requires authentication.' => 'هذا التطبيق يتطلب التوثيق',
'Your user account does not have permission to perform the requested operation!' => 'حسابك ليس لدية الإذن بفعل العملية المطلوبة',
'You are not allowed to move this shared item.' => 'غير مسموح لك بنقل هذا الملف المشارك',
'You are not allowed to rename this shared item.' => 'غير مسموح لك بإعادة تسمية هذا الملف المشارك',
'You are not allowed to delete this shared item.' => 'غير مسموح لك بحذف هذا الملف المشارك',
'The destination folder no longer exists!' => 'المجلد المحدد للوجهة لم يعد موجودا',
'The selected file or folder no longer exists!' => 'الملف او المجلد الذى تم تحديدة لم يعد موجودا',
'Please type a new folder name!' => 'من فضلك اكتب إسم المجلد الجديد',
'Please type a new file name!' => 'من فضلك اكتب إسم الملف الجديد',
),
'DateTime' =>
array (
'This month' => 'هذا الشهر',
'January' => 'يناير',
'February' => 'فبراير',
'March' => 'مارس',
'April' => 'أبريل',
'May' => 'مايو',
'June' => 'يونيو',
'July' => 'يوليو',
'August' => 'أغسطس',
'September' => 'سبتمبر',
'October' => 'أكتوبر',
'November' => 'نوفمبر',
'December' => 'ديسمبر',
'Sunday' => 'الأحد',
'Monday' => 'الأثنين',
'Tuesday' => 'الثلاثاء',
'Wednesday' => 'الأربعاء',
'Thursday' => 'الخميس',
'Friday' => 'الجمعة',
'Saturday' => 'السبت',
'Today' => 'اليوم',
'This date is before the minimum date' => 'هذا التاريخ هو قبل الحد الأدنى للتاريخ',
'This date is after the maximum date' => 'هذا التاريخ هو بعد الحد الأقصى للتاريخ',
'Next Month (Control+Right)' => 'الشهر القادم (التحكم + يمين)',
'Previous Month (Control+Left)' => 'الشهر السابق (التحكم + يسار)',
'Choose a month (Control+Up/Down to move years)' => 'اختر الشهر (التحكم + أعلى / أسفل للانتقال سنوات)',
'{0} (Spacebar)' => '{0} (المسافة)',
'Cancel' => 'إلغاء',
'Jan' => 'يناير',
'Feb' => 'فبراير',
'Mar' => 'مارس',
'Apr' => 'أبريل',
'Jun' => 'يونيو',
'Jul' => 'يوليو',
'Aug' => 'أغسطس',
'Sep' => 'سبتمبر',
'Oct' => 'أكتوبر',
'Nov' => 'نوفمبر',
'Dec' => 'ديسمبر',
),
'Trash' =>
array (
'A file or folder already exists at the original location.' => 'ملف أو مجلد موجود بالفعل في الموقع الأصلي.',
'One item permanently deleted.' => 'تم حذف ملف واحد نهائيا',
'No items were restored!' => 'لم يتم استعادة اي عناصر',
'One item restored.' => 'عنصر واحد تم استعادتة',
'%1 items successfully restored.' => 'استعادة من العناصر بنجاح 1٪ ',
'Trash emptied' => 'تم تفريغ السلة',
'Failed to empty trash' => 'فشل في تفريغ السلة',
'%1 items permanently deleted.' => '1٪ملفات تم حذفها نهائيا',
),
'Account Settings' =>
array (
'Current password' => 'كلمة السر الحالية',
'New password' => 'كلمة سر جديدة',
'Confirm new password' => 'تأكيد كلمة المرور الجديدة',
'Save changes' => 'حفظ',
'Cancel' => 'إلغاء',
'Please type the current password correctly.' => 'الرجاء كتابة كلمة المرور الحالية بشكل صحيح.',
'The password needs at least one character.' => 'كلمة السر بحاجة حرف واحد على الأقل.',
'Please retype the new password correctly.' => 'الرجاء إعادة كتابة كلمة المرور الجديدة بشكل صحيح.',
'Please type your name' => 'اكتب اسمك من فضلك',
'Please type your e-mail address' => 'من فضلك اكتب بريدك الإلكترونى',
'Basic details' => 'التفاصيل الأساسية',
'The password needs at least %1 more characters.' => 'كلمة السر تحتاج ما لا يقل عن٪ 1 المزيد من الحروف.',
'The password needs at least one uppercase letter.' => 'يجب ان تحتوي كلمة السر على حرف واحد كبير على الأقل',
'The password needs at least one special character.' => 'كلمة السر يجب طابع خاص واحد على الأقل.',
'The password needs at to contain at least one letter.' => 'يجب ان تحتوي كلمة السر على حرف واحد على الأقل',
'The password needs at to contain at least one digit.' => 'يجب ان تحتوي كلمة السر على حرف رقم كبير على الأقل',
'The password cannot contain the "%1" sequence.' => 'كلمة المرور لايمكن ان تحتوى على التسلسل "%1"',
'The password cannot contain the "%1" part.' => 'كلمة المرور لايمكن ان تحتوى على الجزء "%1"',
'Access revoked for %1 apps' => 'تم سحب إذن الوصول من %1 تطبيق',
'The changes has been successfully saved' => 'تم حفظ التغيرات بنجاح',
'Failed to save the changes!' => 'فشل لحفظ التغييرات!',
'No changes made' => 'لم تحدث تغييرات',
'Change password' => 'تغيير كلمة المرور',
'Your password has been last changed %1' => 'اّخر تاريخ تم تغيير كلمة المرور به هو %1',
'2-Step verification' => 'التحقق بخطوتين',
'Enable 2-step verification' => 'تفعيل التحقق بخطوتين',
'Every time you login you will need to type in also a temporary code which can be generated on your mobile device with a dedicated app such as Google Authenticator.' => 'فى كل مرة تقوم بتسجيل الدخول ستحتاج كتابة رمز مؤقت يمكن الحصول عليه من خلال تطبيق على هاتفك الجوال مثل تطبيق Google Authenticator.',
'Name' => 'الإسم',
'E-mail address' => 'البريد الإلكترونى',
'E-mail notifications' => 'إشعارات البريد الإلكترونى',
'Mute sound notifications' => 'إلغاء الإشعارات الصوتية',
'Connected apps' => 'التطبيقات المتصلة',
'Revoke access' => 'منع الوصول',
'Granted on %1 from %2' => 'تم الحصول على %1 من %2',
'Profile image successfully updated' => 'تم تحديث صورة البروفايل بنجاح',
'Failed to upload image file: %1' => 'فشل فى رفع ملف الصورة : %1',
'Profile image' => 'صورة الملف الشخصى',
'Phone' => 'الهاتف',
),
'File Upload' =>
array (
'File uploaded' => '
ملف مرفوع',
'Failed to upload file' => '
فشل تحميل الملف',
'Failed to create folder' => '
فشل في إنشاء مجلد',
'Failed to upload file "%1": %2' => '
فشل تحميل الملف "٪ 1":٪ 2',
'The monthly traffic limit has been reached!' => '
تم الوصول إلى الحد الأقصى لحركة المرور الشهرية!',
'No more file space available!' => '
لا مزيد من مساحة الملفات المتاحة!',
'A file named "%1" already exists!' => '
يوجد بالفعل ملف اسمه "٪ 1"!',
'The file needs to be uploaded from the beginning.' => '
يجب تحميل الملف من البداية',
'Failed to transfer data. Make sure you are not trying to upload an empty folder.' => '
فشل في نقل البيانات. تأكد من أنك لا تحاول تحميل مجلد فارغ.',
'You are not allowed to upload to this shared folder.' => '
غير مسموح لك بالتحميل إلى هذا المجلد المشترك.',
'Failed to upload file part' => '
فشل تحميل جزء الملف',
'Failed to upload file. Please try again.' => '
فشل تحميل الملف. حاول مرة اخرى.',
),
'E-mail Files' =>
array (
'Done' => '
فعله',
'Please fill in "From" field!' => '
يرجى ملء حقل "من"',
'Please set at least one recipient!' => '
يرجى ضبط مستلم واحد على الأقل!',
'Please type a subject!' => '
يرجى كتابة موضوع!',
'Please type a message!' => 'يرجى كتابة رسالة',
'Email successfuly sent!' => '
تم إرسال البريد الإلكتروني بنجاح',
'Failed to send email!' => '
فشل إرسال البريد الإلكتروني',
'From' => '
من عند',
'To' => '
إلى',
'Separate recipients by ,' => '
المستلمون المنفصلون بواسطة',
'Select Users' => '
حدد المستخدمين',
'Cancel' => '
إلغاء',
'Subject' => 'موضوع',
'Message' => 'رسالة ',
'Attachments' => 'مرفقات',
'Send WebLinks instead of attaching the files.' => '
إرسال رابط الويب بدلاً من إرفاق الملفات.',
'Web link to' => '
رابط الويب ل',
'Send' => 'ارسال ',
'Please make the appropriate <br>changes to the highlighted fields.' => '
يرجى إجراء التغييرات المناسبة على الحقول المميزة',
'Sending e-mail...' => '
إرسال البريد الإلكتروني...',
'No recipient addresses found!' => '
لم يتم العثور على عناوين المستفيدين!',
'You are not allowed to share the file "%1"!' => 'غير مسموح لك بمشاركة الملف "٪ 1"!',
'Optional: include a personal message...' => '
اختياري: تضمين رسالة شخصية ',
'Web Link Options' => 'خيارات رابط الويب',
'The message was not sent to any of the recipients' => '
لم يتم إرسال الرسالة إلى أي من المستلمين',
'The message has been sent to one recipient' => '
تم إرسال الرسالة إلى مستلم واحد',
'The message has been sent to %1 recipients' => 'تم إرسال الرسالة إلى المستلمين٪ 1',
'Errors: %1' => '
الأخطاء:٪ 1',
'Overwrite existing link settings.' => '
الكتابة فوق إعدادات الارتباط الموجودة.',
'You are not allowed to share the folder "%1"!' => '
غير مسموح لك بمشاركة المجلد "٪ 1"!',
'You are not allowed to create links! You can send files only as attachments.' => '
غير مسموح لك بإنشاء روابط! يمكنك إرسال الملفات كمرفقات فقط.',
'%1 sent you a file' => '
أرسل لك٪ 1 ملفًا',
'%1 sent you %2 files' => '
أرسل لك٪ 1 ملفات٪ 2',
'Please wait' => '
أرجو الإنتظار',
),
'Share Files' =>
array (
'Add guest user' => 'إضافة مستخدم زائر',
'Next' => 'التالي',
'Upload' => 'تحميل',
'Download' => 'تحميل',
'Add comments' => 'إضافة تعليقات',
'Read comments' => 'قراءة تعليقات',
'Make changes' => 'تنفيذ التغييرات',
'Share anonymously' => 'مشاركة مجهول',
'Share with' => 'شارك مع',
'Select Users' => 'حدد المستخدمين',
'Cancel' => 'إلغاء',
'Unsorted, %1 users' => 'لم يتم فرزها،٪ 1 المستخدمين',
'Permissions' => 'ضوابط',
'Options' => 'خيارات',
'Add Users' => 'إضافة مستخدمين',
'Remove' => 'حذف',
'Save' => 'حفظ
حفظ',
'Loading data...' => 'تحميل البيانات ...',
'Saving options...' => 'توفير خيارات',
'Add users to share with.' => 'إضافة مستخدمين للمشاركة مع.',
'Sharing options saved.' => 'خيارات المشاركة تم حفظها',
'Ok' => 'نعم',
'Share as' => 'شارك كما',
'Share links' => 'مشاركة الروابط',
'Add user' => 'إضافة مستخدم',
),
'Folder Notifications' =>
array (
'Notification settings successfully saved' => 'حفظ إعدادات التنبيهات بنجاح',
'Notifications for "read" actions cannot be set on shared folders.' => 'لايمكن تعيين التنبيهات لعمليات الاستعراض لهذا الملف المشترك',
'No changes were made.' => 'لم يتم إحداث تعديلات',
),
'Web Links' =>
array (
'Upload' => 'رفع',
'The link has been copied to clipboard.' => 'تم نسخ الرابط للحافظة',
'Loading data...' => 'تحميل البيانات ...',
'Link address' => 'عنوان الرابط',
'Expiration date' => 'تاريخ انتهاء الصلاحية',
'Download limit' => 'حد التحميل',
'Set a password' => 'تعيين كلمة مرور',
'Receive e-mail notifications.' => 'تلقي إخطارات البريد الإلكتروني',
'Allow visitors to upload files.' => 'السماح للزائرين لتحميل الملفات',
'Save changes' => 'حفظ التغييرات',
'Remove link' => 'حذف الرابط',
'You cannot allow uploads in this folder' => 'لا يمكن الإضافات في هذا المجلد',
'Web link successfully created!' => 'تم أنشاء الرابط بنجاح',
'Failed to create web link!' => 'فشل انشاء رابط',
'Web link successfully updated!' => 'تم تحديث رابط بنجاح!',
'Failed to update web link!' => 'فشل تحديث رابط الويب!',
'Web link successfully deleted!' => 'تم حذف رابط بنجاح!',
'Failed to delete web link!' => 'فشل في حذف رابط!',
'The requested file requires a password.' => 'الملف المطلوب يتطلب كلمة مرور.',
'Password' => 'كلمة مرور',
'Submit' => 'تقدم',
'The requested file is no longer available!' => 'الملف المطلوب لم يعد متوفرا!',
'Click <a href="%1">here</a> to go back.' => 'إضغط <a href="%1">هنا </a> للرجوع.',
'Open' => 'فتح',
'E-mail' => 'البريد الإلكتروني',
'Grid view' => 'عرض شبكة',
'Short Link' => 'اختصار الرابط',
'Image gallery' => 'معرض الصور',
'Audio playlist' => 'قائمة تشغيل الصوت',
'RSS feed' => 'تغذية RSS',
'You are required to password protect the link' => 'هل هناك حاجة لحماية الوصلة بكلمة السر',
'Advanced' => 'متقدم',
'Download Terms' => 'شروط التحميل',
'Comments' => 'تعليفات',
'Share the file comments with the visitors.' => 'مشاركة التعليقات مع الزوار',
'Link' => 'رابط',
'Add download terms and conditions' => 'إضافة شروط التحميل و القيود',
'Force the visitors to accept your written terms before being able to download files.' => 'إلزام الزوار بالموافقة على شروطة فبل تمكيمهم من تحميل الملفات',
'QR Code' => 'رمز QR',
'Scan this QR code with your mobile device.' => 'إمسح رمز الQR بإستخدام هاتفك الجوال',
'Ok' => 'حسنا',
'You are not allowed to access web links!' => 'غير مسموح للوصول لروابط الوب !',
'Prevent the browser from opening the file.' => 'منع المتصفح من فتح الملف',
'Some common types of files are being opened by the browser instead of asking the visitors from saving to their computers.' => 'بعض انواع الملفات الشائعة يمكن فتحها عبر المتصفح بدلا من سؤال الزوار تحميلها على اجهزتهم',
'Changes saved.' => 'تم حفظ التغيرات.',
'Empty contents.' => 'محتوي فارغ.',
'Failed to save changes.' => 'فشل في حفظ التغييرات.',
'Done' => 'تم',
'E-mail program' => 'برنامج البريد الإلكترونى',
'Gmail' => 'جيميل Gmail',
'Share link' => 'مشاركة الرابط',
'Shorten' => 'تقصير',
'You are not allowed to share the selected file!' => 'غير مسموح لك بمشاركة الملفات التى تم إختيارها !',
'Cancel' => 'إلغاء',
'Display users names.' => 'عرض اسماء المستخدمين',
'Download' => 'تحميل',
'Give this link to people you’re requesting files from' => 'منح هذا الرابط للاشخاص الذين تطلب منهم ملفات',
'Download All' => 'تحميل الكل',
'Submit files' => 'إرسال الملفات',
'%1 is requesting' => '%1 يطلب',
'Only %1 will see the files you upload.' => 'فقط ٪1 سيري الملفات التي تقوم برفعها',
'Choose files' => 'إختار الملفات',
'File request' => 'طلب ملف',
'Enable file request.' => 'تفعيل طلب الملف',
'Allow visitors to see and download the existing files.' => 'السماح للزوار من رؤية و تحميل الملفات الموجودة',
'Or drag them from your computer onto this page.' => 'او قم بسحب الملفات من حاسوبك لهذه الصفحة',
'Who is sending the files?' => 'من يرسل الملفات ؟',
'Type your name here' => 'اكتب اسمك هنا',
'Start upload' => 'بدء الرفع',
'The files have been successfully sent!' => 'تم إرسال الملفات بنجاح',
'Upload starting...' => 'جاري بدء رفع الملفات ...',
'Uploading...' => 'جاري الرفع',
'Refreshing page...' => 'إعادة تحميل الصفحه....',
'List view' => 'عرض قائمة',
'One item' => 'ملف واحد',
'Empty folder' => 'المجلد فارغ',
'%1 items' => '%1 ملفد',
'Options' => 'خيارات',
'Copy' => 'نسخ',
),
'Files Activity Log' =>
array (
'File moved with parent folder' => '
تم نقل الملف مع المجلد الأصل',
'Folder moved with parent folder' => '
تم نقل المجلد مع المجلد الأصل',
'Date' => 'تاريخ ',
'User' => 'مستخدم ',
'Action' => 'عمل ',
'Details' => '
تفاصيل',
'No activity records found for this file.' => '
لم يتم العثور على سجلات نشاط لهذا الملف.',
'You are not allowed to access the files activity logs' => '
غير مسموح لك بالوصول إلى سجلات نشاط الملفات',
'Displaying records {0} - {1} of {2}' => '
عرض السجلات {0} - {1} من {2}',
'No records to display' => '
لا سجلات لعرضها',
'Page' => 'صفحة ',
'of {0}' => '
من {0}',
'First Page' => 'اول صفحة ',
'Last Page' => '
آخر صفحة',
'Next Page' => 'الصفحة التالية ',
'Previous Page' => '
الصفحة السابقة',
'Refresh' => 'تحديث ',
'%2 by <span style="color:black">%1</span>' => '٪ 2 بواسطة <span style = "color: black">٪ 1 </ span>',
'File uploaded' => '
ملف مرفوع',
'Uploaded by %1' => '
تم التحميل بواسطة٪ 1',
'File downloaded' => '
الملف الذي تم تنزيله',
'Downloaded by %1' => '
تم التنزيل بواسطة٪ 1',
'File archived for download' => 'ملف أرشفة للتحميل',
'Archived for download by %1' => '
المؤرشفة للتحميل بواسطة٪ 1',
'File archived' => '
أرشفة الملف',
'File copied' => '
تم نسخ الملف',
'Copied by %1' => '
تم النسخ بواسطة٪ 1',
'File pasted' => '
الملف الملصق',
'Pasted by %1' => '
تم لصقها بواسطة٪ 1',
'File moved' => 'تم نقل الملف',
'Moved by %1' => '
تم النقل بواسطة٪ 1',
'File deleted' => '
تم حذف الملف',
'Deleted by %1' => '
تم الحذف بواسطة٪ 1',
'Deleted file restored' => '
استعادة الملف المحذوف',
'Restored by %1' => '
تمت الاستعادة بواسطة٪ 1',
'File previewed' => '
تمت معاينة الملف',
'Previewed by %1' => '
تمت المعاينة بواسطة٪ 1',
'WebLink download' => 'تنزيل رابط الويب
',
'Downloaded through %1\'s WebLink' => '
تم تنزيله من خلال رابط الويب ',
'WebLink created' => '
انشاء رابط الويب ',
'%1 attached a WebLink' => 'ارفق رابط الويب ',
'WebLink updated' => '
تحديث رابط الويب ',
'%1 changed the WebLink\'s options' => '
قم بتغير خيارات رابط الويب',
'WebLink removed' => 'ازالة رابط الويب ',
'%1 removed the WebLink' => '
أزال٪ 1 رابط الويب',
'Comment added' => 'اضف تعليق ',
'%1 wrote a comment' => 'اكتب تعليقا ',
'Comment removed' => '
تمت إزالة التعليق',
'%1 removed a comment' => 'إزالة تعليق: "٪ 2',
'Metadata changed' => '
البيانات الوصفية تغيرت',
'Metadata changed by %1' => '
تم تغيير البيانات الوصفية بنسبة٪ 1',
'File locked' => 'ملف مغلق',
'Locked by %1' => '
مؤمن بواسطة٪ 1',
'File unlocked' => '
الملف غير مقفلة',
'Unlocked by %1' => 'مقفلة بواسطة٪ 1',
'Previous file version restored' => '
استعادة ملف النسخة السابقة',
'Previous version restored by %1' => 'تم استعادة الإصدار السابق بواسطة٪ 1',
'Previous file version deleted' => '
تم حذف نسخة الملف السابقة',
'Previous version deleted by %1' => '
الإصدار السابق تم حذفه بواسطة٪ 1',
'File renamed' => '
تمت إعادة تسمية الملف',
'Renamed by %1' => '
تمت إعادة تسميتها بواسطة٪ 1',
'File encrypted' => '
ملف مشفر',
'Encrypted by %1' => '
مشفر بواسطة٪ 1',
'File decrypted' => '
ملف فك تشفير',
'Decrypted by %1' => '
تم فك تشفيرها بواسطة٪ 1',
'File sent by e-mail' => '
إرسال الملف عن طريق البريد الإلكتروني',
'Send by e-mail by %1' => '
أرسل عن طريق البريد الإلكتروني بنسبة٪ 1',
'Changed label' => '
تغيير التسمية',
'Label removed' => '
تمت إزالة التصنيف',
'Labeled by %1: %2' => '
تمت التسمية باستخدام٪ 1:٪ 2',
'Label removed by %1' => '
تمت إزالة التصنيف بواسطة٪ 1',
'Are you sure you want to clear the file\'s activity log?' => '
هل أنت متأكد من أنك تريد مسح سجل نشاط الملف؟',
'Activity log successfully cleared' => '
تم مسح سجل النشاط بنجاح',
'Failed to clear activity log' => '
فشل مسح سجل النشاط',
'Clear log' => '
سجل نظيف',
'Activity log has been successfully archived!' => '
سجل النشاط تم أرشفته بنجاح',
),
'Metadata' =>
array (
'You are not allowed to alter data in this shared folder.' => 'غير مسموح لك بتعديل البيانات في هذا المجلد المشترك',
'Software Error: Failed to insert new path.' => 'خطأ في البرنامج : فشل في إضافة مسار جديد',
'File Type' => 'نوع الملف',
'Select...' => 'تحديد.....',
'- File Type Not Found -' => '-نوع الملف غير موجود -',
'Save' => 'حفظ',
'Saving data...' => 'حفظ البيانات.....',
'Failed to save data!' => 'فشل في حفظ البيانات !',
'- No Special Type -' => '- نوع غير خاص -',
'No changes were made' => 'لم يتم إحداث تعديلات',
'Changes saved' => 'تم حفظ التعديلات',
),
'Versioning' =>
array (
'Version' => 'نسخة',
'User' => 'المستخدم',
'Date' => 'تاريخ',
'Download' => 'تحميل',
'Restore' => 'استعادة',
'Delete' => 'حذف',
'File version restored.' => 'استعادة اصدار الملف',
'Failed to restore file version.' => 'فشل في استعادة إصدار الملف.',
'File version deleted.' => 'حذف اصدار الملف',
'Failed to delete file version.' => 'فشل حذف إصدار الملف.',
'You are not allowed to lock/unlock files in this shared folder.' => 'غير مسموح لك بقفل او فتح الملفات في هذا المجلد المشترك.',
'The file has been locked.' => 'تم تأمين الملف.',
'The file has been unlocked.' => 'تم إلغاء قفل الملف.',
'Failed to lock file!' => 'فشل قفل الملف!',
'Failed to unlock file!' => 'فشل في فتح الملف!',
'File is locked by another user.' => 'ملف مؤمن من قبل مستخدم آخر.',
'File is already locked by somebody else.' => 'ملف مؤمن بالفعل من قبل شخص آخر.',
'Modified by' => 'تعديل من قبل',
'Size' => 'حجم',
'The file is not locked.' => 'الملف غير مؤمن',
'The file is already locked.' => 'الملف مؤمن بالفعل',
),
'Searching' =>
array (
'File name' => 'اسم الملف',
'File contents' => 'محتويات الملف',
'Look in' => 'ابحث في',
'Metadata Field' => 'حقل توضيحي',
'Metadata' => 'بيانات توضيحية',
'Select...' => 'أختر ...',
'Path' => 'مسار',
'Searching...' => 'البحث ...',
'Search' => 'بحث',
'- None Selected -' => '- لم يتم التحديد -',
'Metadata Type' => 'نوع البيانات التوضيحية',
'Field Value' => 'قيمة الحقل',
),
'Custom Actions: CloudConvert' =>
array (
'API Key' => '
مفتاح API',
'Convert "%1" to:' => 'تحويل الي..',
'No conversion option found for the "%1" file type.' => 'لا خيارات تحويل وجدت للملف المطلوب ..',
),
'File Comments' =>
array (
'Author' => 'كاتب',
'Comment' => 'تعليق',