70 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			70 lines
		
	
	
		
			2.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Activity text strings.
 | 
						|
 * Is used for all the text within activity logs & notifications.
 | 
						|
 */
 | 
						|
return [
 | 
						|
 | 
						|
    // Pages
 | 
						|
    'page_create'                 => 'lisas lehe',
 | 
						|
    'page_create_notification'    => 'Leht on lisatud',
 | 
						|
    'page_update'                 => 'muutis lehte',
 | 
						|
    'page_update_notification'    => 'Leht on muudetud',
 | 
						|
    'page_delete'                 => 'kustutas lehe',
 | 
						|
    'page_delete_notification'    => 'Leht on kustutatud',
 | 
						|
    'page_restore'                => 'taastas lehe',
 | 
						|
    'page_restore_notification'   => 'Leht on taastatud',
 | 
						|
    'page_move'                   => 'liigutas lehte',
 | 
						|
 | 
						|
    // Chapters
 | 
						|
    'chapter_create'              => 'lisas peatüki',
 | 
						|
    'chapter_create_notification' => 'Peatükk on lisatud',
 | 
						|
    'chapter_update'              => 'muutis peatükki',
 | 
						|
    'chapter_update_notification' => 'Peatükk on muudetud',
 | 
						|
    'chapter_delete'              => 'kustutas peatüki',
 | 
						|
    'chapter_delete_notification' => 'Peatükk on kustutatud',
 | 
						|
    'chapter_move'                => 'liigutas peatükki',
 | 
						|
 | 
						|
    // Books
 | 
						|
    'book_create'                 => 'lisas raamatu',
 | 
						|
    'book_create_notification'    => 'Raamat on lisatud',
 | 
						|
    'book_update'                 => 'muutis raamatut',
 | 
						|
    'book_update_notification'    => 'Raamat on muudetud',
 | 
						|
    'book_delete'                 => 'kustutas raamatu',
 | 
						|
    'book_delete_notification'    => 'Raamat on kustutatud',
 | 
						|
    'book_sort'                   => 'sorteeris raamatut',
 | 
						|
    'book_sort_notification'      => 'Raamat on sorteeritud',
 | 
						|
 | 
						|
    // Bookshelves
 | 
						|
    'bookshelf_create'            => 'lisas riiuli',
 | 
						|
    'bookshelf_create_notification'    => 'Riiul on lisatud',
 | 
						|
    'bookshelf_update'                 => 'muutis riiulit',
 | 
						|
    'bookshelf_update_notification'    => 'Riiul on muudetud',
 | 
						|
    'bookshelf_delete'                 => 'kustutas riiuli',
 | 
						|
    'bookshelf_delete_notification'    => 'Riiul on kustutatud',
 | 
						|
 | 
						|
    // Favourites
 | 
						|
    'favourite_add_notification' => '":name" lisati su lemmikute hulka',
 | 
						|
    'favourite_remove_notification' => '":name" eemaldati su lemmikute hulgast',
 | 
						|
 | 
						|
    // MFA
 | 
						|
    'mfa_setup_method_notification' => 'Mitmeastmeline autentimine seadistatud',
 | 
						|
    'mfa_remove_method_notification' => 'Mitmeastmeline autentimine eemaldatud',
 | 
						|
 | 
						|
    // Webhooks
 | 
						|
    'webhook_create' => 'lisas veebihaagi',
 | 
						|
    'webhook_create_notification' => 'Veebihaak on lisatud',
 | 
						|
    'webhook_update' => 'muutis veebihaaki',
 | 
						|
    'webhook_update_notification' => 'Veebihaak on muudetud',
 | 
						|
    'webhook_delete' => 'kustutas veebihaagi',
 | 
						|
    'webhook_delete_notification' => 'Veebihaak on kustutatud',
 | 
						|
 | 
						|
    // Users
 | 
						|
    'user_update_notification' => 'Kasutaja on muudetud',
 | 
						|
    'user_delete_notification' => 'Kasutaja on kustutatud',
 | 
						|
 | 
						|
    // Other
 | 
						|
    'commented_on'                => 'kommenteeris lehte',
 | 
						|
    'permissions_update'          => 'muutis õiguseid',
 | 
						|
];
 |