66 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			66 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Activity text strings.
 | 
						|
 * Is used for all the text within activity logs & notifications.
 | 
						|
 */
 | 
						|
return [
 | 
						|
 | 
						|
    // Pages
 | 
						|
    'page_create'                 => 'створив сторінку',
 | 
						|
    'page_create_notification'    => 'Page successfully created',
 | 
						|
    'page_update'                 => 'оновив сторінку',
 | 
						|
    'page_update_notification'    => 'Page successfully updated',
 | 
						|
    'page_delete'                 => 'видалив сторінку',
 | 
						|
    'page_delete_notification'    => 'Page successfully deleted',
 | 
						|
    'page_restore'                => 'відновив сторінку',
 | 
						|
    'page_restore_notification'   => 'Page successfully restored',
 | 
						|
    'page_move'                   => 'перемістив сторінку',
 | 
						|
 | 
						|
    // Chapters
 | 
						|
    'chapter_create'              => 'створив розділ',
 | 
						|
    'chapter_create_notification' => 'Chapter successfully created',
 | 
						|
    'chapter_update'              => 'оновив розділ',
 | 
						|
    'chapter_update_notification' => 'Chapter successfully updated',
 | 
						|
    'chapter_delete'              => 'видалив розділ',
 | 
						|
    'chapter_delete_notification' => 'Chapter successfully deleted',
 | 
						|
    'chapter_move'                => 'перемістив розділ',
 | 
						|
 | 
						|
    // Books
 | 
						|
    'book_create'                 => 'створив книгу',
 | 
						|
    'book_create_notification'    => 'Book successfully created',
 | 
						|
    'book_update'                 => 'оновив книгу',
 | 
						|
    'book_update_notification'    => 'Book successfully updated',
 | 
						|
    'book_delete'                 => 'видалив книгу',
 | 
						|
    'book_delete_notification'    => 'Book successfully deleted',
 | 
						|
    'book_sort'                   => 'sorted книгу',
 | 
						|
    'book_sort_notification'      => 'Book successfully re-sorted',
 | 
						|
 | 
						|
    // Bookshelves
 | 
						|
    'bookshelf_create'            => 'created bookshelf',
 | 
						|
    'bookshelf_create_notification'    => 'Bookshelf successfully created',
 | 
						|
    'bookshelf_update'                 => 'оновив книжкову полицю',
 | 
						|
    'bookshelf_update_notification'    => 'Bookshelf successfully updated',
 | 
						|
    'bookshelf_delete'                 => 'видалив книжкову полицю',
 | 
						|
    'bookshelf_delete_notification'    => 'Bookshelf successfully deleted',
 | 
						|
 | 
						|
    // Favourites
 | 
						|
    'favourite_add_notification' => '":ім\'я" було додане до ваших улюлених',
 | 
						|
    'favourite_remove_notification' => '":ім\'я" було видалено з ваших улюблених',
 | 
						|
 | 
						|
    // MFA
 | 
						|
    'mfa_setup_method_notification' => 'Багатофакторний метод успішно налаштований',
 | 
						|
    'mfa_remove_method_notification' => 'Багатофакторний метод успішно видалений',
 | 
						|
 | 
						|
    // 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',
 | 
						|
 | 
						|
    // Other
 | 
						|
    'commented_on'                => 'прокоментував',
 | 
						|
    'permissions_update'          => 'оновив дозволи',
 | 
						|
];
 |