mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-23 11:22:33 +01:00
28 lines
1.4 KiB
PHP
28 lines
1.4 KiB
PHP
<?php
|
|
/**
|
|
* Text used for activity-based notifications.
|
|
*/
|
|
return [
|
|
|
|
'new_comment_subject' => 'Новый комментарий на странице: :pageName',
|
|
'new_comment_intro' => 'Пользователь прокомментировал страницу в :appName:',
|
|
'new_page_subject' => 'Новая страница: :pageName',
|
|
'new_page_intro' => 'Новая страница была создана в :appName:',
|
|
'updated_page_subject' => 'Обновлена страница: :pageName',
|
|
'updated_page_intro' => 'Страница была обновлена в :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' => 'Имя страницы:',
|
|
'detail_page_path' => 'Page Path:',
|
|
'detail_commenter' => 'Комментатор:',
|
|
'detail_comment' => 'Комментарий:',
|
|
'detail_created_by' => 'Создано:',
|
|
'detail_updated_by' => 'Обновлено:',
|
|
|
|
'action_view_comment' => 'Просмотреть комментарий',
|
|
'action_view_page' => 'Посмотреть страницу',
|
|
|
|
'footer_reason' => 'This notification was sent to you because :link cover this type of activity for this item.',
|
|
'footer_reason_link' => 'ваши настройки уведомлений',
|
|
];
|