mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-25 09:42:10 +08:00
Updated translations with latest Crowdin changes (#4380)
This commit is contained in:
parent
9100a82b47
commit
e176aae940
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => 'تم إضافة ":name" إلى المفضلة لديك',
|
||||
'favourite_remove_notification' => 'تم إزالة ":name" من المفضلة لديك',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logged in',
|
||||
'auth_register' => 'registered as new user',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restored from recycle bin',
|
||||
'recycle_bin_destroy' => 'removed from recycle bin',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'تم التعليق',
|
||||
'comment_create' => 'added comment',
|
||||
'comment_update' => 'updated comment',
|
||||
'comment_delete' => 'deleted comment',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'تحديث الأذونات',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'إزالة',
|
||||
'add' => 'إضافة',
|
||||
'configure' => 'Configure',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'شاشة كاملة',
|
||||
'favourite' => 'Favourite',
|
||||
'unfavourite' => 'Unfavourite',
|
||||
|
|
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'إدخال رسمة',
|
||||
'pages_md_show_preview' => 'Show preview',
|
||||
'pages_md_sync_scroll' => 'Sync preview scroll',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'صفحة ليست في فصل',
|
||||
'pages_move' => 'نقل الصفحة',
|
||||
'pages_copy' => 'نسخ الصفحة',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'References',
|
||||
'references_none' => 'There are no tracked references to this item.',
|
||||
'references_to_desc' => 'Shown below are all the known pages in the system that link to this item.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/ar/notifications.php
Normal file
26
lang/ar/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Shortcuts',
|
||||
'shortcuts_interface' => 'Interface Keyboard Shortcuts',
|
||||
'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, used for navigation and actions.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Save Shortcuts',
|
||||
'shortcuts_overlay_desc' => 'Note: When shortcuts are enabled a helper overlay is available via pressing "?" which will highlight the available shortcuts for actions currently visible on the screen.',
|
||||
'shortcuts_update_success' => 'Shortcut preferences have been updated!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'إدارة إعدادات التطبيق',
|
||||
'role_export_content' => 'Export content',
|
||||
'role_editor_change' => 'Change page editor',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'أذونات الأصول',
|
||||
'roles_system_warning' => 'اعلم أن الوصول إلى أي من الأذونات الثلاثة المذكورة أعلاه يمكن أن يسمح للمستخدم بتغيير امتيازاته الخاصة أو امتيازات الآخرين في النظام. قم بتعيين الأدوار مع هذه الأذونات فقط للمستخدمين الموثوق بهم.',
|
||||
'role_asset_desc' => 'تتحكم هذه الأذونات في الوصول الافتراضي إلى الأصول داخل النظام. ستتجاوز الأذونات الخاصة بالكتب والفصول والصفحات هذه الأذونات.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '":name" е добавен към любими успешно',
|
||||
'favourite_remove_notification' => '":name" е премахнат от любими успешно',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logged in',
|
||||
'auth_register' => 'registered as new user',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restored from recycle bin',
|
||||
'recycle_bin_destroy' => 'removed from recycle bin',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'коментирано на',
|
||||
'comment_create' => 'added comment',
|
||||
'comment_update' => 'updated comment',
|
||||
'comment_delete' => 'deleted comment',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'обновени права',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Премахване',
|
||||
'add' => 'Добавяне',
|
||||
'configure' => 'Конфигуриране',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Цял екран',
|
||||
'favourite' => 'Любимо',
|
||||
'unfavourite' => 'Не е любимо',
|
||||
|
|
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Вмъкни рисунка',
|
||||
'pages_md_show_preview' => 'Show preview',
|
||||
'pages_md_sync_scroll' => 'Sync preview scroll',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'Страницата не принадлежи в никоя глава',
|
||||
'pages_move' => 'Премести страницата',
|
||||
'pages_copy' => 'Копиране на страницата',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'References',
|
||||
'references_none' => 'There are no tracked references to this item.',
|
||||
'references_to_desc' => 'Shown below are all the known pages in the system that link to this item.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/bg/notifications.php
Normal file
26
lang/bg/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Преки пътища',
|
||||
'shortcuts_interface' => 'Interface Keyboard Shortcuts',
|
||||
'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, used for navigation and actions.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Запазване на преките пътища',
|
||||
'shortcuts_overlay_desc' => 'Note: When shortcuts are enabled a helper overlay is available via pressing "?" which will highlight the available shortcuts for actions currently visible on the screen.',
|
||||
'shortcuts_update_success' => 'Обновени предпочитания за преки пътища!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'Управление на настройките на приложението',
|
||||
'role_export_content' => 'Експортирай съдържанието',
|
||||
'role_editor_change' => 'Change page editor',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Настройки за достъп до активи',
|
||||
'roles_system_warning' => 'Важно: Добавянето на потребител в някое от горните три роли може да му позволи да промени собствените си права или правата на другите в системата. Възлагайте тези роли само на доверени потребители.',
|
||||
'role_asset_desc' => 'Тези настройки за достъп контролират достъпа по подразбиране до активите в системата. Настройките за достъп до книги, глави и страници ще отменят тези настройки.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '":name" je dodan u tvoje favorite',
|
||||
'favourite_remove_notification' => '":name" je uklonjen iz tvojih favorita',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logged in',
|
||||
'auth_register' => 'registered as new user',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restored from recycle bin',
|
||||
'recycle_bin_destroy' => 'removed from recycle bin',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'je komentarisao/la na',
|
||||
'comment_create' => 'added comment',
|
||||
'comment_update' => 'updated comment',
|
||||
'comment_delete' => 'deleted comment',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'je ažurirao/la dozvole',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Ukloni',
|
||||
'add' => 'Dodaj',
|
||||
'configure' => 'Configure',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Prikaz preko čitavog ekrana',
|
||||
'favourite' => 'Favorit',
|
||||
'unfavourite' => 'Ukloni favorit',
|
||||
|
|
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Insert Drawing',
|
||||
'pages_md_show_preview' => 'Show preview',
|
||||
'pages_md_sync_scroll' => 'Sync preview scroll',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'Page is not in a chapter',
|
||||
'pages_move' => 'Move Page',
|
||||
'pages_copy' => 'Copy Page',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'References',
|
||||
'references_none' => 'There are no tracked references to this item.',
|
||||
'references_to_desc' => 'Shown below are all the known pages in the system that link to this item.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/bs/notifications.php
Normal file
26
lang/bs/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Shortcuts',
|
||||
'shortcuts_interface' => 'Interface Keyboard Shortcuts',
|
||||
'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, used for navigation and actions.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Save Shortcuts',
|
||||
'shortcuts_overlay_desc' => 'Note: When shortcuts are enabled a helper overlay is available via pressing "?" which will highlight the available shortcuts for actions currently visible on the screen.',
|
||||
'shortcuts_update_success' => 'Shortcut preferences have been updated!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'Manage app settings',
|
||||
'role_export_content' => 'Export content',
|
||||
'role_editor_change' => 'Change page editor',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Asset Permissions',
|
||||
'roles_system_warning' => 'Be aware that access to any of the above three permissions can allow a user to alter their own privileges or the privileges of others in the system. Only assign roles with these permissions to trusted users.',
|
||||
'role_asset_desc' => 'These permissions control default access to the assets within the system. Permissions on Books, Chapters and Pages will override these permissions.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '":name" has been added to your favourites',
|
||||
'favourite_remove_notification' => '":name" has been removed from your favourites',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logged in',
|
||||
'auth_register' => 'registered as new user',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restored from recycle bin',
|
||||
'recycle_bin_destroy' => 'removed from recycle bin',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'ha comentat a',
|
||||
'comment_create' => 'added comment',
|
||||
'comment_update' => 'updated comment',
|
||||
'comment_delete' => 'deleted comment',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'ha actualitzat els permisos',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Elimina',
|
||||
'add' => 'Afegeix',
|
||||
'configure' => 'Configure',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Pantalla completa',
|
||||
'favourite' => 'Favourite',
|
||||
'unfavourite' => 'Unfavourite',
|
||||
|
|
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Insereix un diagrama',
|
||||
'pages_md_show_preview' => 'Show preview',
|
||||
'pages_md_sync_scroll' => 'Sync preview scroll',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'La pàgina no pertany a cap capítol',
|
||||
'pages_move' => 'Mou la pàgina',
|
||||
'pages_copy' => 'Copia la pàgina',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'References',
|
||||
'references_none' => 'There are no tracked references to this item.',
|
||||
'references_to_desc' => 'Shown below are all the known pages in the system that link to this item.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/ca/notifications.php
Normal file
26
lang/ca/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Shortcuts',
|
||||
'shortcuts_interface' => 'Interface Keyboard Shortcuts',
|
||||
'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, used for navigation and actions.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Save Shortcuts',
|
||||
'shortcuts_overlay_desc' => 'Note: When shortcuts are enabled a helper overlay is available via pressing "?" which will highlight the available shortcuts for actions currently visible on the screen.',
|
||||
'shortcuts_update_success' => 'Shortcut preferences have been updated!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'Gestiona la configuració de l\'aplicació',
|
||||
'role_export_content' => 'Export content',
|
||||
'role_editor_change' => 'Change page editor',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Permisos de recursos',
|
||||
'roles_system_warning' => 'Tingueu en compte que l\'accés a qualsevol dels tres permisos de dalt pot permetre que un usuari alteri els seus propis permisos o els privilegis d\'altres usuaris del sistema. Assigneu rols amb aquests permisos només a usuaris de confiança.',
|
||||
'role_asset_desc' => 'Aquests permisos controlen l\'accés per defecte als recursos del sistema. Els permisos de llibres, capítols i pàgines tindran més importància que aquests permisos.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '":name" byla přidána do Vašich oblíbených',
|
||||
'favourite_remove_notification' => '":name" byla odstraněna z Vašich oblíbených',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logged in',
|
||||
'auth_register' => 'registered as new user',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restored from recycle bin',
|
||||
'recycle_bin_destroy' => 'removed from recycle bin',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'okomentoval/a',
|
||||
'comment_create' => 'added comment',
|
||||
'comment_update' => 'updated comment',
|
||||
'comment_delete' => 'deleted comment',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'oprávnění upravena',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Odebrat',
|
||||
'add' => 'Přidat',
|
||||
'configure' => 'Nastavit',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Celá obrazovka',
|
||||
'favourite' => 'Přidat do oblíbených',
|
||||
'unfavourite' => 'Odebrat z oblíbených',
|
||||
|
|
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Vložit kresbu',
|
||||
'pages_md_show_preview' => 'Zobrazit náhled',
|
||||
'pages_md_sync_scroll' => 'Synchronizovat náhled',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'Stránka není v kapitole',
|
||||
'pages_move' => 'Přesunout stránku',
|
||||
'pages_copy' => 'Kopírovat stránku',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'Odkazy',
|
||||
'references_none' => 'Nebyly nalezeny žádné odkazy na tuto položku.',
|
||||
'references_to_desc' => 'Níže jsou uvedeny všechny známé stránky systému, které odkazují na tuto položku.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/cs/notifications.php
Normal file
26
lang/cs/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Zkratky',
|
||||
'shortcuts_interface' => 'Zobrazit klávesové zkratky',
|
||||
'shortcuts_toggle_desc' => 'Zde můžete povolit nebo zakázat klávesové zkratky systémového rozhraní používané pro navigaci a akce.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Uložit zkratky',
|
||||
'shortcuts_overlay_desc' => 'Poznámka: Když jsou povoleny zkratky, je k dispozici pomocný překryv stisknutím "? která zvýrazní dostupné zkratky pro akce viditelné na obrazovce.',
|
||||
'shortcuts_update_success' => 'Nastavení pro zkratky bylo aktualizováno!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'Správa nastavení aplikace',
|
||||
'role_export_content' => 'Exportovat obsah',
|
||||
'role_editor_change' => 'Změnit editor stránek',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Obsahová oprávnění',
|
||||
'roles_system_warning' => 'Berte na vědomí, že přístup k některému ze tří výše uvedených oprávnění může uživateli umožnit změnit svá vlastní oprávnění nebo oprávnění ostatních uživatelů v systému. Přiřazujte role s těmito oprávněními pouze důvěryhodným uživatelům.',
|
||||
'role_asset_desc' => 'Tato oprávnění řídí přístup k obsahu napříč systémem. Specifická oprávnění na knihách, kapitolách a stránkách převáží tato nastavení.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => 'Mae ":name" wedi\'i ychwanegu at eich ffefrynnau',
|
||||
'favourite_remove_notification' => 'Mae ":name" wedi\'i tynnu o\'ch ffefrynnau',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logged in',
|
||||
'auth_register' => 'registered as new user',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restored from recycle bin',
|
||||
'recycle_bin_destroy' => 'removed from recycle bin',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'gwnaeth sylwadau ar',
|
||||
'comment_create' => 'added comment',
|
||||
'comment_update' => 'updated comment',
|
||||
'comment_delete' => 'deleted comment',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'caniatadau wedi\'u diweddaru',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Remove',
|
||||
'add' => 'Add',
|
||||
'configure' => 'Configure',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Fullscreen',
|
||||
'favourite' => 'Favourite',
|
||||
'unfavourite' => 'Unfavourite',
|
||||
|
|
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Insert Drawing',
|
||||
'pages_md_show_preview' => 'Show preview',
|
||||
'pages_md_sync_scroll' => 'Sync preview scroll',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'Page is not in a chapter',
|
||||
'pages_move' => 'Move Page',
|
||||
'pages_copy' => 'Copy Page',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'References',
|
||||
'references_none' => 'There are no tracked references to this item.',
|
||||
'references_to_desc' => 'Shown below are all the known pages in the system that link to this item.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/cy/notifications.php
Normal file
26
lang/cy/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Shortcuts',
|
||||
'shortcuts_interface' => 'Interface Keyboard Shortcuts',
|
||||
'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, used for navigation and actions.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Save Shortcuts',
|
||||
'shortcuts_overlay_desc' => 'Note: When shortcuts are enabled a helper overlay is available via pressing "?" which will highlight the available shortcuts for actions currently visible on the screen.',
|
||||
'shortcuts_update_success' => 'Shortcut preferences have been updated!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'Manage app settings',
|
||||
'role_export_content' => 'Export content',
|
||||
'role_editor_change' => 'Change page editor',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Asset Permissions',
|
||||
'roles_system_warning' => 'Be aware that access to any of the above three permissions can allow a user to alter their own privileges or the privileges of others in the system. Only assign roles with these permissions to trusted users.',
|
||||
'role_asset_desc' => 'These permissions control default access to the assets within the system. Permissions on Books, Chapters and Pages will override these permissions.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '":name" er blevet tilføjet til dine favoritter',
|
||||
'favourite_remove_notification' => '":name" er blevet fjernet fra dine favoritter',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logged in',
|
||||
'auth_register' => 'registered as new user',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restored from recycle bin',
|
||||
'recycle_bin_destroy' => 'removed from recycle bin',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'kommenterede til',
|
||||
'comment_create' => 'added comment',
|
||||
'comment_update' => 'updated comment',
|
||||
'comment_delete' => 'deleted comment',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'Tilladelser opdateret',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Fjern',
|
||||
'add' => 'Tilføj',
|
||||
'configure' => 'Konfigurer',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Fuld skærm',
|
||||
'favourite' => 'Foretrukken',
|
||||
'unfavourite' => 'Fjern som foretrukken',
|
||||
|
|
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Indsæt tegning',
|
||||
'pages_md_show_preview' => 'Show preview',
|
||||
'pages_md_sync_scroll' => 'Sync preview scroll',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'Side er ikke i et kapitel',
|
||||
'pages_move' => 'Flyt side',
|
||||
'pages_copy' => 'Kopier side',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'References',
|
||||
'references_none' => 'There are no tracked references to this item.',
|
||||
'references_to_desc' => 'Shown below are all the known pages in the system that link to this item.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/da/notifications.php
Normal file
26
lang/da/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Shortcuts',
|
||||
'shortcuts_interface' => 'Interface Keyboard Shortcuts',
|
||||
'shortcuts_toggle_desc' => 'Here you can enable or disable keyboard system interface shortcuts, used for navigation and actions.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Save Shortcuts',
|
||||
'shortcuts_overlay_desc' => 'Note: When shortcuts are enabled a helper overlay is available via pressing "?" which will highlight the available shortcuts for actions currently visible on the screen.',
|
||||
'shortcuts_update_success' => 'Shortcut preferences have been updated!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'Administrer app-indstillinger',
|
||||
'role_export_content' => 'Eksporter indhold',
|
||||
'role_editor_change' => 'Skift side editor',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Tilladelser for medier og "assets"',
|
||||
'roles_system_warning' => 'Vær opmærksom på, at adgang til alle af de ovennævnte tre tilladelser, kan give en bruger mulighed for at ændre deres egne brugerrettigheder eller brugerrettigheder for andre i systemet. Tildel kun roller med disse tilladelser til betroede brugere.',
|
||||
'role_asset_desc' => 'Disse tilladelser kontrollerer standardadgang til medier og "assets" i systemet. Tilladelser til bøger, kapitler og sider tilsidesætter disse tilladelser.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '":name" wurde zu Ihren Favoriten hinzugefügt',
|
||||
'favourite_remove_notification' => '":name" wurde aus Ihren Favoriten entfernt',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Beobachtungseinstellungen erfolgreich aktualisiert',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'hat sich eingeloggt',
|
||||
'auth_register' => 'hat sich als neuer Benutzer registriert',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'aus dem Papierkorb wiederhergestellt',
|
||||
'recycle_bin_destroy' => 'aus dem Papierkorb gelöscht',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'hat einen Kommentar hinzugefügt',
|
||||
'comment_create' => 'Kommentar hinzugefügt',
|
||||
'comment_update' => 'Kommentar aktualisiert',
|
||||
'comment_delete' => 'Kommentar gelöscht',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'hat die Berechtigungen aktualisiert',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Entfernen',
|
||||
'add' => 'Hinzufügen',
|
||||
'configure' => 'Konfigurieren',
|
||||
'manage' => 'Verwalten',
|
||||
'fullscreen' => 'Vollbild',
|
||||
'favourite' => 'Favoriten',
|
||||
'unfavourite' => 'Kein Favorit',
|
||||
|
|
|
@ -106,7 +106,7 @@ return [
|
|||
'shelves_permissions_updated' => 'Regalberechtigungen aktualisiert',
|
||||
'shelves_permissions_active' => 'Regalberechtigungen aktiv',
|
||||
'shelves_permissions_cascade_warning' => 'Berechtigungen für Regale werden nicht automatisch auf die enthaltenen Bücher übertragen. Das liegt daran, dass ein Buch in mehreren Regalen vorhanden sein kann. Berechtigungen können jedoch auf untergeordnete Bücher kopiert werden, indem Sie die unten stehende Option verwenden.',
|
||||
'shelves_permissions_create' => 'Shelf create permissions are only used for copying permissions to child books using the action below. They do not control the ability to create books.',
|
||||
'shelves_permissions_create' => 'Regalerstellungsberechtigungen werden nur zum Kopieren von Berechtigungen für untergeordnete Bücher mit der folgenden Aktion verwendet. Sie kontrollieren nicht die Fähigkeit, Bücher zu erstellen.',
|
||||
'shelves_copy_permissions_to_books' => 'Kopiere die Berechtigungen zum Buch',
|
||||
'shelves_copy_permissions' => 'Berechtigungen kopieren',
|
||||
'shelves_copy_permissions_explain' => 'Dadurch werden die aktuellen Berechtigungseinstellungen dieses Regals auf alle darin enthaltenen Bücher angewendet. Vergewissern Sie sich vor der Aktivierung, dass alle Änderungen an den Berechtigungen für dieses Regal gespeichert wurden.',
|
||||
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Zeichnung einfügen',
|
||||
'pages_md_show_preview' => 'Vorschau anzeigen',
|
||||
'pages_md_sync_scroll' => 'Vorschau synchronisieren',
|
||||
'pages_drawing_unsaved' => 'Ungespeicherte Zeichnung gefunden',
|
||||
'pages_drawing_unsaved_confirm' => 'Es wurden ungespeicherte Zeichnungsdaten von einem früheren, fehlgeschlagenen Versuch, die Zeichnung zu speichern, gefunden. Möchten Sie diese ungespeicherte Zeichnung wiederherstellen und weiter bearbeiten?',
|
||||
'pages_not_in_chapter' => 'Seite ist in keinem Kapitel',
|
||||
'pages_move' => 'Seite verschieben',
|
||||
'pages_copy' => 'Seite kopieren',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'Verweise',
|
||||
'references_none' => 'Es gibt keine nachverfolgten Referenzen zu diesem Element.',
|
||||
'references_to_desc' => 'Nachfolgend sind alle bekannten Seiten im System aufgeführt, die auf diesen Artikel verweisen.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Beobachten',
|
||||
'watch_title_default' => 'Standardeinstellungen',
|
||||
'watch_desc_default' => 'Rückgängig machen auf Standard-Benachrichtigungseinstellungen.',
|
||||
'watch_title_ignore' => 'Ignorieren',
|
||||
'watch_desc_ignore' => 'Ignorieren aller Benachrichtigungen, auch die von den Einstellungen auf Benutzerebene.',
|
||||
'watch_title_new' => 'Neue Seiten',
|
||||
'watch_desc_new' => 'Benachrichtigung, wenn eine neue Seite in diesem Element erstellt wird.',
|
||||
'watch_title_updates' => 'Alle Seitenupdates',
|
||||
'watch_desc_updates' => 'Bei allen neuen Seiten und Seitenänderungen benachrichtigen.',
|
||||
'watch_desc_updates_page' => 'Bei allen Seitenänderungen benachrichtigen.',
|
||||
'watch_title_comments' => 'Alle Seitenupdates & Kommentare',
|
||||
'watch_desc_comments' => 'Benachrichtigung bei allen neuen Seiten, Seitenänderungen und neuen Kommentaren.',
|
||||
'watch_desc_comments_page' => 'Benachrichtigung bei Seitenänderungen und neuen Kommentaren.',
|
||||
'watch_change_default' => 'Standard-Benachrichtigungseinstellungen ändern',
|
||||
'watch_detail_ignore' => 'Benachrichtigungen ignorieren',
|
||||
'watch_detail_new' => 'Beobachten von neuen Seiten',
|
||||
'watch_detail_updates' => 'Beobachtung neuer Seiten und Aktualisierungen',
|
||||
'watch_detail_comments' => 'Beobachtung neuer Seiten, Aktualisierungen und Kommentare',
|
||||
'watch_detail_parent_book' => 'Beobachten über übergeordnetes Buch',
|
||||
'watch_detail_parent_book_ignore' => 'Ignorieren über übergeordnetes Buch',
|
||||
'watch_detail_parent_chapter' => 'Beobachten über übergeordnetes Kapitel',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignorieren über übergeordnetes Kapitel',
|
||||
];
|
||||
|
|
26
lang/de/notifications.php
Normal file
26
lang/de/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'Neuer Kommentar auf Seite: :pageName',
|
||||
'new_comment_intro' => 'Ein Benutzer hat eine Seite in :appName kommentiert:',
|
||||
'new_page_subject' => 'Neue Seite: :pageName',
|
||||
'new_page_intro' => 'Es wurde eine neue Seite in :appName erstellt:',
|
||||
'updated_page_subject' => 'Aktualisierte Seite: :pageName',
|
||||
'updated_page_intro' => 'Eine Seite wurde in :appName aktualisiert:',
|
||||
'updated_page_debounce' => 'Um eine Flut von Benachrichtigungen zu vermeiden, werden Sie für eine gewisse Zeit keine Benachrichtigungen für weitere Bearbeitungen dieser Seite durch denselben Bearbeiter erhalten.',
|
||||
|
||||
'detail_page_name' => 'Name der Seite:',
|
||||
'detail_commenter' => 'Kommentator:',
|
||||
'detail_comment' => 'Kommentar:',
|
||||
'detail_created_by' => 'Erstellt von:',
|
||||
'detail_updated_by' => 'Aktualisiert von:',
|
||||
|
||||
'action_view_comment' => 'Kommentar anzeigen',
|
||||
'action_view_page' => 'Seite anzeigen',
|
||||
|
||||
'footer_reason' => 'Diese Benachrichtigung wurde an Sie gesendet, weil :link diese Art von Aktivität für dieses Element abdeckt.',
|
||||
'footer_reason_link' => 'ihre Benachrichtigungseinstellungen',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Einstellungen',
|
||||
|
||||
'shortcuts' => 'Tastenkürzel',
|
||||
'shortcuts_interface' => 'Oberflächen-Tastaturkürzel',
|
||||
'shortcuts_toggle_desc' => 'Hier können Sie Tastaturkürzel für die Systemoberfläche für Navigation und Aktionen aktivieren oder deaktivieren.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Tastenkürzel speichern',
|
||||
'shortcuts_overlay_desc' => 'Hinweis: Wenn Tastenkürzel aktiviert sind, ist ein Hilfsoverlay durch Drücken von "?" verfügbar, welches die verfügbaren Tastenkürzel für Aktionen hervorhebt, die aktuell auf dem Bildschirm sichtbar sind.',
|
||||
'shortcuts_update_success' => 'Tastenkürzel Einstellungen wurden aktualisiert!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Verwalten von Tastenkombinationen, die zur Navigation der Benutzeroberfläche verwendet werden können.',
|
||||
|
||||
'notifications' => 'Benachrichtigungseinstellungen',
|
||||
'notifications_desc' => 'Legen Sie fest, welche E-Mail-Benachrichtigungen Sie erhalten, wenn bestimmte Aktivitäten im System durchgeführt werden.',
|
||||
'notifications_opt_own_page_changes' => 'Benachrichtigung bei Änderungen an eigenen Seiten',
|
||||
'notifications_opt_own_page_comments' => 'Benachrichtigung bei Kommentaren an eigenen Seiten',
|
||||
'notifications_opt_comment_replies' => 'Bei Antworten auf meine Kommentare benachrichtigen',
|
||||
'notifications_save' => 'Einstellungen speichern',
|
||||
'notifications_update_success' => 'Benachrichtigungseinstellungen wurden aktualisiert!',
|
||||
'notifications_watched' => 'Beobachtete und ignorierte Elemente',
|
||||
'notifications_watched_desc' => ' Nachfolgend finden Sie die Elemente, für die benutzerdefinierten Überwachungspräferenzen gelten. Um Ihre Einstellungen für diese Elemente zu aktualisieren, sehen Sie sich das Element an und suchen dann die Überwachungsoptionen in der Seitenleiste.',
|
||||
|
||||
'profile_overview_desc' => ' Verwalten Sie die Details Ihres Benutzerprofils einschließlich bevorzugter Sprache und Authentifizierungsoptionen.',
|
||||
];
|
||||
|
|
|
@ -164,6 +164,7 @@ Hinweis: Benutzer können ihre E-Mail-Adresse nach erfolgreicher Registrierung
|
|||
'role_manage_settings' => 'Globaleinstellungen verwalten',
|
||||
'role_export_content' => 'Inhalt exportieren',
|
||||
'role_editor_change' => 'Seiten-Editor ändern',
|
||||
'role_notifications' => 'Empfangen und Verwalten von Benachrichtigungen',
|
||||
'role_asset' => 'Berechtigungen',
|
||||
'roles_system_warning' => 'Beachten Sie, dass der Zugriff auf eine der oben genannten drei Berechtigungen einem Benutzer erlauben kann, seine eigenen Berechtigungen oder die Rechte anderer im System zu ändern. Weisen Sie nur Rollen, mit diesen Berechtigungen, vertrauenswürdigen Benutzern zu.',
|
||||
'role_asset_desc' => 'Diese Berechtigungen gelten für den Standard-Zugriff innerhalb des Systems. Berechtigungen für Bücher, Kapitel und Seiten überschreiben diese Berechtigungenen.',
|
||||
|
|
|
@ -8,35 +8,35 @@ return [
|
|||
// Pages
|
||||
'page_create' => 'erstellt Seite',
|
||||
'page_create_notification' => 'Seite erfolgreich erstellt',
|
||||
'page_update' => 'aktualisiert Seite',
|
||||
'page_update' => 'Seite aktualisiert',
|
||||
'page_update_notification' => 'Seite erfolgreich aktualisiert',
|
||||
'page_delete' => 'löscht Seite',
|
||||
'page_delete' => 'Seite gelöscht',
|
||||
'page_delete_notification' => 'Seite erfolgreich gelöscht',
|
||||
'page_restore' => 'stellt Seite wieder her',
|
||||
'page_restore' => 'Seite wiederhergestellt',
|
||||
'page_restore_notification' => 'Seite erfolgreich wiederhergestellt',
|
||||
'page_move' => 'verschiebt Seite',
|
||||
'page_move' => 'Seite verschoben',
|
||||
'page_move_notification' => 'Seite erfolgreich verschoben',
|
||||
|
||||
// Chapters
|
||||
'chapter_create' => 'erstellt Kapitel',
|
||||
'chapter_create' => 'Kapitel erstellt',
|
||||
'chapter_create_notification' => 'Kapitel erfolgreich erstellt',
|
||||
'chapter_update' => 'aktualisiert Kapitel',
|
||||
'chapter_update' => 'Kapitel aktualisiert',
|
||||
'chapter_update_notification' => 'Kapitel erfolgreich aktualisiert',
|
||||
'chapter_delete' => 'löscht Kapitel',
|
||||
'chapter_delete' => 'Kapitel gelöscht',
|
||||
'chapter_delete_notification' => 'Kapitel erfolgreich gelöscht',
|
||||
'chapter_move' => 'verschiebt Kapitel',
|
||||
'chapter_move' => 'Kapitel verschoben',
|
||||
'chapter_move_notification' => 'Kapitel erfolgreich verschoben',
|
||||
|
||||
// Books
|
||||
'book_create' => 'erstellt Buch',
|
||||
'book_create' => 'Buch erstellt',
|
||||
'book_create_notification' => 'Buch erfolgreich erstellt',
|
||||
'book_create_from_chapter' => 'Kapitel zu Buch umgewandelt',
|
||||
'book_create_from_chapter_notification' => 'Kapitel erfolgreich in ein Buch umgewandelt',
|
||||
'book_update' => 'aktualisiert Buch',
|
||||
'book_update' => 'Buch aktualisiert',
|
||||
'book_update_notification' => 'Buch erfolgreich aktualisiert',
|
||||
'book_delete' => 'löscht Buch',
|
||||
'book_delete' => 'Buch gelöscht',
|
||||
'book_delete_notification' => 'Buch erfolgreich gelöscht',
|
||||
'book_sort' => 'sortiert Buch',
|
||||
'book_sort' => 'Buch sortiert',
|
||||
'book_sort_notification' => 'Buch erfolgreich umsortiert',
|
||||
|
||||
// Bookshelves
|
||||
|
@ -50,19 +50,22 @@ return [
|
|||
'bookshelf_delete_notification' => 'Regal erfolgreich gelöscht',
|
||||
|
||||
// Revisions
|
||||
'revision_restore' => 'stellte Revision wieder her:',
|
||||
'revision_delete' => 'löschte Revision',
|
||||
'revision_restore' => 'Revision wiederhergestellt',
|
||||
'revision_delete' => 'Revision gelöscht',
|
||||
'revision_delete_notification' => 'Revision erfolgreich gelöscht',
|
||||
|
||||
// Favourites
|
||||
'favourite_add_notification' => '":name" wurde zu deinen Favoriten hinzugefügt',
|
||||
'favourite_remove_notification' => '":name" wurde aus deinen Favoriten entfernt',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'hat sich eingeloggt',
|
||||
'auth_register' => 'hat sich als neuer Benutzer registriert',
|
||||
'auth_password_reset_request' => 'hat eine Rücksetzung des Benutzerpassworts beantragt',
|
||||
'auth_password_reset_update' => 'hat Benutzerpasswort zurückgesetzt',
|
||||
'auth_password_reset_update' => 'Benutzerpasswort zurückgesetzt',
|
||||
'mfa_setup_method' => 'hat MFA-Methode konfiguriert',
|
||||
'mfa_setup_method_notification' => 'Multi-Faktor-Methode erfolgreich konfiguriert',
|
||||
'mfa_remove_method' => 'hat MFA-Methode entfernt',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'aus dem Papierkorb wiederhergestellt',
|
||||
'recycle_bin_destroy' => 'aus dem Papierkorb gelöscht',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'kommentiert',
|
||||
'comment_create' => 'Kommentar hinzugefügt',
|
||||
'comment_update' => 'Kommentar aktualisiert',
|
||||
'comment_delete' => 'Kommentar gelöscht',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'aktualisierte Berechtigungen',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Entfernen',
|
||||
'add' => 'Hinzufügen',
|
||||
'configure' => 'Konfigurieren',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Vollbild',
|
||||
'favourite' => 'Favoriten',
|
||||
'unfavourite' => 'Kein Favorit',
|
||||
|
|
|
@ -106,7 +106,7 @@ return [
|
|||
'shelves_permissions_updated' => 'Regalberechtigungen aktualisiert',
|
||||
'shelves_permissions_active' => 'Regalberechtigungen aktiv',
|
||||
'shelves_permissions_cascade_warning' => 'Berechtigungen für Regale werden nicht automatisch auf die enthaltenen Bücher übertragen. Das liegt daran, dass ein Buch in mehreren Regalen vorhanden sein kann. Berechtigungen können jedoch auf untergeordnete Bücher kopiert werden, indem du die unten stehende Option verwendest.',
|
||||
'shelves_permissions_create' => 'Shelf create permissions are only used for copying permissions to child books using the action below. They do not control the ability to create books.',
|
||||
'shelves_permissions_create' => '"Regal erstellen"-Berechtigungen werden nur zum Kopieren von Berechtigungen für untergeordnete Bücher mit der folgenden Aktion verwendet. Sie kontrollieren nicht die Fähigkeit, Bücher zu erstellen.',
|
||||
'shelves_copy_permissions_to_books' => 'Kopiere die Berechtigungen zum Buch',
|
||||
'shelves_copy_permissions' => 'Berechtigungen kopieren',
|
||||
'shelves_copy_permissions_explain' => 'Dadurch werden die aktuellen Berechtigungseinstellungen dieses Regals auf alle darin enthaltenen Bücher angewendet. Vergewissere dich vor der Aktivierung, dass alle Änderungen an den Berechtigungen für dieses Regal gespeichert wurden.',
|
||||
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Zeichnung einfügen',
|
||||
'pages_md_show_preview' => 'Vorschau anzeigen',
|
||||
'pages_md_sync_scroll' => 'Vorschau synchronisieren',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'Seite ist in keinem Kapitel',
|
||||
'pages_move' => 'Seite verschieben',
|
||||
'pages_copy' => 'Seite kopieren',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'Verweise',
|
||||
'references_none' => 'Es gibt keine nachverfolgten Referenzen zu diesem Element.',
|
||||
'references_to_desc' => 'Nachfolgend sind alle bekannten Seiten im System aufgeführt, die auf diesen Artikel verweisen.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Beobachten',
|
||||
'watch_title_default' => 'Standardeinstellungen',
|
||||
'watch_desc_default' => 'Rückgängig machen auf Standard-Benachrichtigungseinstellungen.',
|
||||
'watch_title_ignore' => 'Ignorieren',
|
||||
'watch_desc_ignore' => 'Ignorieren aller Benachrichtigungen, auch die von den Einstellungen auf Benutzerebene.',
|
||||
'watch_title_new' => 'Neue Seiten',
|
||||
'watch_desc_new' => 'Benachrichtigung, wenn eine neue Seite in diesem Element erstellt wird.',
|
||||
'watch_title_updates' => 'Alle Seitenupdates',
|
||||
'watch_desc_updates' => 'Bei allen neuen Seiten und Seitenänderungen benachrichtigen.',
|
||||
'watch_desc_updates_page' => 'Bei allen Seitenänderungen benachrichtigen.',
|
||||
'watch_title_comments' => 'Alle Seitenupdates & Kommentare',
|
||||
'watch_desc_comments' => 'Benachrichtigung bei allen neuen Seiten, Seitenänderungen und neuen Kommentaren.',
|
||||
'watch_desc_comments_page' => 'Benachrichtigung bei Seitenänderungen und neuen Kommentaren.',
|
||||
'watch_change_default' => 'Standard-Benachrichtigungseinstellungen ändern',
|
||||
'watch_detail_ignore' => 'Benachrichtigungen ignorieren',
|
||||
'watch_detail_new' => 'Beobachten von neuen Seiten',
|
||||
'watch_detail_updates' => 'Beobachtung neuer Seiten und Aktualisierungen',
|
||||
'watch_detail_comments' => 'Beobachtung neuer Seiten, Aktualisierungen und Kommentare',
|
||||
'watch_detail_parent_book' => 'Beobachten über übergeordnetes Buch',
|
||||
'watch_detail_parent_book_ignore' => 'Ignorieren über übergeordnetes Buch',
|
||||
'watch_detail_parent_chapter' => 'Beobachten über übergeordnetes Kapitel',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignorieren über übergeordnetes Kapitel',
|
||||
];
|
||||
|
|
26
lang/de_informal/notifications.php
Normal file
26
lang/de_informal/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Kürzel',
|
||||
'shortcuts_interface' => 'Oberflächen-Tastaturkürzel',
|
||||
'shortcuts_toggle_desc' => 'Hier kannst du Tastaturkürzel für die Systemoberfläche für Navigation und Aktionen aktivieren oder deaktivieren.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Tastenkürzel speichern',
|
||||
'shortcuts_overlay_desc' => 'Hinweis: Wenn Tastenkürzel aktiviert sind, ist ein Hilfefähnchen durch Drücken von "?" verfügbar, welches die verfügbaren Tastenkürzel für Aktionen hervorhebt, die aktuell auf dem Bildschirm sichtbar sind.',
|
||||
'shortcuts_update_success' => 'Tastenkürzel Einstellungen wurden aktualisiert!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -164,6 +164,7 @@ Hinweis: Benutzer können ihre E-Mail Adresse nach erfolgreicher Registrierung
|
|||
'role_manage_settings' => 'Globaleinstellungen verwalten',
|
||||
'role_export_content' => 'Inhalt exportieren',
|
||||
'role_editor_change' => 'Seiteneditor ändern',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Berechtigungen',
|
||||
'roles_system_warning' => 'Beachte, dass der Zugriff auf eine der oben genannten drei Berechtigungen einem Benutzer erlauben kann, seine eigenen Berechtigungen oder die Rechte anderer im System zu ändern. Weise nur Rollen mit diesen Berechtigungen vertrauenswürdigen Benutzern zu.',
|
||||
'role_asset_desc' => 'Diese Berechtigungen gelten für den Standard-Zugriff innerhalb des Systems. Berechtigungen für Bücher, Kapitel und Seiten überschreiben diese Berechtigungen.',
|
||||
|
|
|
@ -15,7 +15,7 @@ return [
|
|||
'page_restore' => 'αποκατεστημένη σελίδα',
|
||||
'page_restore_notification' => 'Η σελίδα αποκαταστάθηκε με επιτυχία',
|
||||
'page_move' => 'Η σελίδα μετακινήθηκε',
|
||||
'page_move_notification' => 'Page successfully moved',
|
||||
'page_move_notification' => 'Η σελίδα μετακινήθηκε με επιτυχία',
|
||||
|
||||
// Chapters
|
||||
'chapter_create' => 'δημιουργήθηκε κεφάλαιο',
|
||||
|
@ -25,7 +25,7 @@ return [
|
|||
'chapter_delete' => 'διαγραμμένο κεφάλαιο',
|
||||
'chapter_delete_notification' => 'Το κεφάλαιο διαγράφηκε επιτυχώς',
|
||||
'chapter_move' => 'το κεφάλαιο μετακινήθηκε',
|
||||
'chapter_move_notification' => 'Chapter successfully moved',
|
||||
'chapter_move_notification' => 'Το κεφάλαιο μετακινήθηκε με επιτυχία',
|
||||
|
||||
// Books
|
||||
'book_create' => 'το βιβλίο δημιουργήθηκε',
|
||||
|
@ -50,28 +50,31 @@ return [
|
|||
'bookshelf_delete_notification' => 'Το ράφι ενημερώθηκε επιτυχώς',
|
||||
|
||||
// Revisions
|
||||
'revision_restore' => 'restored revision',
|
||||
'revision_delete' => 'deleted revision',
|
||||
'revision_delete_notification' => 'Revision successfully deleted',
|
||||
'revision_restore' => 'αποκατεστημένη αναθεώρηση',
|
||||
'revision_delete' => 'διαγραμμένη αναθεώρηση',
|
||||
'revision_delete_notification' => 'Η αναθεώρηση διαγράφηκε με επιτυχία',
|
||||
|
||||
// Favourites
|
||||
'favourite_add_notification' => '":name" προστέθηκε στα αγαπημένα σας',
|
||||
'favourite_remove_notification' => '":name" προστέθηκε στα αγαπημένα σας',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logged in',
|
||||
'auth_register' => 'registered as new user',
|
||||
'auth_password_reset_request' => 'requested user password reset',
|
||||
'auth_password_reset_update' => 'reset user password',
|
||||
'mfa_setup_method' => 'configured MFA method',
|
||||
'auth_login' => 'συνδεδεμένος',
|
||||
'auth_register' => 'εγγεγραμμένος ως νέος χρήστης',
|
||||
'auth_password_reset_request' => 'ζητήθηκε επαναφορά κωδικού πρόσβασης χρήστη',
|
||||
'auth_password_reset_update' => 'επαναφορά κωδικού πρόσβασης χρήστη',
|
||||
'mfa_setup_method' => 'διαμορφωμένη μέθοδος MFA',
|
||||
'mfa_setup_method_notification' => 'Η μέθοδος πολλαπλών παραγόντων διαμορφώθηκε επιτυχώς',
|
||||
'mfa_remove_method' => 'removed MFA method',
|
||||
'mfa_remove_method' => 'καταργήθηκε η μέθοδος MFA',
|
||||
'mfa_remove_method_notification' => 'Η μέθοδος πολλαπλών παραγόντων καταργήθηκε με επιτυχία',
|
||||
|
||||
// Settings
|
||||
'settings_update' => 'updated settings',
|
||||
'settings_update_notification' => 'Settings successfully updated',
|
||||
'maintenance_action_run' => 'ran maintenance action',
|
||||
'settings_update' => 'ενημερωμένες ρυθμίσεις',
|
||||
'settings_update_notification' => 'Οι ρυθμίσεις ενημερώθηκαν με επιτυχία',
|
||||
'maintenance_action_run' => 'έτρεξε δράση συντήρησης',
|
||||
|
||||
// Webhooks
|
||||
'webhook_create' => 'Το webhook δημιουργήθηκε',
|
||||
|
@ -82,25 +85,25 @@ return [
|
|||
'webhook_delete_notification' => 'Το Webhook διαγράφηκε επιτυχώς',
|
||||
|
||||
// Users
|
||||
'user_create' => 'created user',
|
||||
'user_create_notification' => 'User successfully created',
|
||||
'user_update' => 'updated user',
|
||||
'user_create' => 'δημιουργημένος χρήστης',
|
||||
'user_create_notification' => 'Ο χρήστης δημιουργήθηκε με επιτυχία',
|
||||
'user_update' => 'ενημερωμένος χρήστης',
|
||||
'user_update_notification' => 'Ο Χρήστης ενημερώθηκε με επιτυχία',
|
||||
'user_delete' => 'deleted user',
|
||||
'user_delete' => 'διαγραμμένος χρήστης',
|
||||
'user_delete_notification' => 'Ο Χρήστης αφαιρέθηκε επιτυχώς',
|
||||
|
||||
// API Tokens
|
||||
'api_token_create' => 'created api token',
|
||||
'api_token_create_notification' => 'API token successfully created',
|
||||
'api_token_update' => 'updated api token',
|
||||
'api_token_update_notification' => 'API token successfully updated',
|
||||
'api_token_delete' => 'deleted api token',
|
||||
'api_token_delete_notification' => 'API token successfully deleted',
|
||||
'api_token_create' => 'δημιουργήθηκε κωδικός API',
|
||||
'api_token_create_notification' => 'O κωδικός API δημιουργήθηκε με επιτυχία',
|
||||
'api_token_update' => 'κωδικός API ενημερώθηκε',
|
||||
'api_token_update_notification' => 'κωδικός API ενημερώθηκε με επιτυχία',
|
||||
'api_token_delete' => 'διαγραμμένο api token',
|
||||
'api_token_delete_notification' => 'Το διακριτικό API διαγράφηκε με επιτυχία',
|
||||
|
||||
// Roles
|
||||
'role_create' => 'created role',
|
||||
'role_create' => 'δημιουργημένος ρόλος',
|
||||
'role_create_notification' => 'Ο Ρόλος δημιουργήθηκε με επιτυχία',
|
||||
'role_update' => 'updated role',
|
||||
'role_update' => 'Ενημέρωση ρόλου',
|
||||
'role_update_notification' => 'Ο Ρόλος ενημερώθηκε με επιτυχία',
|
||||
'role_delete' => 'deleted role',
|
||||
'role_delete_notification' => 'Ο Ρόλος διαγράφηκε επιτυχώς',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restored from recycle bin',
|
||||
'recycle_bin_destroy' => 'removed from recycle bin',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'σχολίασε',
|
||||
'comment_create' => 'added comment',
|
||||
'comment_update' => 'updated comment',
|
||||
'comment_delete' => 'deleted comment',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'ενημερωμένα δικαιώματα',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Αφαίρεση',
|
||||
'add' => 'Προσθήκη',
|
||||
'configure' => 'Διαμόρφωση',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Πλήρης οθόνη',
|
||||
'favourite' => 'Αγαπημένα',
|
||||
'unfavourite' => 'Αφαίρεση από Αγαπημένα',
|
||||
|
|
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Εισαγωγή Σχεδίου',
|
||||
'pages_md_show_preview' => 'Εμφάνιση προεπισκόπησης',
|
||||
'pages_md_sync_scroll' => 'Συγχρονισμός προεπισκόπησης',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'Η σελίδα δεν είναι σε κεφάλαιο',
|
||||
'pages_move' => 'Μετακίνηση Σελίδας',
|
||||
'pages_copy' => 'Αντιγραφή Σελίδας',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'Αναφορές',
|
||||
'references_none' => 'Δεν υπάρχουν αναφορές παρακολούθησης σε αυτό το στοιχείο.',
|
||||
'references_to_desc' => 'Παρακάτω εμφανίζονται όλες οι γνωστές σελίδες του συστήματος που συνδέονται με αυτό το στοιχείο.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/el/notifications.php
Normal file
26
lang/el/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Συντομεύσεις',
|
||||
'shortcuts_interface' => 'Συντομεύσεις Πληκτρολογίου Διεπαφής',
|
||||
'shortcuts_toggle_desc' => 'Εδώ μπορείτε να ενεργοποιήσετε ή να απενεργοποιήσετε τις συντομεύσεις του συστήματος πληκτρολογίου, που χρησιμοποιούνται για την πλοήγηση και τις ενέργειες.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Αποθήκευση Συντομεύσεων',
|
||||
'shortcuts_overlay_desc' => 'Σημείωση: Όταν οι συντομεύσεις είναι ενεργοποιημένες μια βοηθητική επικάλυψη είναι διαθέσιμη πατώντας "?" που θα τονίσει τις διαθέσιμες συντομεύσεις για ενέργειες που είναι ορατές στην οθόνη.',
|
||||
'shortcuts_update_success' => 'Οι προτιμήσεις σας αποθηκεύτηκαν!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'Διαχειριστείτε τις ρυθμίσεις του ΑΡΙ',
|
||||
'role_export_content' => 'Εξαγωγή περιεχομένου',
|
||||
'role_editor_change' => 'Αλλαγή προγράμματος επεξεργασίας σελίδας',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Δικαιώματα Συστήματος',
|
||||
'roles_system_warning' => 'Λάβετε υπόψη ότι η πρόσβαση σε οποιοδήποτε από τις τρεις παραπάνω άδειες (δικαιώματα) μπορεί να επιτρέψει σε έναν χρήστη να αλλάξει τα δικά του προνόμια ή τα προνόμια άλλων στο σύστημα. Εκχωρήστε ρόλους με αυτά τα δικαιώματα μόνο σε αξιόπιστους χρήστες.',
|
||||
'role_asset_desc' => 'Αυτά τα δικαιώματα ελέγχουν την προεπιλεγμένη πρόσβαση στα στοιχεία (άδειες) εντός του συστήματος. Τα δικαιώματα σε Βιβλία, Κεφάλαια και Σελίδες θα παρακάμψουν αυτές τις άδειες.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '".name" ha sido añadido a sus favoritos',
|
||||
'favourite_remove_notification' => '".name" ha sido eliminado de sus favoritos',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Preferencias de suscripciones actualizadas correctamente',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'conectado',
|
||||
'auth_register' => 'registrado como nuevo usuario',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restaurado de la papelera de reciclaje',
|
||||
'recycle_bin_destroy' => 'eliminado de la papelera de reciclaje',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'comentada el',
|
||||
'comment_create' => 'comentario añadido',
|
||||
'comment_update' => 'comentario actualizado',
|
||||
'comment_delete' => 'comentario borrado',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'permisos actualizados',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Remover',
|
||||
'add' => 'Añadir',
|
||||
'configure' => 'Configurar',
|
||||
'manage' => 'Gestionar',
|
||||
'fullscreen' => 'Pantalla completa',
|
||||
'favourite' => 'Añadir a favoritos',
|
||||
'unfavourite' => 'Eliminar de favoritos',
|
||||
|
|
|
@ -106,7 +106,7 @@ return [
|
|||
'shelves_permissions_updated' => 'Permisos del estante actualizados',
|
||||
'shelves_permissions_active' => 'Permisos del estante activos',
|
||||
'shelves_permissions_cascade_warning' => 'Los permisos en los estantes no se aplican automáticamente a los libros que contengan. Esto se debe a que un libro puede existir en múltiples estantes. Sin embargo, los permisos pueden ser aplicados a los libros del estante utilizando la opción a continuación.',
|
||||
'shelves_permissions_create' => 'Shelf create permissions are only used for copying permissions to child books using the action below. They do not control the ability to create books.',
|
||||
'shelves_permissions_create' => 'Los permisos de creación de estantes sólo se utilizan para copiar los permisos a los libros contenidos utilizando la acción a continuación. No controlan la capacidad de crear libros.',
|
||||
'shelves_copy_permissions_to_books' => 'Copiar permisos a los libros',
|
||||
'shelves_copy_permissions' => 'Copiar permisos',
|
||||
'shelves_copy_permissions_explain' => 'Esto aplicará los permisos de este estante para todos sus libros. Antes de activarlo, asegúrese de que todos los cambios de permisos para este estante han sido guardados.',
|
||||
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Insertar Dibujo',
|
||||
'pages_md_show_preview' => 'Mostrar vista previa',
|
||||
'pages_md_sync_scroll' => 'Sincronizar desplazamiento de vista previa',
|
||||
'pages_drawing_unsaved' => 'Encontrado dibujo sin guardar',
|
||||
'pages_drawing_unsaved_confirm' => 'Se encontraron datos no guardados del dibujo de un intento de guardado fallido. ¿Desea restaurar y continuar editando el dibujo no guardado?',
|
||||
'pages_not_in_chapter' => 'La página no está en un capítulo',
|
||||
'pages_move' => 'Mover página',
|
||||
'pages_copy' => 'Copiar página',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'Referencias',
|
||||
'references_none' => 'No hay referencias a este elemento.',
|
||||
'references_to_desc' => 'A continuación se muestran todas las páginas en el sistema que enlazan a este elemento.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Suscribirme',
|
||||
'watch_title_default' => 'Preferencias por defecto',
|
||||
'watch_desc_default' => 'Revertir suscripciones a tus preferencias de notificación por defecto.',
|
||||
'watch_title_ignore' => 'Ignorar',
|
||||
'watch_desc_ignore' => 'Ignorar todas las notificaciones, incluyendo las de las preferencias a nivel de usuario.',
|
||||
'watch_title_new' => 'Nuevas páginas',
|
||||
'watch_desc_new' => 'Notificar cuando se crea una nueva página dentro de este elemento.',
|
||||
'watch_title_updates' => 'Todas las actualizaciones de páginas',
|
||||
'watch_desc_updates' => 'Notificar todos los cambios de páginas y páginas nuevas.',
|
||||
'watch_desc_updates_page' => 'Notificar todos los cambios en la página.',
|
||||
'watch_title_comments' => 'Todas las actualizaciones de páginas y comentarios',
|
||||
'watch_desc_comments' => 'Notificar sobre todas las páginas nuevas, cambios de página y nuevos comentarios.',
|
||||
'watch_desc_comments_page' => 'Notificar los cambios en las páginas y los nuevos comentarios.',
|
||||
'watch_change_default' => 'Cambiar preferencias de notificación por defecto',
|
||||
'watch_detail_ignore' => 'Ignorar notificaciones',
|
||||
'watch_detail_new' => 'Suscripciones de nuevas páginas',
|
||||
'watch_detail_updates' => 'Suscripciones de nuevas páginas y actualizaciones de páginas',
|
||||
'watch_detail_comments' => 'Suscripciones de nuevas páginas, actualizaciones de páginas y comentarios',
|
||||
'watch_detail_parent_book' => 'Subscripciones por libro contenedor',
|
||||
'watch_detail_parent_book_ignore' => 'Ignorando a través del libro contenedor',
|
||||
'watch_detail_parent_chapter' => 'Subscripciones por capítulo superior',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignorar por capítulo superior',
|
||||
];
|
||||
|
|
26
lang/es/notifications.php
Normal file
26
lang/es/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'Nuevo comentario en la página: :pageName',
|
||||
'new_comment_intro' => 'Un usuario ha comentado en una página de :appName:',
|
||||
'new_page_subject' => 'Nueva página: :pageName',
|
||||
'new_page_intro' => 'Una nueva página ha sido creada en :appName:',
|
||||
'updated_page_subject' => 'Página actualizada: :pageName',
|
||||
'updated_page_intro' => 'Una página ha sido actualizada en :appName:',
|
||||
'updated_page_debounce' => 'Para prevenir notificaciones en masa, durante un tiempo no se enviarán notificaciones para futuras ediciones de esta página por el mismo editor.',
|
||||
|
||||
'detail_page_name' => 'Nombre de página:',
|
||||
'detail_commenter' => 'Autor del comentario:',
|
||||
'detail_comment' => 'Comentario:',
|
||||
'detail_created_by' => 'Creado por:',
|
||||
'detail_updated_by' => 'Actualizado por:',
|
||||
|
||||
'action_view_comment' => 'Ver comentario',
|
||||
'action_view_page' => 'Ver página',
|
||||
|
||||
'footer_reason' => 'Esta notificación fue enviada porque :link cubre este tipo de actividad para este artículo.',
|
||||
'footer_reason_link' => 'sus preferencias de notificación',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferencias',
|
||||
|
||||
'shortcuts' => 'Accesos directos',
|
||||
'shortcuts_interface' => 'Accesos directos de la interfaz',
|
||||
'shortcuts_toggle_desc' => 'Aquí puede activar o desactivar los accesos directos de la interfaz, utilizados para la navegación y las acciones.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Guardar accesos directos',
|
||||
'shortcuts_overlay_desc' => 'Nota: Cuando se activan los accesos directos se puede mostrar la ayuda presionando la tecla "?" que resaltará los accesos rápidos disponibles para las acciones actualmente visibles en la pantalla.',
|
||||
'shortcuts_update_success' => '¡Las preferencias de accesos directos han sido actualizadas!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Gestione los atajos de teclado que puede utilizar para navegar por la interfaz de usuario del sistema.',
|
||||
|
||||
'notifications' => 'Preferencias de notificaciones',
|
||||
'notifications_desc' => 'Controle las notificaciones por correo electrónico que recibe cuando se realiza cierta actividad dentro del sistema.',
|
||||
'notifications_opt_own_page_changes' => 'Notificar sobre los cambios en las páginas en las que soy propietario',
|
||||
'notifications_opt_own_page_comments' => 'Notificar sobre comentarios en las páginas en las que soy propietario',
|
||||
'notifications_opt_comment_replies' => 'Notificar sobre respuestas a mis comentarios',
|
||||
'notifications_save' => 'Guardar preferencias',
|
||||
'notifications_update_success' => '¡Se han actualizado las preferencias de notificaciones!',
|
||||
'notifications_watched' => 'Elementos vistos e ignorados',
|
||||
'notifications_watched_desc' => ' A continuación se muestran los elementos que tienen preferencias personalizadas de monitorización. Para actualizar sus preferencias, vea el artículo y las opciones se mostrarán en la barra lateral.',
|
||||
|
||||
'profile_overview_desc' => ' Gestione los detalles de su perfil de usuario, incluyendo las opciones de idioma y autenticación preferidas.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'Gestionar ajustes de la aplicación',
|
||||
'role_export_content' => 'Exportar contenido',
|
||||
'role_editor_change' => 'Cambiar editor de página',
|
||||
'role_notifications' => 'Recibir y gestionar notificaciones',
|
||||
'role_asset' => 'Permisos de contenido',
|
||||
'roles_system_warning' => 'Tenga en cuenta que el acceso a cualquiera de los tres permisos anteriores puede permitir a un usuario alterar sus propios privilegios o los privilegios de otros en el sistema. Sólo asignar roles con estos permisos a usuarios de confianza.',
|
||||
'role_asset_desc' => 'Estos permisos controlan el acceso por defecto a los contenidos del sistema. Los permisos de Libros, Capítulos y Páginas sobreescribiran estos permisos.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '".name" se añadió a sus favoritos',
|
||||
'favourite_remove_notification' => '".name" se eliminó de sus favoritos',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'sesión iniciada',
|
||||
'auth_register' => 'registrado como usuario nuevo',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restaurado desde la papelera de reciclaje',
|
||||
'recycle_bin_destroy' => 'eliminado de la papelera de reciclaje',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'comentado',
|
||||
'comment_create' => 'comentario añadido',
|
||||
'comment_update' => 'comentario actualizado',
|
||||
'comment_delete' => 'comentario borrado',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'permisos actualizados',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Remover',
|
||||
'add' => 'Agregar',
|
||||
'configure' => 'Configurar',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Pantalla completa',
|
||||
'favourite' => 'Favoritos',
|
||||
'unfavourite' => 'Eliminar de favoritos',
|
||||
|
|
|
@ -106,7 +106,7 @@ return [
|
|||
'shelves_permissions_updated' => 'Permisos del Estante Actualizados',
|
||||
'shelves_permissions_active' => 'Permisos Activos del Estante',
|
||||
'shelves_permissions_cascade_warning' => 'Los permisos en los estantes no se aplican automáticamente a los libros que contengan. Esto se debe a que un libro puede existir en múltiples estantes. Sin embargo, los permisos pueden ser aplicados a los libros del estante utilizando la opción de abajo.',
|
||||
'shelves_permissions_create' => 'Shelf create permissions are only used for copying permissions to child books using the action below. They do not control the ability to create books.',
|
||||
'shelves_permissions_create' => 'Los permisos de creación de estantes sólo se utilizan para copiar los permisos a los libros contenidos utilizando la acción a continuación. No controlan la capacidad de crear libros.',
|
||||
'shelves_copy_permissions_to_books' => 'Copiar Permisos a los Libros',
|
||||
'shelves_copy_permissions' => 'Copiar Permisos',
|
||||
'shelves_copy_permissions_explain' => 'Esta acción aplicará los permisos del estante a todos los libros dentro del mismo. Antes de activarlo, asegúrese de que todos los cambios de permisos para este estante fueron guardados.',
|
||||
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Insertar Dibujo',
|
||||
'pages_md_show_preview' => 'Mostrar vista previa',
|
||||
'pages_md_sync_scroll' => 'Sincronizar desplazamiento de vista previa',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'La página no esá en el capítulo',
|
||||
'pages_move' => 'Mover página',
|
||||
'pages_copy' => 'Copiar página',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'Referencias',
|
||||
'references_none' => 'No hay referencias a este elemento.',
|
||||
'references_to_desc' => 'A continuación se muestran todas las páginas en el sistema que tienen un enlace a este elemento.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Suscribirme',
|
||||
'watch_title_default' => 'Preferencias por defecto',
|
||||
'watch_desc_default' => 'Revertir suscripciones a tus preferencias de notificación por defecto.',
|
||||
'watch_title_ignore' => 'Ignorar',
|
||||
'watch_desc_ignore' => 'Ignorar todas las notificaciones, incluyendo las de las preferencias a nivel de usuario.',
|
||||
'watch_title_new' => 'Nuevas páginas',
|
||||
'watch_desc_new' => 'Notificar cuando se crea una nueva página dentro de este elemento.',
|
||||
'watch_title_updates' => 'Todas las actualizaciones de páginas',
|
||||
'watch_desc_updates' => 'Notificar todos los cambios de páginas y páginas nuevas.',
|
||||
'watch_desc_updates_page' => 'Notificar todos los cambios en la página.',
|
||||
'watch_title_comments' => 'Todas las actualizaciones de páginas y comentarios',
|
||||
'watch_desc_comments' => 'Notificar sobre todas las páginas nuevas, cambios de página y nuevos comentarios.',
|
||||
'watch_desc_comments_page' => 'Notificar los cambios en las páginas y los nuevos comentarios.',
|
||||
'watch_change_default' => 'Cambiar preferencias de notificación por defecto',
|
||||
'watch_detail_ignore' => 'Ignorar notificaciones',
|
||||
'watch_detail_new' => 'Suscripciones de nuevas páginas',
|
||||
'watch_detail_updates' => 'Suscripciones de nuevas páginas y actualizaciones de páginas',
|
||||
'watch_detail_comments' => 'Suscripciones de nuevas páginas, actualizaciones de páginas y comentarios',
|
||||
'watch_detail_parent_book' => 'Subscripciones por libro contenedor',
|
||||
'watch_detail_parent_book_ignore' => 'Ignorando a través del libro contenedor',
|
||||
'watch_detail_parent_chapter' => 'Subscripciones por capítulo superior',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignorar por capítulo superior',
|
||||
];
|
||||
|
|
26
lang/es_AR/notifications.php
Normal file
26
lang/es_AR/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Atajos',
|
||||
'shortcuts_interface' => 'Atajos del Teclado para la Interfaz',
|
||||
'shortcuts_toggle_desc' => 'Aquí puede activar o desactivar los accesos rápidos de la interfaz, utilizados para la navegación y las acciones.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Guardar atajos',
|
||||
'shortcuts_overlay_desc' => 'Nota: Cuando se activan los atajos de teclado se puede visualizar la ayuda presionando la tecla "?", que resaltará los atajos disponibles para las acciones visibles actualmente en la pantalla.',
|
||||
'shortcuts_update_success' => '¡Se actualizaron las preferencias de atajos de teclado!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -164,6 +164,7 @@ return [
|
|||
'role_manage_settings' => 'Gestionar ajustes de activos',
|
||||
'role_export_content' => 'Exportar contenido',
|
||||
'role_editor_change' => 'Cambiar editor de página',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Permisos de activos',
|
||||
'roles_system_warning' => 'Tenga en cuenta que el acceso a cualquiera de los tres permisos anteriores puede permitir a un usuario modificar sus propios privilegios o los privilegios de otros usuarios en el sistema. Asignar roles con estos permisos sólo a usuarios de comfianza.',
|
||||
'role_asset_desc' => 'Estos permisos controlan el acceso por defecto a los activos del sistema. Permisos definidos en Libros, Capítulos y Páginas ignorarán estos permisos.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '":name" lisati su lemmikute hulka',
|
||||
'favourite_remove_notification' => '":name" eemaldati su lemmikute hulgast',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logis sisse',
|
||||
'auth_register' => 'registreerus uue kasutajana',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'taastas prügikastist',
|
||||
'recycle_bin_destroy' => 'eemaldas prügikastist',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'kommenteeris lehte',
|
||||
'comment_create' => 'lisas kommentaari',
|
||||
'comment_update' => 'muutis kommentaari',
|
||||
'comment_delete' => 'kustutas kommentaari',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'muutis õiguseid',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Eemalda',
|
||||
'add' => 'Lisa',
|
||||
'configure' => 'Seadista',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Täisekraan',
|
||||
'favourite' => 'Lemmik',
|
||||
'unfavourite' => 'Eemalda lemmik',
|
||||
|
|
|
@ -214,7 +214,7 @@ return [
|
|||
'pages_editing_page' => 'Lehe muutmine',
|
||||
'pages_edit_draft_save_at' => 'Mustand salvestatud ',
|
||||
'pages_edit_delete_draft' => 'Kustuta mustand',
|
||||
'pages_edit_delete_draft_confirm' => 'Are you sure you want to delete your draft page changes? All of your changes, since the last full save, will be lost and the editor will be updated with the latest page non-draft save state.',
|
||||
'pages_edit_delete_draft_confirm' => 'Kas oled kindel, et soovid mustandi muudatused kustutada? Kõik viimasest salvestamisest saadik tehtud muudatused kaovad ning redaktorisse laetakse viimati salvestatud seis.',
|
||||
'pages_edit_discard_draft' => 'Loobu mustandist',
|
||||
'pages_edit_switch_to_markdown' => 'Kasuta Markdown redaktorit',
|
||||
'pages_edit_switch_to_markdown_clean' => '(Puhas sisu)',
|
||||
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Lisa joonis',
|
||||
'pages_md_show_preview' => 'Näita eelvaadet',
|
||||
'pages_md_sync_scroll' => 'Sünkrooni eelvaate kerimine',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'Leht ei kuulu peatüki alla',
|
||||
'pages_move' => 'Liiguta leht',
|
||||
'pages_copy' => 'Kopeeri leht',
|
||||
|
@ -266,9 +268,9 @@ return [
|
|||
'pages_revisions_restore' => 'Taasta',
|
||||
'pages_revisions_none' => 'Sellel lehel ei ole redaktsioone',
|
||||
'pages_copy_link' => 'Kopeeri link',
|
||||
'pages_edit_content_link' => 'Jump to section in editor',
|
||||
'pages_edit_content_link' => 'Hüppa redaktoris sektsioonini',
|
||||
'pages_pointer_enter_mode' => 'Enter section select mode',
|
||||
'pages_pointer_label' => 'Page Section Options',
|
||||
'pages_pointer_label' => 'Lehe sektsiooni valikud',
|
||||
'pages_pointer_permalink' => 'Page Section Permalink',
|
||||
'pages_pointer_include_tag' => 'Page Section Include Tag',
|
||||
'pages_pointer_toggle_link' => 'Permalink mode, Press to show include tag',
|
||||
|
@ -287,8 +289,8 @@ return [
|
|||
'time_b' => 'viimase :minCount minuti jooksul',
|
||||
'message' => ':start :time. Ärge teineteise muudatusi üle kirjutage!',
|
||||
],
|
||||
'pages_draft_discarded' => 'Draft discarded! The editor has been updated with the current page content',
|
||||
'pages_draft_deleted' => 'Draft deleted! The editor has been updated with the current page content',
|
||||
'pages_draft_discarded' => 'Mustand ära visatud! Redaktorisse laeti lehe värske sisu',
|
||||
'pages_draft_deleted' => 'Mustand kustutatud! Redaktorisse laeti lehe värske sisu',
|
||||
'pages_specific' => 'Spetsiifiline leht',
|
||||
'pages_is_template' => 'Lehe mall',
|
||||
|
||||
|
@ -366,7 +368,7 @@ return [
|
|||
'comment_new' => 'Uus kommentaar',
|
||||
'comment_created' => 'kommenteeris :createDiff',
|
||||
'comment_updated' => 'Muudetud :updateDiff :username poolt',
|
||||
'comment_updated_indicator' => 'Updated',
|
||||
'comment_updated_indicator' => 'Uuendatud',
|
||||
'comment_deleted_success' => 'Kommentaar kustutatud',
|
||||
'comment_created_success' => 'Kommentaar lisatud',
|
||||
'comment_updated_success' => 'Kommentaar muudetud',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'Viited',
|
||||
'references_none' => 'Sellele objektile ei ole viiteid.',
|
||||
'references_to_desc' => 'Allpool on kõik teadaolevad lehed, mis sellele objektile viitavad.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/et/notifications.php
Normal file
26
lang/et/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Kiirklahvid',
|
||||
'shortcuts_interface' => 'Kasutajaliidese kiirklahvid',
|
||||
'shortcuts_toggle_desc' => 'Siit saad sisse ja välja lülitada navigeerimiseks ja tegevusteks kasutatavad kiirklahvid.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Salvesta kiirklahvid',
|
||||
'shortcuts_overlay_desc' => 'Märkus: Kui kiirklahvid on sisse lülitatud, saab "?" vajutades kuvada abiinfo, mis märgib ära kõigi hetkel ekraanil nähtavate tegevuste kiirklahvid.',
|
||||
'shortcuts_update_success' => 'Kiirklahvide eelistused on salvestatud!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'Rakenduse seadete haldamine',
|
||||
'role_export_content' => 'Sisu eksport',
|
||||
'role_editor_change' => 'Lehe redaktori muutmine',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Sisu õigused',
|
||||
'roles_system_warning' => 'Pane tähele, et ülalolevad kolm õigust võimaldavad kasutajal enda või teiste kasutajate õiguseid muuta. Määra nende õigustega roll ainult usaldusväärsetele kasutajatele.',
|
||||
'role_asset_desc' => 'Need load kontrollivad vaikimisi ligipääsu süsteemis olevale sisule. Raamatute, peatükkide ja lehtede õigused rakenduvad esmajärjekorras.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '":name" zure gogoetara gehitua izan da',
|
||||
'favourite_remove_notification' => '":name" zure gogokoetatik ezabatua izan da',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logged in',
|
||||
'auth_register' => 'registered as new user',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restored from recycle bin',
|
||||
'recycle_bin_destroy' => 'removed from recycle bin',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'iruzkinak',
|
||||
'comment_create' => 'added comment',
|
||||
'comment_update' => 'updated comment',
|
||||
'comment_delete' => 'deleted comment',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'eguneratu baimenak',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Ezabatu',
|
||||
'add' => 'Gehitu',
|
||||
'configure' => 'Konfiguratu',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Pantaila osoa',
|
||||
'favourite' => 'Gogokoa',
|
||||
'unfavourite' => 'Desatsegina',
|
||||
|
|
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Txertatu marrazki berria',
|
||||
'pages_md_show_preview' => 'Show preview',
|
||||
'pages_md_sync_scroll' => 'Sync preview scroll',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'Page is not in a chapter',
|
||||
'pages_move' => 'Move Page',
|
||||
'pages_copy' => 'Copy Page',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'References',
|
||||
'references_none' => 'There are no tracked references to this item.',
|
||||
'references_to_desc' => 'Shown below are all the known pages in the system that link to this item.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/eu/notifications.php
Normal file
26
lang/eu/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Lastertekla',
|
||||
'shortcuts_interface' => 'Teklatuko lasterbideak ikusi',
|
||||
'shortcuts_toggle_desc' => 'Hemen, nabigaziorako eta ekintzetarako erabiltzen diren teklatu-sistemako lasterbideak gaitu edo desgaitu daitezke.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Gorde lasterbideak',
|
||||
'shortcuts_overlay_desc' => 'Oharra: Lasterbideak gaituta daudenean, "?" sakagailuaren bidez laguntzaileen gainjartze bat egongo da, eta horrek pantailan gaur egun ikus daitezkeen ekintzetarako dauden lasterbideak nabarmenduko ditu.',
|
||||
'shortcuts_update_success' => 'Zure lehentasunak gorde dira!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'Kudeatu aplikazio ezarpenak',
|
||||
'role_export_content' => 'Exportatu edukia',
|
||||
'role_editor_change' => 'Change page editor',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Fitxategi baimenak',
|
||||
'roles_system_warning' => 'Be aware that access to any of the above three permissions can allow a user to alter their own privileges or the privileges of others in the system. Only assign roles with these permissions to trusted users.',
|
||||
'role_asset_desc' => 'These permissions control default access to the assets within the system. Permissions on Books, Chapters and Pages will override these permissions.',
|
||||
|
|
|
@ -15,7 +15,7 @@ return [
|
|||
'page_restore' => 'بازیابی صفحه',
|
||||
'page_restore_notification' => 'صفحه با موفقیت بازیابی شد',
|
||||
'page_move' => 'انتقال صفحه',
|
||||
'page_move_notification' => 'Page successfully moved',
|
||||
'page_move_notification' => 'صفحه با موفقیت جابهجا شد',
|
||||
|
||||
// Chapters
|
||||
'chapter_create' => 'ایجاد فصل',
|
||||
|
@ -25,7 +25,7 @@ return [
|
|||
'chapter_delete' => 'حذف فصل',
|
||||
'chapter_delete_notification' => 'فصل با موفقیت حذف شد',
|
||||
'chapter_move' => 'انتقال فصل',
|
||||
'chapter_move_notification' => 'Chapter successfully moved',
|
||||
'chapter_move_notification' => 'فصل با موفقیت جابهجا شد',
|
||||
|
||||
// Books
|
||||
'book_create' => 'ایجاد کتاب',
|
||||
|
@ -52,12 +52,15 @@ return [
|
|||
// Revisions
|
||||
'revision_restore' => 'restored revision',
|
||||
'revision_delete' => 'deleted revision',
|
||||
'revision_delete_notification' => 'Revision successfully deleted',
|
||||
'revision_delete_notification' => 'نسخه مورد نظر با موفقیت حذف شد',
|
||||
|
||||
// Favourites
|
||||
'favourite_add_notification' => '":name" به علاقه مندی های شما اضافه شد',
|
||||
'favourite_remove_notification' => '":name" از علاقه مندی های شما حذف شد',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logged in',
|
||||
'auth_register' => 'registered as new user',
|
||||
|
@ -70,7 +73,7 @@ return [
|
|||
|
||||
// Settings
|
||||
'settings_update' => 'updated settings',
|
||||
'settings_update_notification' => 'Settings successfully updated',
|
||||
'settings_update_notification' => 'تنظیمات با موفقیت به روز شد',
|
||||
'maintenance_action_run' => 'ran maintenance action',
|
||||
|
||||
// Webhooks
|
||||
|
@ -83,7 +86,7 @@ return [
|
|||
|
||||
// Users
|
||||
'user_create' => 'created user',
|
||||
'user_create_notification' => 'User successfully created',
|
||||
'user_create_notification' => 'کاربر با موفقیت به ایجاد شد',
|
||||
'user_update' => 'updated user',
|
||||
'user_update_notification' => 'کاربر با موفقیت به روز شد',
|
||||
'user_delete' => 'deleted user',
|
||||
|
@ -107,10 +110,15 @@ return [
|
|||
|
||||
// Recycle Bin
|
||||
'recycle_bin_empty' => 'emptied recycle bin',
|
||||
'recycle_bin_restore' => 'restored from recycle bin',
|
||||
'recycle_bin_destroy' => 'removed from recycle bin',
|
||||
'recycle_bin_restore' => 'از سطل بازیافت، بازآوری شده است',
|
||||
'recycle_bin_destroy' => 'از سطل بازیافت حذف شده است',
|
||||
|
||||
// Comments
|
||||
'commented_on' => 'ثبت دیدگاه',
|
||||
'comment_create' => 'added comment',
|
||||
'comment_update' => 'updated comment',
|
||||
'comment_delete' => 'deleted comment',
|
||||
|
||||
// Other
|
||||
'commented_on' => 'ثبت دیدگاه',
|
||||
'permissions_update' => 'به روزرسانی مجوزها',
|
||||
];
|
||||
|
|
|
@ -6,7 +6,7 @@ return [
|
|||
|
||||
// Buttons
|
||||
'cancel' => 'لغو',
|
||||
'close' => 'Close',
|
||||
'close' => 'خروج',
|
||||
'confirm' => 'تایید',
|
||||
'back' => 'بازگشت',
|
||||
'save' => 'ذخیره',
|
||||
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'حذف',
|
||||
'add' => 'ﺍﻓﺰﻭﺩﻥ',
|
||||
'configure' => 'پیکربندی کنید',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'تمام صفحه',
|
||||
'favourite' => 'علاقهمندی',
|
||||
'unfavourite' => 'حذف از علاقهمندی',
|
||||
|
@ -65,7 +66,7 @@ return [
|
|||
// Misc
|
||||
'deleted_user' => 'کاربر حذف شده',
|
||||
'no_activity' => 'بایگانی برای نمایش وجود ندارد',
|
||||
'no_items' => 'هیچ آیتمی موجود نیست',
|
||||
'no_items' => 'هیچ موردی در دسترس نیست',
|
||||
'back_to_top' => 'بازگشت به بالا',
|
||||
'skip_to_main_content' => 'رفتن به محتوای اصلی',
|
||||
'toggle_details' => 'معکوس کردن اطلاعات',
|
||||
|
|
|
@ -6,34 +6,34 @@ return [
|
|||
|
||||
// Image Manager
|
||||
'image_select' => 'انتخاب تصویر',
|
||||
'image_list' => 'Image List',
|
||||
'image_details' => 'Image Details',
|
||||
'image_upload' => 'Upload Image',
|
||||
'image_intro' => 'Here you can select and manage images that have been previously uploaded to the system.',
|
||||
'image_intro_upload' => 'Upload a new image by dragging an image file into this window, or by using the "Upload Image" button above.',
|
||||
'image_list' => 'لیست تصاویر',
|
||||
'image_details' => 'جزئیات تصویر',
|
||||
'image_upload' => 'بارگذاری تصویر',
|
||||
'image_intro' => 'در اینجا می توانید تصاویری که قبلاً در سیستم آپلود شده اند را انتخاب و مدیریت کنید.',
|
||||
'image_intro_upload' => 'با کشیدن یک فایل تصویری به این پنجره یا با استفاده از دکمه "بارگذاری تصویر" در بالا، یک تصویر جدید آپلود کنید.',
|
||||
'image_all' => 'همه',
|
||||
'image_all_title' => 'نمایش تمام تصاویر',
|
||||
'image_book_title' => 'تصاویر بارگذاری شده در این کتاب را مشاهده کنید',
|
||||
'image_page_title' => 'تصاویر بارگذاری شده در این صفحه را مشاهده کنید',
|
||||
'image_search_hint' => 'جستجو بر اساس نام تصویر',
|
||||
'image_uploaded' => 'بارگذاری شده :uploadedDate',
|
||||
'image_uploaded_by' => 'Uploaded by :userName',
|
||||
'image_uploaded_to' => 'Uploaded to :pageLink',
|
||||
'image_updated' => 'Updated :updateDate',
|
||||
'image_uploaded_by' => 'بارگذاری شده توسط:userName',
|
||||
'image_uploaded_to' => 'بارگذاری شده در صفحه:pageLink',
|
||||
'image_updated' => 'بهروزرسانی شده در:updateDate',
|
||||
'image_load_more' => 'بارگذاری بیشتر',
|
||||
'image_image_name' => 'نام تصویر',
|
||||
'image_delete_used' => 'این تصویر در صفحات زیر استفاده شده است.',
|
||||
'image_delete_confirm_text' => 'آیا مطمئن هستید که میخواهید این عکس را پاک کنید؟',
|
||||
'image_select_image' => 'انتخاب تصویر',
|
||||
'image_dropzone' => 'تصاویر را رها کنید یا برای بارگذاری اینجا را کلیک کنید',
|
||||
'image_dropzone_drop' => 'Drop images here to upload',
|
||||
'image_dropzone_drop' => 'تصویر را برای بارگذاری به اینجا بکشید و رها کنید',
|
||||
'images_deleted' => 'تصاویر حذف شده',
|
||||
'image_preview' => 'پیش نمایش تصویر',
|
||||
'image_upload_success' => 'تصویر با موفقیت بارگذاری شد',
|
||||
'image_update_success' => 'جزئیات تصویر با موفقیت به روز شد',
|
||||
'image_delete_success' => 'تصویر با موفقیت حذف شد',
|
||||
'image_replace' => 'Replace Image',
|
||||
'image_replace_success' => 'Image file successfully updated',
|
||||
'image_replace' => 'جایگزینی تصویر',
|
||||
'image_replace_success' => 'تصویر با موفقیت به روز شد',
|
||||
|
||||
// Code Editor
|
||||
'code_editor' => 'ویرایش کد',
|
||||
|
|
|
@ -63,8 +63,8 @@ return [
|
|||
'search_terms' => 'عبارات جستجو',
|
||||
'search_content_type' => 'نوع محتوا',
|
||||
'search_exact_matches' => 'مطابقت کامل',
|
||||
'search_tags' => 'جستجوها را برچسب بزنید',
|
||||
'search_options' => 'گزینه ها',
|
||||
'search_tags' => 'جستجو در برچسبها',
|
||||
'search_options' => 'گزینهها',
|
||||
'search_viewed_by_me' => 'بازدید شده به وسیله من',
|
||||
'search_not_viewed_by_me' => 'توسط من مشاهده نشده است',
|
||||
'search_permissions_set' => 'مجوزها تنظیم شده است',
|
||||
|
@ -81,12 +81,12 @@ return [
|
|||
|
||||
// Shelves
|
||||
'shelf' => 'قفسه',
|
||||
'shelves' => 'قفسه ها',
|
||||
'shelves' => 'قفسهها',
|
||||
'x_shelves' => ':count قفسه|:count قفسهها',
|
||||
'shelves_empty' => 'هیچ قفسه ای ایجاد نشده است',
|
||||
'shelves_create' => 'ایجاد قفسه جدید',
|
||||
'shelves_popular' => 'قفسه های محبوب',
|
||||
'shelves_new' => 'قفسه های جدید',
|
||||
'shelves_popular' => 'قفسههای محبوب',
|
||||
'shelves_new' => 'قفسههای جدید',
|
||||
'shelves_new_action' => 'قفسه جدید',
|
||||
'shelves_popular_empty' => 'محبوب ترین قفسه ها در اینجا ظاهر می شوند.',
|
||||
'shelves_new_empty' => 'جدیدترین قفسه های ایجاد شده در اینجا ظاهر می شوند.',
|
||||
|
@ -106,7 +106,7 @@ return [
|
|||
'shelves_permissions_updated' => 'مجوزهای کانال بروزرسانی شد',
|
||||
'shelves_permissions_active' => 'مجوزهای قفسه فعال است',
|
||||
'shelves_permissions_cascade_warning' => 'مجوزهای موجود در قفسهها به طور خودکار به کتابهای حاوی اطلاق نمیشوند. دلیل آن این است که یک کتاب می تواند در چندین قفسه وجود داشته باشد. با این حال، مجوزها را میتوان با استفاده از گزینه پایین همین صفحه در کتابهای فرزند کپی کرد.',
|
||||
'shelves_permissions_create' => 'Shelf create permissions are only used for copying permissions to child books using the action below. They do not control the ability to create books.',
|
||||
'shelves_permissions_create' => 'مجوزهای «ایجاد» قفسه فقط برای کپی کردن مجوزها در کتابهای کودک با استفاده از عملکرد زیر استفاده میشوند. آنها توانایی ایجاد کتاب را کنترل نمیکنند.',
|
||||
'shelves_copy_permissions_to_books' => 'کپی مجوزها در کتابها',
|
||||
'shelves_copy_permissions' => 'کپی مجوزها',
|
||||
'shelves_copy_permissions_explain' => 'با این کار تنظیمات مجوز فعلی این قفسه برای همه کتابهای موجود در آن اعمال میشود. قبل از فعال کردن، مطمئن شوید که هر گونه تغییر در مجوزهای این قفسه، ذخیره شده است.',
|
||||
|
@ -114,7 +114,7 @@ return [
|
|||
|
||||
// Books
|
||||
'book' => 'کتاب',
|
||||
'books' => 'کتابها',
|
||||
'books' => 'کتابها',
|
||||
'x_books' => ':count کتاب|:count کتاب',
|
||||
'books_empty' => 'هیچ کتابی ایجاد نشده است',
|
||||
'books_popular' => 'کتاب های محبوب',
|
||||
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'درج طرح',
|
||||
'pages_md_show_preview' => 'دیدن پیش نمایش',
|
||||
'pages_md_sync_scroll' => 'هماهنگ سازی اسکرول پیش نمایش',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'صفحه در یک فصل نیست',
|
||||
'pages_move' => 'انتقال صفحه',
|
||||
'pages_copy' => 'کپی صفحه',
|
||||
|
@ -320,10 +322,10 @@ return [
|
|||
'attachments_explain_instant_save' => 'تغییرات در اینجا فورا ذخیره می شوند.',
|
||||
'attachments_upload' => 'آپلود فایل',
|
||||
'attachments_link' => 'پیوند را ضمیمه کنید',
|
||||
'attachments_upload_drop' => 'Alternatively you can drag and drop a file here to upload it as an attachment.',
|
||||
'attachments_upload_drop' => 'میتوانید فایلی را در اینجا بکشید و رها کنید تا آن را به عنوان پیوست آپلود کنید.',
|
||||
'attachments_set_link' => 'پیوند را تنظیم کنید',
|
||||
'attachments_delete' => 'آیا مطمئن هستید که می خواهید این پیوست را حذف کنید؟',
|
||||
'attachments_dropzone' => 'Drop files here to upload',
|
||||
'attachments_dropzone' => 'فایل را برای بارگذاری به اینجا بکشید و رها کنید',
|
||||
'attachments_no_files' => 'هیچ فایلی آپلود نشده است',
|
||||
'attachments_explain_link' => 'اگر ترجیح می دهید فایلی را آپلود نکنید، می توانید پیوندی را پیوست کنید. این می تواند پیوندی به صفحه دیگر یا پیوندی به فایلی در فضای ابری باشد.',
|
||||
'attachments_link_name' => 'نام پیوند',
|
||||
|
@ -372,7 +374,7 @@ return [
|
|||
'comment_updated_success' => 'نظر به روز شد',
|
||||
'comment_delete_confirm' => 'آیا مطمئن هستید که می خواهید این نظر را حذف کنید؟',
|
||||
'comment_in_reply_to' => 'در پاسخ به :commentId',
|
||||
'comment_editor_explain' => 'Here are the comments that have been left on this page. Comments can be added & managed when viewing the saved page.',
|
||||
'comment_editor_explain' => 'در اینجا نظراتی که در این صفحه گذاشته شده است، مشاهده میشود. نظرات را میتوان در هنگام مشاهده صفحه ذخیره شده، اضافه و مدیریت کرد.',
|
||||
|
||||
// Revision
|
||||
'revision_delete_confirm' => 'آیا مطمئن هستید که می خواهید این ویرایش را حذف کنید؟',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'مراجع',
|
||||
'references_none' => 'هیچ رفرنسی برای این قلم یافت نشد.',
|
||||
'references_to_desc' => 'در زیر تمام صفحات شناخته شده در سیستم که به این مورد پیوند دارند، نشان داده شده است.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/fa/notifications.php
Normal file
26
lang/fa/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'میانبرها',
|
||||
'shortcuts_interface' => 'میانبرهای صفحه کلید',
|
||||
'shortcuts_toggle_desc' => 'در اینجا می توانید میانبرهای سیستم را که برای پیمایش و ... استفاده می شود، فعال یا غیرفعال کنید.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'ذخیره کلیدهای میانبر',
|
||||
'shortcuts_overlay_desc' => 'توجه: هنگامی که میانبرها فعال هستند، یک رابط کمکی با فشار دادن "؟" در دسترس است که میانبرهای موجود برای اقداماتی که در حال حاضر روی صفحه قابل مشاهده است را برجسته میکند.',
|
||||
'shortcuts_update_success' => 'تنظیمات میانبر به روز شده است!',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'تنظیمات برنامه را مدیریت کنید',
|
||||
'role_export_content' => 'صادرات محتوا',
|
||||
'role_editor_change' => 'تغییر ویرایشگر صفحه',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'مجوزهای دارایی',
|
||||
'roles_system_warning' => 'توجه داشته باشید که دسترسی به هر یک از سه مجوز فوق میتواند به کاربر اجازه دهد تا امتیازات خود یا امتیازات دیگران را در سیستم تغییر دهد. فقط نقش هایی را با این مجوزها به کاربران مورد اعتماد اختصاص دهید.',
|
||||
'role_asset_desc' => 'این مجوزها دسترسی پیشفرض به داراییهای درون سیستم را کنترل میکنند. مجوزهای مربوط به کتابها، فصلها و صفحات این مجوزها را لغو میکنند.',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '":name" a été ajouté dans vos favoris',
|
||||
'favourite_remove_notification' => '":name" a été supprimé de vos favoris',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'connecté',
|
||||
'auth_register' => 'enregistré en tant que nouvel utilisateur',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restauré à partir de la corbeille',
|
||||
'recycle_bin_destroy' => 'supprimé de la corbeille',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'a commenté',
|
||||
'comment_create' => 'Commentaire ajouté',
|
||||
'comment_update' => 'Commentaire mis à jour',
|
||||
'comment_delete' => 'Commentaire supprimé',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'a mis à jour les autorisations sur',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'Enlever',
|
||||
'add' => 'Ajouter',
|
||||
'configure' => 'Configurer',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'Plein écran',
|
||||
'favourite' => 'Favoris',
|
||||
'unfavourite' => 'Supprimer des favoris',
|
||||
|
|
|
@ -106,7 +106,7 @@ return [
|
|||
'shelves_permissions_updated' => 'Permissions de l\'étagère mises à jour',
|
||||
'shelves_permissions_active' => 'Permissions de l\'étagère activées',
|
||||
'shelves_permissions_cascade_warning' => 'Les permissions sur les étagères ne sont pas automatiquement recopiées aux livres qu\'elles contiennent, car un livre peut exister dans plusieurs étagères. Les permissions peuvent cependant être recopiées vers les livres contenus en utilisant l\'option ci-dessous.',
|
||||
'shelves_permissions_create' => 'Shelf create permissions are only used for copying permissions to child books using the action below. They do not control the ability to create books.',
|
||||
'shelves_permissions_create' => 'Les permissions de création d\'une étagère sont uniquement utilisées pour copier les permissions vers les livres enfants en utilisant l\'action ci-dessous. Elles ne contrôlent pas la possibilité de créer des livres.',
|
||||
'shelves_copy_permissions_to_books' => 'Copier les permissions vers les livres',
|
||||
'shelves_copy_permissions' => 'Copier les permissions',
|
||||
'shelves_copy_permissions_explain' => 'Ceci va appliquer les permissions actuelles de cette étagère à tous les livres qu\'elle contient. Avant de continuer, assurez-vous que toutes les permissions de cette étagère ont été sauvegardées.',
|
||||
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'Insérer un dessin',
|
||||
'pages_md_show_preview' => 'Prévisualisation',
|
||||
'pages_md_sync_scroll' => 'Défilement prévisualisation',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'La page n\'est pas dans un chapitre',
|
||||
'pages_move' => 'Déplacer la page',
|
||||
'pages_copy' => 'Copier la page',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'Références',
|
||||
'references_none' => 'Il n\'y a pas de références suivies à cet élément.',
|
||||
'references_to_desc' => 'Vous trouverez ci-dessous toutes les pages connues du système qui ont un lien vers cet élément.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
26
lang/fr/notifications.php
Normal file
26
lang/fr/notifications.php
Normal file
|
@ -0,0 +1,26 @@
|
|||
<?php
|
||||
/**
|
||||
* Text used for activity-based notifications.
|
||||
*/
|
||||
return [
|
||||
|
||||
'new_comment_subject' => 'New comment on page: :pageName',
|
||||
'new_comment_intro' => 'A user has commented on a page in :appName:',
|
||||
'new_page_subject' => 'New page: :pageName',
|
||||
'new_page_intro' => 'A new page has been created in :appName:',
|
||||
'updated_page_subject' => 'Updated page: :pageName',
|
||||
'updated_page_intro' => 'A page has been updated in :appName:',
|
||||
'updated_page_debounce' => 'To prevent a mass of notifications, for a while you won\'t be sent notifications for further edits to this page by the same editor.',
|
||||
|
||||
'detail_page_name' => 'Page Name:',
|
||||
'detail_commenter' => 'Commenter:',
|
||||
'detail_comment' => 'Comment:',
|
||||
'detail_created_by' => 'Created By:',
|
||||
'detail_updated_by' => 'Updated By:',
|
||||
|
||||
'action_view_comment' => 'View Comment',
|
||||
'action_view_page' => 'View Page',
|
||||
|
||||
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
||||
'footer_reason_link' => 'your notification preferences',
|
||||
];
|
|
@ -5,6 +5,8 @@
|
|||
*/
|
||||
|
||||
return [
|
||||
'preferences' => 'Preferences',
|
||||
|
||||
'shortcuts' => 'Raccourcis',
|
||||
'shortcuts_interface' => 'Raccourcis clavier',
|
||||
'shortcuts_toggle_desc' => 'Ici vous pouvez activer ou désactiver les raccourcis clavier, utilisés pour la navigation et les actions.',
|
||||
|
@ -15,4 +17,17 @@ return [
|
|||
'shortcuts_save' => 'Sauvegarder les raccourcis',
|
||||
'shortcuts_overlay_desc' => 'Note : Lorsque les raccourcis sont activés, assistant est disponible en appuyant sur "?" qui mettra en surbrillance les raccourcis disponibles pour les actions actuellement visibles à l\'écran.',
|
||||
'shortcuts_update_success' => 'Les préférences de raccourci ont été mises à jour !',
|
||||
];
|
||||
'shortcuts_overview_desc' => 'Manage keyboard shortcuts you can use to navigate the system user interface.',
|
||||
|
||||
'notifications' => 'Notification Preferences',
|
||||
'notifications_desc' => 'Control the email notifications you receive when certain activity is performed within the system.',
|
||||
'notifications_opt_own_page_changes' => 'Notify upon changes to pages I own',
|
||||
'notifications_opt_own_page_comments' => 'Notify upon comments on pages I own',
|
||||
'notifications_opt_comment_replies' => 'Notify upon replies to my comments',
|
||||
'notifications_save' => 'Save Preferences',
|
||||
'notifications_update_success' => 'Notification preferences have been updated!',
|
||||
'notifications_watched' => 'Watched & Ignored Items',
|
||||
'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.',
|
||||
|
||||
'profile_overview_desc' => ' Manage your user profile details including preferred language and authentication options.',
|
||||
];
|
||||
|
|
|
@ -163,6 +163,7 @@ return [
|
|||
'role_manage_settings' => 'Gérer les préférences de l\'application',
|
||||
'role_export_content' => 'Exporter le contenu',
|
||||
'role_editor_change' => 'Changer l\'éditeur de page',
|
||||
'role_notifications' => 'Receive & manage notifications',
|
||||
'role_asset' => 'Permissions des ressources',
|
||||
'roles_system_warning' => 'Sachez que l\'accès à l\'une des trois permissions ci-dessus peut permettre à un utilisateur de modifier ses propres privilèges ou les privilèges des autres utilisateurs du système. N\'attribuez uniquement des rôles avec ces permissions qu\'à des utilisateurs de confiance.',
|
||||
'role_asset_desc' => 'Ces permissions contrôlent l\'accès par défaut des ressources dans le système. Les permissions dans les livres, les chapitres et les pages ignoreront ces permissions',
|
||||
|
|
|
@ -58,6 +58,9 @@ return [
|
|||
'favourite_add_notification' => '":name" has been added to your favourites',
|
||||
'favourite_remove_notification' => '":name" has been removed from your favourites',
|
||||
|
||||
// Watching
|
||||
'watch_update_level_notification' => 'Watch preferences successfully updated',
|
||||
|
||||
// Auth
|
||||
'auth_login' => 'logged in',
|
||||
'auth_register' => 'registered as new user',
|
||||
|
@ -110,7 +113,12 @@ return [
|
|||
'recycle_bin_restore' => 'restored from recycle bin',
|
||||
'recycle_bin_destroy' => 'removed from recycle bin',
|
||||
|
||||
// Other
|
||||
// Comments
|
||||
'commented_on' => 'הגיב/ה על',
|
||||
'comment_create' => 'added comment',
|
||||
'comment_update' => 'updated comment',
|
||||
'comment_delete' => 'deleted comment',
|
||||
|
||||
// Other
|
||||
'permissions_update' => 'הרשאות עודכנו',
|
||||
];
|
||||
|
|
|
@ -42,6 +42,7 @@ return [
|
|||
'remove' => 'הסר',
|
||||
'add' => 'הוסף',
|
||||
'configure' => 'הגדרות',
|
||||
'manage' => 'Manage',
|
||||
'fullscreen' => 'מסך מלא',
|
||||
'favourite' => 'מועדף',
|
||||
'unfavourite' => 'בטל מועדף',
|
||||
|
|
|
@ -239,6 +239,8 @@ return [
|
|||
'pages_md_insert_drawing' => 'הכנס סרטוט',
|
||||
'pages_md_show_preview' => 'Show preview',
|
||||
'pages_md_sync_scroll' => 'Sync preview scroll',
|
||||
'pages_drawing_unsaved' => 'Unsaved Drawing Found',
|
||||
'pages_drawing_unsaved_confirm' => 'Unsaved drawing data was found from a previous failed drawing save attempt. Would you like to restore and continue editing this unsaved drawing?',
|
||||
'pages_not_in_chapter' => 'דף אינו חלק מפרק',
|
||||
'pages_move' => 'העבר דף',
|
||||
'pages_copy' => 'העתק דף',
|
||||
|
@ -403,4 +405,28 @@ return [
|
|||
'references' => 'References',
|
||||
'references_none' => 'There are no tracked references to this item.',
|
||||
'references_to_desc' => 'Shown below are all the known pages in the system that link to this item.',
|
||||
|
||||
// Watch Options
|
||||
'watch' => 'Watch',
|
||||
'watch_title_default' => 'Default Preferences',
|
||||
'watch_desc_default' => 'Revert watching to just your default notification preferences.',
|
||||
'watch_title_ignore' => 'Ignore',
|
||||
'watch_desc_ignore' => 'Ignore all notifications, including those from user-level preferences.',
|
||||
'watch_title_new' => 'New Pages',
|
||||
'watch_desc_new' => 'Notify when any new page is created within this item.',
|
||||
'watch_title_updates' => 'All Page Updates',
|
||||
'watch_desc_updates' => 'Notify upon all new pages and page changes.',
|
||||
'watch_desc_updates_page' => 'Notify upon all page changes.',
|
||||
'watch_title_comments' => 'All Page Updates & Comments',
|
||||
'watch_desc_comments' => 'Notify upon all new pages, page changes and new comments.',
|
||||
'watch_desc_comments_page' => 'Notify upon page changes and new comments.',
|
||||
'watch_change_default' => 'Change default notification preferences',
|
||||
'watch_detail_ignore' => 'Ignoring notifications',
|
||||
'watch_detail_new' => 'Watching for new pages',
|
||||
'watch_detail_updates' => 'Watching new pages and updates',
|
||||
'watch_detail_comments' => 'Watching new pages, updates & comments',
|
||||
'watch_detail_parent_book' => 'Watching via parent book',
|
||||
'watch_detail_parent_book_ignore' => 'Ignoring via parent book',
|
||||
'watch_detail_parent_chapter' => 'Watching via parent chapter',
|
||||
'watch_detail_parent_chapter_ignore' => 'Ignoring via parent chapter',
|
||||
];
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user