79 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			79 lines
		
	
	
		
			4.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?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'                   => 'преместена страница',
 | ||
| 
 | ||
|     // Chapters
 | ||
|     'chapter_create'              => 'създадена страница',
 | ||
|     'chapter_create_notification' => 'Главата е добавена успешно',
 | ||
|     'chapter_update'              => 'обновена глава',
 | ||
|     'chapter_update_notification' => 'Главата е обновена успешно',
 | ||
|     'chapter_delete'              => 'изтрита глава',
 | ||
|     'chapter_delete_notification' => 'Главата е изтрита успешно',
 | ||
|     'chapter_move'                => 'преместена глава',
 | ||
| 
 | ||
|     // Books
 | ||
|     'book_create'                 => 'създадена книга',
 | ||
|     'book_create_notification'    => 'Книгата е създадена успешно',
 | ||
|     'book_create_from_chapter'              => 'converted chapter to book',
 | ||
|     'book_create_from_chapter_notification' => 'Chapter successfully converted to a book',
 | ||
|     'book_update'                 => 'обновена книга',
 | ||
|     'book_update_notification'    => 'Книгата е обновена успешно',
 | ||
|     'book_delete'                 => 'изтрита книга',
 | ||
|     'book_delete_notification'    => 'Книгата е изтрита успешно',
 | ||
|     'book_sort'                   => 'сортирана книга',
 | ||
|     'book_sort_notification'      => 'Книгата е преподредена успешно',
 | ||
| 
 | ||
|     // Bookshelves
 | ||
|     'bookshelf_create'            => 'created shelf',
 | ||
|     'bookshelf_create_notification'    => 'Shelf successfully created',
 | ||
|     'bookshelf_create_from_book'    => 'converted book to shelf',
 | ||
|     'bookshelf_create_from_book_notification'    => 'Book successfully converted to a shelf',
 | ||
|     'bookshelf_update'                 => 'updated shelf',
 | ||
|     'bookshelf_update_notification'    => 'Shelf successfully updated',
 | ||
|     'bookshelf_delete'                 => 'deleted shelf',
 | ||
|     'bookshelf_delete_notification'    => 'Shelf successfully deleted',
 | ||
| 
 | ||
|     // Favourites
 | ||
|     'favourite_add_notification' => '":name" е добавен към любими успешно',
 | ||
|     'favourite_remove_notification' => '":name" е премахнат от любими успешно',
 | ||
| 
 | ||
|     // MFA
 | ||
|     'mfa_setup_method_notification' => 'Многофакторният метод е конфигуриран успешно',
 | ||
|     'mfa_remove_method_notification' => 'Многофакторният метод е премахнат успешно',
 | ||
| 
 | ||
|     // Webhooks
 | ||
|     'webhook_create' => 'създадена уебкука',
 | ||
|     'webhook_create_notification' => 'Уебкуката е създадена успешно',
 | ||
|     'webhook_update' => 'обновена уебкука',
 | ||
|     'webhook_update_notification' => 'Уебкуката е обновена успешно',
 | ||
|     'webhook_delete' => 'изтрита уебкука',
 | ||
|     'webhook_delete_notification' => 'Уебкуката е изтрита успешно',
 | ||
| 
 | ||
|     // Users
 | ||
|     'user_update_notification' => 'Потребителят е обновен успешно',
 | ||
|     'user_delete_notification' => 'Потребителят е премахнат успешно',
 | ||
| 
 | ||
|     // Roles
 | ||
|     'role_create_notification' => 'Role successfully created',
 | ||
|     'role_update_notification' => 'Role successfully updated',
 | ||
|     'role_delete_notification' => 'Role successfully deleted',
 | ||
| 
 | ||
|     // Other
 | ||
|     'commented_on'                => 'коментирано на',
 | ||
|     'permissions_update'          => 'обновени права',
 | ||
| ];
 |