74 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			74 lines
		
	
	
		
			3.4 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						|
/**
 | 
						|
 * Activity text strings.
 | 
						|
 * Is used for all the text within activity logs & notifications.
 | 
						|
 */
 | 
						|
return [
 | 
						|
 | 
						|
    // Pages
 | 
						|
    'page_create'                 => 'erstellte Seite',
 | 
						|
    'page_create_notification'    => 'Seite erfolgreich erstellt',
 | 
						|
    'page_update'                 => 'aktualisierte Seite',
 | 
						|
    'page_update_notification'    => 'Seite erfolgreich aktualisiert',
 | 
						|
    'page_delete'                 => 'gelöschte Seite',
 | 
						|
    'page_delete_notification'    => 'Seite erfolgreich gelöscht',
 | 
						|
    'page_restore'                => 'wiederhergestellte Seite',
 | 
						|
    'page_restore_notification'   => 'Seite erfolgreich wiederhergestellt',
 | 
						|
    'page_move'                   => 'Seite verschoben',
 | 
						|
 | 
						|
    // Chapters
 | 
						|
    'chapter_create'              => 'erstellte Kapitel',
 | 
						|
    'chapter_create_notification' => 'Kapitel erfolgreich erstellt',
 | 
						|
    'chapter_update'              => 'aktualisierte Kapitel',
 | 
						|
    'chapter_update_notification' => 'Kapitel erfolgreich aktualisiert',
 | 
						|
    'chapter_delete'              => 'löschte Kapitel',
 | 
						|
    'chapter_delete_notification' => 'Kapitel erfolgreich gelöscht',
 | 
						|
    'chapter_move'                => 'verschob Kapitel',
 | 
						|
 | 
						|
    // Books
 | 
						|
    'book_create'                 => 'erstellte Buch',
 | 
						|
    'book_create_notification'    => 'Buch erfolgreich erstellt',
 | 
						|
    'book_create_from_chapter'              => 'konvertierte Kapitel zu Buch',
 | 
						|
    'book_create_from_chapter_notification' => 'Kapitel erfolgreich in ein Buch konvertiert',
 | 
						|
    'book_update'                 => 'aktualisierte Buch',
 | 
						|
    'book_update_notification'    => 'Buch erfolgreich aktualisiert',
 | 
						|
    'book_delete'                 => 'löschte Buch',
 | 
						|
    'book_delete_notification'    => 'Buch erfolgreich gelöscht',
 | 
						|
    'book_sort'                   => 'sortierte Buch',
 | 
						|
    'book_sort_notification'      => 'Das Buch wurde erfolgreich umsortiert',
 | 
						|
 | 
						|
    // Bookshelves
 | 
						|
    'bookshelf_create'            => 'erstellte Regal',
 | 
						|
    'bookshelf_create_notification'    => 'Regal erfolgreich erstellt',
 | 
						|
    'bookshelf_create_from_book'    => 'konvertierte Buch zu Regal',
 | 
						|
    'bookshelf_create_from_book_notification'    => 'Buch erfolgreich in ein Regal konvertiert',
 | 
						|
    'bookshelf_update'                 => 'aktualisierte Regal',
 | 
						|
    'bookshelf_update_notification'    => 'Regal erfolgreich aktualisiert',
 | 
						|
    'bookshelf_delete'                 => 'löschte Regal',
 | 
						|
    'bookshelf_delete_notification'    => 'Regal erfolgreich gelöscht',
 | 
						|
 | 
						|
    // Favourites
 | 
						|
    'favourite_add_notification' => '":name" wurde zu Ihren Favoriten hinzugefügt',
 | 
						|
    'favourite_remove_notification' => '":name" wurde aus Ihren Favoriten entfernt',
 | 
						|
 | 
						|
    // MFA
 | 
						|
    'mfa_setup_method_notification' => 'Multi-Faktor-Methode erfolgreich konfiguriert',
 | 
						|
    'mfa_remove_method_notification' => 'Multi-Faktor-Methode erfolgreich entfernt',
 | 
						|
 | 
						|
    // Webhooks
 | 
						|
    'webhook_create' => 'erstellter Webhook',
 | 
						|
    'webhook_create_notification' => 'Webhook wurde erfolgreich eingerichtet',
 | 
						|
    'webhook_update' => 'aktualisierter Webhook',
 | 
						|
    'webhook_update_notification' => 'Webhook wurde erfolgreich aktualisiert',
 | 
						|
    'webhook_delete' => 'gelöschter Webhook',
 | 
						|
    'webhook_delete_notification' => 'Webhook erfolgreich gelöscht',
 | 
						|
 | 
						|
    // Users
 | 
						|
    'user_update_notification' => 'Benutzer erfolgreich aktualisiert',
 | 
						|
    'user_delete_notification' => 'Benutzer erfolgreich entfernt',
 | 
						|
 | 
						|
    // Other
 | 
						|
    'commented_on'                => 'hat einen Kommentar hinzugefügt',
 | 
						|
    'permissions_update'          => 'hat die Berechtigungen aktualisiert',
 | 
						|
];
 |