49 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			49 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Activity text strings.
 | 
						|
 * Is used for all the text within activity logs & notifications.
 | 
						|
 */
 | 
						|
return [
 | 
						|
 | 
						|
    // Pages
 | 
						|
    'page_create'                 => 'vytvoril stránku',
 | 
						|
    'page_create_notification'    => 'Stránka úspešne vytvorená',
 | 
						|
    'page_update'                 => 'aktualizoval stránku',
 | 
						|
    'page_update_notification'    => 'Stránka úspešne aktualizovaná',
 | 
						|
    'page_delete'                 => 'odstránil stránku',
 | 
						|
    'page_delete_notification'    => 'Stránka úspešne odstránená',
 | 
						|
    'page_restore'                => 'obnovil stránku',
 | 
						|
    'page_restore_notification'   => 'Stránka úspešne obnovená',
 | 
						|
    'page_move'                   => 'presunul stránku',
 | 
						|
 | 
						|
    // Chapters
 | 
						|
    'chapter_create'              => 'vytvoril kapitolu',
 | 
						|
    'chapter_create_notification' => 'Kapitola úspešne vytvorená',
 | 
						|
    'chapter_update'              => 'aktualizoval kapitolu',
 | 
						|
    'chapter_update_notification' => 'Kapitola úspešne aktualizovaná',
 | 
						|
    'chapter_delete'              => 'odstránil kapitolu',
 | 
						|
    'chapter_delete_notification' => 'Kapitola úspešne odstránená',
 | 
						|
    'chapter_move'                => 'presunul kapitolu',
 | 
						|
 | 
						|
    // Books
 | 
						|
    'book_create'                 => 'vytvoril knihu',
 | 
						|
    'book_create_notification'    => 'Kniha úspešne vytvorená',
 | 
						|
    'book_update'                 => 'aktualizoval knihu',
 | 
						|
    'book_update_notification'    => 'Kniha úspešne aktualizovaná',
 | 
						|
    'book_delete'                 => 'odstránil knihu',
 | 
						|
    'book_delete_notification'    => 'Kniha úspešne odstránená',
 | 
						|
    'book_sort'                   => 'zoradil knihu',
 | 
						|
    'book_sort_notification'      => 'Kniha úspešne znovu zoradená',
 | 
						|
 | 
						|
    // Bookshelves
 | 
						|
    'bookshelf_create'            => 'created Bookshelf',
 | 
						|
    'bookshelf_create_notification'    => 'Bookshelf Successfully Created',
 | 
						|
    'bookshelf_update'                 => 'updated bookshelf',
 | 
						|
    'bookshelf_update_notification'    => 'Bookshelf Successfully Updated',
 | 
						|
    'bookshelf_delete'                 => 'deleted bookshelf',
 | 
						|
    'bookshelf_delete_notification'    => 'Bookshelf Successfully Deleted',
 | 
						|
 | 
						|
    // Other
 | 
						|
    'commented_on'                => 'commented on',
 | 
						|
];
 |