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