BookStack/lang/sr/activities.php

124 lines
6.4 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<?php
/**
* Activity text strings.
* Is used for all the text within activity logs & notifications.
*/
return [
// Pages
'page_create' => 'креирана страница',
'page_create_notification' => 'Страница је успешно креирана',
'page_update' => 'ажурирана страница',
'page_update_notification' => 'Страница је успешно ажурирана',
'page_delete' => 'обрисана страница',
'page_delete_notification' => 'Страница је успешно обрисана',
'page_restore' => 'обновљена страна',
'page_restore_notification' => 'Страница је успешно обновљена',
'page_move' => 'премештена страна',
'page_move_notification' => 'Страница је успешно померена',
// Chapters
'chapter_create' => 'креирано поглавље',
'chapter_create_notification' => 'Поглавље је успешно креирано',
'chapter_update' => 'ажурирано поглавље',
'chapter_update_notification' => 'Поглавље је успешно обновљено',
'chapter_delete' => 'обрисано поглавље',
'chapter_delete_notification' => 'Поглавље је успешно обрисано',
'chapter_move' => 'премештено поглавље',
'chapter_move_notification' => 'Поглавље успешно премештено',
// Books
'book_create' => 'креирана књига',
'book_create_notification' => 'Књига је успешно креирана',
'book_create_from_chapter' => 'конвертовано поглавље у књигу',
'book_create_from_chapter_notification' => 'Поглавље успешно конвертовано у књигу',
'book_update' => 'књига је ажурирана',
'book_update_notification' => 'Књига је успешно ажурирана',
'book_delete' => 'књига је обрисана',
'book_delete_notification' => 'Књига је успешно обрисана',
'book_sort' => 'сортирана књига',
'book_sort_notification' => 'Књига је успешно поновно сортирана',
// Bookshelves
'bookshelf_create' => 'креирана полица',
'bookshelf_create_notification' => 'Полица је успешно креирана',
'bookshelf_create_from_book' => 'конвертована је књига у полицу',
'bookshelf_create_from_book_notification' => 'Књига је успешно конвертована у полицу',
'bookshelf_update' => 'ажурирана полица',
'bookshelf_update_notification' => 'Полица је успешно ажурирана',
'bookshelf_delete' => 'обрисана је полица',
'bookshelf_delete_notification' => 'Полица је успешно обрисана',
// Revisions
'revision_restore' => 'повраћена ревизија',
'revision_delete' => 'обрисана ревизија',
'revision_delete_notification' => 'Ревизија је успешно обрисана',
// Favourites
'favourite_add_notification' => '":name" је додато као ваше омиљено',
'favourite_remove_notification' => '":name" је уклоњено као ваше омиљено',
// Watching
'watch_update_level_notification' => 'Подешавање праћених предмета је успешно ажурирано',
// Auth
'auth_login' => 'пријављени',
'auth_register' => 'регистрован као нови корисник',
'auth_password_reset_request' => 'requested user password reset',
'auth_password_reset_update' => 'reset user password',
'mfa_setup_method' => 'configured MFA method',
'mfa_setup_method_notification' => 'Multi-factor method successfully configured',
'mfa_remove_method' => 'removed MFA method',
'mfa_remove_method_notification' => 'Multi-factor method successfully removed',
// Settings
'settings_update' => 'updated settings',
'settings_update_notification' => 'Settings successfully updated',
'maintenance_action_run' => 'ran maintenance action',
// Webhooks
'webhook_create' => 'created webhook',
'webhook_create_notification' => 'Webhook successfully created',
'webhook_update' => 'updated webhook',
'webhook_update_notification' => 'Webhook successfully updated',
'webhook_delete' => 'deleted webhook',
'webhook_delete_notification' => 'Webhook successfully deleted',
// Users
'user_create' => 'created user',
'user_create_notification' => 'User successfully created',
'user_update' => 'updated user',
'user_update_notification' => 'User successfully updated',
'user_delete' => 'deleted user',
'user_delete_notification' => 'User successfully removed',
// 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',
// Roles
'role_create' => 'created role',
'role_create_notification' => 'Role successfully created',
'role_update' => 'updated role',
'role_update_notification' => 'Role successfully updated',
'role_delete' => 'deleted role',
'role_delete_notification' => 'Role successfully deleted',
// Recycle Bin
'recycle_bin_empty' => 'emptied recycle bin',
'recycle_bin_restore' => 'restored from recycle bin',
'recycle_bin_destroy' => 'removed from recycle bin',
// Comments
'commented_on' => 'commented on',
'comment_create' => 'added comment',
'comment_update' => 'updated comment',
'comment_delete' => 'deleted comment',
// Other
'permissions_update' => 'updated permissions',
];