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'                 => 'maakte pagina',
 | |
|     'page_create_notification'    => 'Pagina Succesvol Aangemaakt',
 | |
|     'page_update'                 => 'veranderde pagina',
 | |
|     'page_update_notification'    => 'Pagina Succesvol Bijgewerkt',
 | |
|     'page_delete'                 => 'verwijderde pagina',
 | |
|     'page_delete_notification'    => 'Pagina Succesvol Verwijderd',
 | |
|     'page_restore'                => 'herstelde pagina',
 | |
|     'page_restore_notification'   => 'Pagina Succesvol Hersteld',
 | |
|     'page_move'                   => 'verplaatste pagina',
 | |
| 
 | |
|     // Chapters
 | |
|     'chapter_create'              => 'maakte hoofdstuk',
 | |
|     'chapter_create_notification' => 'Hoofdstuk Succesvol Aangemaakt',
 | |
|     'chapter_update'              => 'veranderde hoofdstuk',
 | |
|     'chapter_update_notification' => 'Hoofdstuk Succesvol Bijgewerkt',
 | |
|     'chapter_delete'              => 'verwijderde hoofdstuk',
 | |
|     'chapter_delete_notification' => 'Hoofdstuk Succesvol Verwijderd',
 | |
|     'chapter_move'                => 'verplaatste hoofdstuk',
 | |
| 
 | |
|     // Books
 | |
|     'book_create'                 => 'maakte boek',
 | |
|     'book_create_notification'    => 'Boek Succesvol Aangemaakt',
 | |
|     'book_update'                 => 'veranderde boek',
 | |
|     'book_update_notification'    => 'Boek Succesvol Bijgewerkt',
 | |
|     'book_delete'                 => 'verwijderde boek',
 | |
|     'book_delete_notification'    => 'Boek Succesvol Verwijderd',
 | |
|     'book_sort'                   => 'sorteerde boek',
 | |
|     'book_sort_notification'      => 'Boek Succesvol Gesorteerd',
 | |
| 
 | |
|     // Bookshelves
 | |
|     'bookshelf_create'            => 'maakte Boekenplank',
 | |
|     'bookshelf_create_notification'    => 'Boekenplank Succesvol Aangemaakt',
 | |
|     'bookshelf_update'                 => 'veranderde boekenplank',
 | |
|     'bookshelf_update_notification'    => 'Boekenplank Succesvol Bijgewerkt',
 | |
|     'bookshelf_delete'                 => 'verwijderde boekenplank',
 | |
|     'bookshelf_delete_notification'    => 'Boekenplank Succesvol Verwijderd',
 | |
| 
 | |
|     // Other
 | |
|     'commented_on'                => 'reactie op',
 | |
| ];
 |