44 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			44 lines
		
	
	
		
			1.8 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| 
 | |
| return [
 | |
| 
 | |
|     /**
 | |
|      * Activity text strings.
 | |
|      * Is used for all the text within activity logs & notifications.
 | |
|      */
 | |
| 
 | |
|     // Pages
 | |
|     'page_create'                 => 'Seite erstellt',
 | |
|     'page_create_notification'    => 'Die Seite wurde erfolgreich erstellt.',
 | |
|     'page_update'                 => 'Seite aktualisiert',
 | |
|     'page_update_notification'    => 'Die Seite wurde erfolgreich aktualisiert.',
 | |
|     'page_delete'                 => 'Seite gelöscht',
 | |
|     'page_delete_notification'    => 'Die Seite wurde erfolgreich gelöscht.',
 | |
|     'page_restore'                => 'Seite wiederhergstellt',
 | |
|     'page_restore_notification'   => 'Die Seite wurde erfolgreich wiederhergstellt.',
 | |
|     'page_move'                   => 'Seite verschoben',
 | |
| 
 | |
|     // Chapters
 | |
|     'chapter_create'              => 'Kapitel erstellt',
 | |
|     'chapter_create_notification' => 'Das Kapitel wurde erfolgreich erstellt.',
 | |
|     'chapter_update'              => 'Kapitel aktualisiert',
 | |
|     'chapter_update_notification' => 'Das Kapitel wurde erfolgreich aktualisiert.',
 | |
|     'chapter_delete'              => 'Kapitel gelöscht',
 | |
|     'chapter_delete_notification' => 'Das Kapitel wurde erfolgreich gelöscht.',
 | |
|     'chapter_move'                => 'Kapitel verschoben',
 | |
| 
 | |
|     // Books
 | |
|     'book_create'                 => 'Buch erstellt',
 | |
|     'book_create_notification'    => 'Das Buch wurde erfolgreich erstellt.',
 | |
|     'book_update'                 => 'Buch aktualisiert',
 | |
|     'book_update_notification'    => 'Das Buch wurde erfolgreich aktualisiert.',
 | |
|     'book_delete'                 => 'Buch gelöscht',
 | |
|     'book_delete_notification'    => 'Das Buch wurde erfolgreich gelöscht.',
 | |
|     'book_sort'                   => 'Buch sortiert',
 | |
|     'book_sort_notification'      => 'Das Buch wurde erfolgreich neu sortiert.',
 | |
|     
 | |
|     // Other
 | |
|     'commented_on'                => 'kommentierte',
 | |
| 
 | |
| ];
 |