Skip to content

Commit 8bffceb

Browse files
authored
Updated translations with latest Crowdin changes (#4523)
1 parent 7c4dc98 commit 8bffceb

File tree

306 files changed

+7903
-1585
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

306 files changed

+7903
-1585
lines changed

lang/ar/common.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
'filter_clear' => 'Clear Filter',
5353
'download' => 'Download',
5454
'open_in_tab' => 'Open in Tab',
55+
'open' => 'Open',
5556

5657
// Sort Options
5758
'sort_options' => 'خيارات الفرز',

lang/ar/components.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
'image_delete_success' => 'تم حذف الصورة بنجاح',
3535
'image_replace' => 'Replace Image',
3636
'image_replace_success' => 'Image file successfully updated',
37+
'image_rebuild_thumbs' => 'Regenerate Size Variations',
38+
'image_rebuild_thumbs_success' => 'Image size variations successfully rebuilt!',
3739

3840
// Code Editor
3941
'code_editor' => 'تعديل الشفرة',

lang/ar/entities.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@
295295
'pages_is_template' => 'قالب الصفحة',
296296

297297
// Editor Sidebar
298+
'toggle_sidebar' => 'Toggle Sidebar',
298299
'page_tags' => 'وسوم الصفحة',
299300
'chapter_tags' => 'وسوم الفصل',
300301
'book_tags' => 'وسوم الكتاب',

lang/ar/errors.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,16 @@
4444
'cannot_get_image_from_url' => 'لا يمكن الحصول على الصورة من :url',
4545
'cannot_create_thumbs' => 'لا يمكن للخادم إنشاء صور مصغرة. الرجاء التأكد من تثبيت إضافة GD PHP.',
4646
'server_upload_limit' => 'الخادم لا يسمح برفع ملفات بهذا الحجم. الرجاء محاولة الرفع بحجم أصغر.',
47+
'server_post_limit' => 'The server cannot receive the provided amount of data. Try again with less data or a smaller file.',
4748
'uploaded' => 'الخادم لا يسمح برفع ملفات بهذا الحجم. الرجاء محاولة الرفع بحجم أصغر.',
4849

4950
// Drawing & Images
5051
'image_upload_error' => 'حدث خطأ خلال رفع الصورة',
5152
'image_upload_type_error' => 'صيغة الصورة المرفوعة غير صالحة',
5253
'image_upload_replace_type' => 'Image file replacements must be of the same type',
54+
'image_upload_memory_limit' => 'Failed to handle image upload and/or create thumbnails due to system resource limits.',
55+
'image_thumbnail_memory_limit' => 'Failed to create image size variations due to system resource limits.',
56+
'image_gallery_thumbnail_memory_limit' => 'Failed to create gallery thumbnails due to system resource limits.',
5357
'drawing_data_not_found' => 'Drawing data could not be loaded. The drawing file might no longer exist or you may not have permission to access it.',
5458

5559
// Attachments

lang/ar/preferences.php

Lines changed: 21 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
*/
66

77
return [
8-
'preferences' => 'Preferences',
8+
'my_account' => 'My Account',
99

1010
'shortcuts' => 'Shortcuts',
11-
'shortcuts_interface' => 'Interface Keyboard Shortcuts',
11+
'shortcuts_interface' => 'UI Shortcut Preferences',
1212
'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, used for navigation and actions.',
1313
'shortcuts_customize_desc' => 'You can customize each of the shortcuts below. Just press your desired key combination after selecting the input for a shortcut.',
1414
'shortcuts_toggle_label' => 'Keyboard shortcuts enabled',
@@ -29,5 +29,23 @@
2929
'notifications_watched' => 'Watched & Ignored Items',
3030
'notifications_watched_desc' => ' Below are the items that have custom watch preferences applied. To update your preferences for these, view the item then find the watch options in the sidebar.',
3131

32-
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
32+
'auth' => 'Access & Security',
33+
'auth_change_password' => 'Change Password',
34+
'auth_change_password_desc' => 'Change the password you use to log-in to the application. This must be at least 8 characters long.',
35+
'auth_change_password_success' => 'Password has been updated!',
36+
37+
'profile' => 'Profile Details',
38+
'profile_desc' => 'Manage the details of your account which represents you to other users, in addition to details that are used for communication and system personalisation.',
39+
'profile_view_public' => 'View Public Profile',
40+
'profile_name_desc' => 'Configure your display name which will be visible to other users in the system through the activity you perform, and content you own.',
41+
'profile_email_desc' => 'This email will be used for notifications and, depending on active system authentication, system access.',
42+
'profile_email_no_permission' => 'Unfortunately you don\'t have permission to change your email address. If you want to change this, you\'d need to ask an administrator to change this for you.',
43+
'profile_avatar_desc' => 'Select an image which will be used to represent yourself to others in the system. Ideally this image should be square and about 256px in width and height.',
44+
'profile_admin_options' => 'Administrator Options',
45+
'profile_admin_options_desc' => 'Additional administrator-level options, like those to manage role assignments, can be found for your user account in the "Settings > Users" area of the application.',
46+
47+
'delete_account' => 'Delete Account',
48+
'delete_my_account' => 'Delete My Account',
49+
'delete_my_account_desc' => 'This will fully delete your user account from the system. You will not be able to recover this account or revert this action. Content you\'ve created, such as created pages and uploaded images, will remain.',
50+
'delete_my_account_warning' => 'Are you sure you want to delete your account?',
3351
];

lang/ar/settings.php

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,8 @@
193193
'users_send_invite_text' => 'يمكنك اختيار إرسال دعوة بالبريد الإلكتروني إلى هذا المستخدم مما يسمح له بتعيين كلمة المرور الخاصة به أو يمكنك تعيين كلمة المرور الخاصة به بنفسك.',
194194
'users_send_invite_option' => 'أرسل بريدًا إلكترونيًا لدعوة المستخدم',
195195
'users_external_auth_id' => 'ربط الحساب بمواقع التواصل',
196-
'users_external_auth_id_desc' => 'تستخدم هذه الهوية لإثبات شخصية المستخدم عند الدخول إلى مواقع التواصل الخاصة بك.',
197-
'users_password_warning' => 'الرجاء ملئ الحقل أدناه فقط في حال أردتم تغيير كلمة المرور:',
196+
'users_external_auth_id_desc' => 'When an external authentication system is in use (such as SAML2, OIDC or LDAP) this is the ID which links this BookStack user to the authentication system account. You can ignore this field if using the default email-based authentication.',
197+
'users_password_warning' => 'Only fill the below if you would like to change the password for this user.',
198198
'users_system_public' => 'هذا المستخدم يمثل أي ضيف يقوم بزيارة شيء يخصك. لا يمكن استخدامه لتسجيل الدخول ولكن يتم تعيينه تلقائياً.',
199199
'users_delete' => 'حذف المستخدم',
200200
'users_delete_named' => 'حذف المستخدم :userName',
@@ -210,12 +210,16 @@
210210
'users_preferred_language' => 'اللغة المفضلة',
211211
'users_preferred_language_desc' => 'سيؤدي هذا الخيار إلى تغيير اللغة المستخدمة لواجهة المستخدم الخاصة بالتطبيق. لن يؤثر هذا على أي محتوى قد أنشائه المستخدم.',
212212
'users_social_accounts' => 'الحسابات الاجتماعية',
213+
'users_social_accounts_desc' => 'View the status of the connected social accounts for this user. Social accounts can be used in addition to the primary authentication system for system access.',
213214
'users_social_accounts_info' => 'Here you can connect your other accounts for quicker and easier login. Disconnecting an account here does not previously authorized access. Revoke access from your profile settings on the connected social account.',
214215
'users_social_connect' => 'ربط الحساب',
215216
'users_social_disconnect' => 'فصل الحساب',
217+
'users_social_status_connected' => 'Connected',
218+
'users_social_status_disconnected' => 'Disconnected',
216219
'users_social_connected' => 'تم ربط حساب :socialAccount بملفك بنجاح.',
217220
'users_social_disconnected' => 'تم فصل حساب :socialAccount من ملفك بنجاح.',
218221
'users_api_tokens' => 'رموز الـ API',
222+
'users_api_tokens_desc' => 'Create and manage the access tokens used to authenticate with the BookStack REST API. Permissions for the API are managed via the user that the token belongs to.',
219223
'users_api_tokens_none' => 'لم يتم إنشاء رموز API لهذا المستخدم',
220224
'users_api_tokens_create' => 'قم بإنشاء رمز مميز',
221225
'users_api_tokens_expires' => 'انتهاء مدة الصلاحية',
@@ -314,6 +318,7 @@
314318
'sv' => 'Svenska',
315319
'tr' => 'Türkçe',
316320
'uk' => 'Українська',
321+
'uz' => 'O‘zbekcha',
317322
'vi' => 'Tiếng Việt',
318323
'zh_CN' => '简体中文',
319324
'zh_TW' => '繁體中文',

lang/bg/common.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@
5252
'filter_clear' => 'Изчистване на филтрите',
5353
'download' => 'Изтегляне',
5454
'open_in_tab' => 'Отваряне в раздел',
55+
'open' => 'Open',
5556

5657
// Sort Options
5758
'sort_options' => 'Опции за сортиране',

lang/bg/components.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@
3434
'image_delete_success' => 'Изображението е успешно изтрито',
3535
'image_replace' => 'Replace Image',
3636
'image_replace_success' => 'Image file successfully updated',
37+
'image_rebuild_thumbs' => 'Regenerate Size Variations',
38+
'image_rebuild_thumbs_success' => 'Image size variations successfully rebuilt!',
3739

3840
// Code Editor
3941
'code_editor' => 'Редактиране на кода',

lang/bg/entities.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,7 @@
295295
'pages_is_template' => 'Шаблон на страницата',
296296

297297
// Editor Sidebar
298+
'toggle_sidebar' => 'Toggle Sidebar',
298299
'page_tags' => 'Тагове на страницата',
299300
'chapter_tags' => 'Тагове на главата',
300301
'book_tags' => 'Тагове на книгата',

lang/bg/errors.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,16 @@
4444
'cannot_get_image_from_url' => 'Не мога да взема съобщението от :url',
4545
'cannot_create_thumbs' => 'Сървърът не може да създаде малки изображения. Моля, увери се, че разширението GD PHP е инсталирано.',
4646
'server_upload_limit' => 'Сървърът не позволява качвания с такъв размер. Моля, пробвайте файл с по-малък размер.',
47+
'server_post_limit' => 'The server cannot receive the provided amount of data. Try again with less data or a smaller file.',
4748
'uploaded' => 'Сървърът не позволява качвания с такъв размер. Моля, пробвайте файл с по-малък размер.',
4849

4950
// Drawing & Images
5051
'image_upload_error' => 'Възникна грешка при качването на изображението',
5152
'image_upload_type_error' => 'Типът на качваното изображение е невалиден',
5253
'image_upload_replace_type' => 'Image file replacements must be of the same type',
54+
'image_upload_memory_limit' => 'Failed to handle image upload and/or create thumbnails due to system resource limits.',
55+
'image_thumbnail_memory_limit' => 'Failed to create image size variations due to system resource limits.',
56+
'image_gallery_thumbnail_memory_limit' => 'Failed to create gallery thumbnails due to system resource limits.',
5357
'drawing_data_not_found' => 'Drawing data could not be loaded. The drawing file might no longer exist or you may not have permission to access it.',
5458

5559
// Attachments

0 commit comments

Comments
 (0)