]> BookStack Code Mirror - bookstack/blob - lang/ar/editor.php
Deps: Updated composer/npm packages, fixed test namespace
[bookstack] / lang / ar / editor.php
1 <?php
2 /**
3  * Page Editor Lines
4  * Contains text strings used within the user interface of the
5  * WYSIWYG page editor. Some Markdown editor strings may still
6  * exist in the 'entities' file instead since this was added later.
7  */
8 return [
9     // General editor terms
10     'general' => 'عام',
11     'advanced' => 'متقدم',
12     'none' => 'بدون',
13     'cancel' => 'إلغاء',
14     'save' => 'حفظ',
15     'close' => 'إغلاق',
16     'apply' => 'تطبيق',
17     'undo' => 'تراجع',
18     'redo' => 'إعادة التنفيذ',
19     'left' => 'يسار',
20     'center' => 'منتصف',
21     'right' => 'يمين',
22     'top' => 'الأعلى',
23     'middle' => 'وسط',
24     'bottom' => 'أسفل',
25     'width' => 'العرض',
26     'height' => 'الارتفاع',
27     'More' => 'المزيد',
28     'select' => 'إختار...',
29
30     // Toolbar
31     'formats' => 'التنسيقات',
32     'header_large' => 'رأس صفحة كبير',
33     'header_medium' => 'رأس صفحة متوسط',
34     'header_small' => 'رأس صفحة صغير',
35     'header_tiny' => 'رأس صفحة صغير جدا',
36     'paragraph' => 'فقرة',
37     'blockquote' => 'صندوق اقتباس',
38     'inline_code' => 'كود مدمج',
39     'callouts' => 'تعليق تفسيري',
40     'callout_information' => 'معلومات',
41     'callout_success' => 'نجاح',
42     'callout_warning' => 'تحذير',
43     'callout_danger' => 'خطر',
44     'bold' => 'غامق',
45     'italic' => 'مائل',
46     'underline' => 'تحته خط',
47     'strikethrough' => 'مشطوب',
48     'superscript' => 'نص مرتفع',
49     'subscript' => 'نص منخفض',
50     'text_color' => 'لون النص',
51     'custom_color' => 'لون مخصص',
52     'remove_color' => 'إزالة اللون',
53     'background_color' => 'لون الخلفية',
54     'align_left' => 'محاذاة لليسار',
55     'align_center' => 'محاذاة بالمنتصف',
56     'align_right' => 'مُحاذاة لليمين',
57     'align_justify' => 'المحاذاة',
58     'list_bullet' => 'قائمة نقاط',
59     'list_numbered' => 'قائمة مرقمة',
60     'list_task' => 'قائمة المهام',
61     'indent_increase' => 'زيادة البادئة',
62     'indent_decrease' => 'إنقاص البادئة',
63     'table' => 'جدول',
64     'insert_image' => 'ادراج صورة',
65     'insert_image_title' => 'إضافة/تحرير الصورة',
66     'insert_link' => 'إضافة/تعديل الرابط',
67     'insert_link_title' => 'إضافة/تحرير الرابط',
68     'insert_horizontal_line' => 'إضافة خط أفقي',
69     'insert_code_block' => 'إضافة مربع رموز برمجية',
70     'edit_code_block' => 'تعديل مربع الرموز البرمجية',
71     'insert_drawing' => 'إضافة/تعديل الرسم',
72     'drawing_manager' => 'إدارة الرسم',
73     'insert_media' => 'إضافة/تحرير الوسائط',
74     'insert_media_title' => 'إضافة/تحرير الوسائط',
75     'clear_formatting' => 'مسح التنسيق',
76     'source_code' => 'الرمز البرمجي',
77     'source_code_title' => 'الرمز البرمجي',
78     'fullscreen' => 'شاشة كاملة',
79     'image_options' => 'خيارات الصورة',
80
81     // Tables
82     'table_properties' => 'خصائص الجدول',
83     'table_properties_title' => 'خصائص الجدول',
84     'delete_table' => 'حذف الجدول',
85     'table_clear_formatting' => 'مسح تنسيق الجدول',
86     'resize_to_contents' => 'تغيير الحجم إلى المحتوى',
87     'row_header' => 'رأس الصف',
88     'insert_row_before' => 'إضافة صف قبل',
89     'insert_row_after' => 'إضافة صف بعد',
90     'delete_row' => 'حذف الصف',
91     'insert_column_before' => 'إدراج عمود قبل',
92     'insert_column_after' => 'إدراج عمود بعد',
93     'delete_column' => 'حذف عمود',
94     'table_cell' => 'خلية',
95     'table_row' => 'صف',
96     'table_column' => 'عمود',
97     'cell_properties' => 'خصائص الخلية',
98     'cell_properties_title' => 'خصائص الخلية',
99     'cell_type' => 'نوع الخلية',
100     'cell_type_cell' => 'الخلية',
101     'cell_scope' => 'النِطَاق',
102     'cell_type_header' => 'عنوان الخلية',
103     'merge_cells' => 'دمج الخلايا',
104     'split_cell' => 'خلية منقسمة',
105     'table_row_group' => 'مجموعة الصفوف',
106     'table_column_group' => 'مجموعة الأعمدة',
107     'horizontal_align' => 'محاذاة أفقية',
108     'vertical_align' => 'محاذاة عمودية',
109     'border_width' => 'عرض الحدود',
110     'border_style' => 'نمط الحدود',
111     'border_color' => 'لون الحدود',
112     'row_properties' => 'خصائص الصف',
113     'row_properties_title' => 'خصائص الصف',
114     'cut_row' => 'فص الصف',
115     'copy_row' => 'نسخ الصف',
116     'paste_row_before' => 'لصق الصف قبل',
117     'paste_row_after' => 'لصق الصف بعد',
118     'row_type' => 'نوع الصف',
119     'row_type_header' => 'العنوان',
120     'row_type_body' => 'المحتوى ',
121     'row_type_footer' => 'تذييل',
122     'alignment' => 'المحاذاة',
123     'cut_column' => 'قص العمود',
124     'copy_column' => 'نسخ العمود',
125     'paste_column_before' => 'لصق عمود قبل',
126     'paste_column_after' => 'لصق عمود بعد',
127     'cell_padding' => 'هوامش الخلايا',
128     'cell_spacing' => 'تباعد الخلايا',
129     'caption' => 'الوصف',
130     'show_caption' => 'إظهار الوصف',
131     'constrain' => 'تقييد النسب',
132     'cell_border_solid' => 'لون كامل',
133     'cell_border_dotted' => 'مُنَقط',
134     'cell_border_dashed' => 'متقطع',
135     'cell_border_double' => 'مزدوج',
136     'cell_border_groove' => 'أخدود',
137     'cell_border_ridge' => 'الحافَة',
138     'cell_border_inset' => 'الداخلية',
139     'cell_border_outset' => 'الخارجية',
140     'cell_border_none' => 'لا شَيْء',
141     'cell_border_hidden' => 'مخفي',
142
143     // Images, links, details/summary & embed
144     'source' => 'المصدر',
145     'alt_desc' => 'وصف بديل',
146     'embed' => 'تضمين',
147     'paste_embed' => 'قم بلصق الرموز المصدرية المضمنة الخاص بك أدناه:',
148     'url' => 'الرابط',
149     'text_to_display' => 'النص المراد عرضه',
150     'title' => 'العنوان',
151     'browse_links' => 'تصفح الروابط',
152     'open_link' => 'افتح الرابط',
153     'open_link_in' => 'افتح الرابط في...',
154     'open_link_current' => 'النافذة الحالية',
155     'open_link_new' => 'نافذة جديدة',
156     'remove_link' => 'إزالة الرابط',
157     'insert_collapsible' => 'أدخل كتلة قابلة للطي',
158     'collapsible_unwrap' => 'بسط',
159     'edit_label' => 'عدل الوصف',
160     'toggle_open_closed' => 'التبديل بين الفتح والإغلاق',
161     'collapsible_edit' => 'تحرير الكتلة القابلة للطي',
162     'toggle_label' => 'تبديل التسمية',
163
164     // About view
165     'about' => 'عن المحرر',
166     'about_title' => 'حول محرر ما تراه هو ما تحصل عليه -WYSIWYG-',
167     'editor_license' => 'رخصة المحرر وحقوق  التأليف والنشر',
168     'editor_lexical_license' => 'تم إنشاء هذا المحرر باعتباره فرعًا لـ :lexicalLink الذي يتم توزيعه بموجب ترخيص معهد ماساتشوستس للتقانة -MIT-.',
169     'editor_lexical_license_link' => 'يمكنك العثور على تفاصيل الترخيص الكاملة هنا.',
170     'editor_tiny_license' => 'تم إنشاء هذا المحرر باستخدام :tinyLink والذي يتم توفيره بموجب ترخيص معهد ماساتشوستس للتقانة -MIT-.',
171     'editor_tiny_license_link' => 'يمكن الاطلاع هنا على تفاصيل حقوق التأليف والنشر والترخيص الخاصة بتاینی‌ام‌سی‌ای -TinyMCE-.',
172     'save_continue' => 'حفظ الصفحة ومتابعة',
173     'callouts_cycle' => '(استمر في الضغط للتبديل بين الأنواع)',
174     'link_selector' => 'رابط للمحتوى',
175     'shortcuts' => 'الاختصارات',
176     'shortcut' => 'الاختصار',
177     'shortcuts_intro' => 'الاختصارات التالية متاحة في المحرر:',
178     'windows_linux' => '(ويندوز/لينكس)',
179     'mac' => '(ماك)',
180     'description' => 'الوصف',
181 ];
Morty Proxy This is a proxified and sanitized view of the page, visit original site.