125 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			125 lines
		
	
	
		
			5.2 KiB
		
	
	
	
		
			PHP
		
	
	
	
| <?php
 | |
| /**
 | |
|  * Activity text strings.
 | |
|  * Is used for all the text within activity logs & notifications.
 | |
|  */
 | |
| return [
 | |
| 
 | |
|     // Pages
 | |
|     'page_create'                 => 'oppretta side',
 | |
|     'page_create_notification'    => 'Sida vart oppretta',
 | |
|     'page_update'                 => 'oppdaterte side',
 | |
|     'page_update_notification'    => 'Sida vart oppretta',
 | |
|     'page_delete'                 => 'sletta side',
 | |
|     'page_delete_notification'    => 'Sida vart sletta',
 | |
|     'page_restore'                => 'gjenoppretta side',
 | |
|     'page_restore_notification'   => 'Sida vart gjenoppretta',
 | |
|     'page_move'                   => 'flytta side',
 | |
|     'page_move_notification'      => 'Sida vart flytta',
 | |
| 
 | |
|     // Chapters
 | |
|     'chapter_create'              => 'oppretta kapittel',
 | |
|     'chapter_create_notification' => 'Kapittelet vart oppretta',
 | |
|     'chapter_update'              => 'oppdaterte kapittel',
 | |
|     'chapter_update_notification' => 'Kapittelet vart oppdatert',
 | |
|     'chapter_delete'              => 'sletta kapittel',
 | |
|     'chapter_delete_notification' => 'Kapittelet vart sletta',
 | |
|     'chapter_move'                => 'flytta kapittel',
 | |
|     'chapter_move_notification' => 'Kapitelet vart flytta',
 | |
| 
 | |
|     // Books
 | |
|     'book_create'                 => 'oppretta bok',
 | |
|     'book_create_notification'    => 'Boka vart oppretta',
 | |
|     'book_create_from_chapter'              => 'konverterte kapittelet til bok',
 | |
|     'book_create_from_chapter_notification' => 'Kapittelet vart konvertert til ei bok',
 | |
|     'book_update'                 => 'oppdaterte bok',
 | |
|     'book_update_notification'    => 'Boka vart oppdatert',
 | |
|     'book_delete'                 => 'sletta bok',
 | |
|     'book_delete_notification'    => 'Boka vart sletta',
 | |
|     'book_sort'                   => 'sorterte bok',
 | |
|     'book_sort_notification'      => 'Sorteringa vart endra',
 | |
| 
 | |
|     // Bookshelves
 | |
|     'bookshelf_create'            => 'oppretta hylle',
 | |
|     'bookshelf_create_notification'    => 'Hylla vart oppretta',
 | |
|     'bookshelf_create_from_book'    => 'endra frå bok til hylle',
 | |
|     'bookshelf_create_from_book_notification'    => 'Boka vart konvertert til ei bokhylle',
 | |
|     'bookshelf_update'                 => 'oppdaterte hylle',
 | |
|     'bookshelf_update_notification'    => 'Hylla vart oppdatert',
 | |
|     'bookshelf_delete'                 => 'sletta hylle',
 | |
|     'bookshelf_delete_notification'    => 'Hylla vart sletta',
 | |
| 
 | |
|     // Revisions
 | |
|     'revision_restore' => 'gjenoppretta revisjon',
 | |
|     'revision_delete' => 'sletta revisjon',
 | |
|     'revision_delete_notification' => 'Revisjon sletta',
 | |
| 
 | |
|     // Favourites
 | |
|     'favourite_add_notification' => '«:name» vart lagt til i dine favorittar',
 | |
|     'favourite_remove_notification' => '«:name» vart fjerna frå dine favorittar',
 | |
| 
 | |
|     // Watching
 | |
|     'watch_update_level_notification' => 'Overvakingsinnstillingane vart oppdatert',
 | |
| 
 | |
|     // Auth
 | |
|     'auth_login' => 'logga inn',
 | |
|     'auth_register' => 'registrert som ny brukar',
 | |
|     'auth_password_reset_request' => 'ba om tilbakestilling av passord',
 | |
|     'auth_password_reset_update' => 'tilbakestill brukarpassord',
 | |
|     'mfa_setup_method' => 'konfigurert MFA-metode',
 | |
|     'mfa_setup_method_notification' => 'Fleirfaktor-metoden vart konfigurert',
 | |
|     'mfa_remove_method' => 'fjerna MFA-metode',
 | |
|     'mfa_remove_method_notification' => 'Fleirfaktor-metoden vart fjerna',
 | |
| 
 | |
|     // Settings
 | |
|     'settings_update' => 'oppdaterte innstillingar',
 | |
|     'settings_update_notification' => 'Innstillingane er oppdatert',
 | |
|     'maintenance_action_run' => 'kjørte vedlikehaldshandling',
 | |
| 
 | |
|     // Webhooks
 | |
|     'webhook_create' => 'oppretta webhook',
 | |
|     'webhook_create_notification' => 'Webhook vart oppretta',
 | |
|     'webhook_update' => 'oppdatert webhook',
 | |
|     'webhook_update_notification' => 'Webhook vart oppdatert',
 | |
|     'webhook_delete' => 'sletta webhook',
 | |
|     'webhook_delete_notification' => 'Webhook vart sletta',
 | |
| 
 | |
|     // Users
 | |
|     'user_create' => 'oppretta brukar',
 | |
|     'user_create_notification' => 'Brukar vart oppretta',
 | |
|     'user_update' => 'oppdatert brukar',
 | |
|     'user_update_notification' => 'Brukaren vart oppdatert',
 | |
|     'user_delete' => 'sletta brukar',
 | |
|     'user_delete_notification' => 'Brukaren vart fjerna',
 | |
| 
 | |
|     // API Tokens
 | |
|     'api_token_create' => 'oppretta api token',
 | |
|     'api_token_create_notification' => 'API-token er oppretta',
 | |
|     'api_token_update' => 'oppdatert api token',
 | |
|     'api_token_update_notification' => 'API-token oppdatert',
 | |
|     'api_token_delete' => 'sletta api token',
 | |
|     'api_token_delete_notification' => 'API-token vart sletta',
 | |
| 
 | |
|     // Roles
 | |
|     'role_create' => 'oppretta rolle',
 | |
|     'role_create_notification' => 'Rolla vart oppretta',
 | |
|     'role_update' => 'oppdatert rolle',
 | |
|     'role_update_notification' => 'Rolla vart oppdatert',
 | |
|     'role_delete' => 'sletta rolla',
 | |
|     'role_delete_notification' => 'Rolla vart fjerna',
 | |
| 
 | |
|     // Recycle Bin
 | |
|     'recycle_bin_empty' => 'tømt søppelbøtta',
 | |
|     'recycle_bin_restore' => 'gjenoppretta frå søppelbøtta',
 | |
|     'recycle_bin_destroy' => 'fjerna frå søppelbøtta',
 | |
| 
 | |
|     // Comments
 | |
|     'commented_on'                => 'kommenterte på',
 | |
|     'comment_create'              => 'lagt til kommentar',
 | |
|     'comment_update'              => 'oppdatert kommentar',
 | |
|     'comment_delete'              => 'sletta kommentar',
 | |
| 
 | |
|     // Other
 | |
|     'permissions_update'          => 'oppdaterte tilgangar',
 | |
| ];
 |