78 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
			
		
		
	
	
			78 lines
		
	
	
		
			2.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
<?php
 | 
						||
/**
 | 
						||
 * Common elements found throughout many areas of BookStack.
 | 
						||
 */
 | 
						||
return [
 | 
						||
 | 
						||
    // Buttons
 | 
						||
    'cancel' => 'Annuller',
 | 
						||
    'confirm' => 'Bekræft',
 | 
						||
    'back' => 'Tilbage',
 | 
						||
    'save' => 'Gem',
 | 
						||
    'continue' => 'Fortsæt',
 | 
						||
    'select' => 'Vælg',
 | 
						||
    'toggle_all' => 'Vælg/Fravælg alle',
 | 
						||
    'more' => 'Mere',
 | 
						||
 | 
						||
    // Form Labels
 | 
						||
    'name' => 'Navn',
 | 
						||
    'description' => 'Beskrivelse',
 | 
						||
    'role' => 'Rolle',
 | 
						||
    'cover_image' => 'Coverbillede',
 | 
						||
    'cover_image_description' => 'This image should be approx 440x250px.',
 | 
						||
    
 | 
						||
    // Actions
 | 
						||
    'actions' => 'Actions',
 | 
						||
    'view' => 'Vis',
 | 
						||
    'view_all' => 'Vis alle',
 | 
						||
    'create' => 'Opret',
 | 
						||
    'update' => 'Opdater',
 | 
						||
    'edit' => 'Rediger',
 | 
						||
    'sort' => 'Sorter',
 | 
						||
    'move' => 'Flyt',
 | 
						||
    'copy' => 'Kopier',
 | 
						||
    'reply' => 'Besvar',
 | 
						||
    'delete' => 'Slet',
 | 
						||
    'search' => 'Søg',
 | 
						||
    'search_clear' => 'Ryd søgning',
 | 
						||
    'reset' => 'Nulstil',
 | 
						||
    'remove' => 'Fjern',
 | 
						||
    'add' => 'Tilføj',
 | 
						||
    'fullscreen' => 'Fuld skærm',
 | 
						||
 | 
						||
    // Sort Options
 | 
						||
    'sort_options' => 'Sorteringsindstillinger',
 | 
						||
    'sort_direction_toggle' => 'Sort Direction Toggle',
 | 
						||
    'sort_ascending' => 'Sort Ascending',
 | 
						||
    'sort_descending' => 'Sort Descending',
 | 
						||
    'sort_name' => 'Name',
 | 
						||
    'sort_created_at' => 'Created Date',
 | 
						||
    'sort_updated_at' => 'Updated Date',
 | 
						||
 | 
						||
    // Misc
 | 
						||
    'deleted_user' => 'Deleted User',
 | 
						||
    'no_activity' => 'No activity to show',
 | 
						||
    'no_items' => 'No items available',
 | 
						||
    'back_to_top' => 'Back to top',
 | 
						||
    'toggle_details' => 'Toggle Details',
 | 
						||
    'toggle_thumbnails' => 'Toggle Thumbnails',
 | 
						||
    'details' => 'Details',
 | 
						||
    'grid_view' => 'Grid View',
 | 
						||
    'list_view' => 'List View',
 | 
						||
    'default' => 'Default',
 | 
						||
    'breadcrumb' => 'Breadcrumb',
 | 
						||
 | 
						||
    // Header
 | 
						||
    'profile_menu' => 'Profile Menu',
 | 
						||
    'view_profile' => 'View Profile',
 | 
						||
    'edit_profile' => 'Edit Profile',
 | 
						||
 | 
						||
    // Layout tabs
 | 
						||
    'tab_info' => 'Info',
 | 
						||
    'tab_content' => 'Content',
 | 
						||
 | 
						||
    // Email Content
 | 
						||
    'email_action_help' => 'If you’re having trouble clicking the ":actionText" button, copy and paste the URL below into your web browser:',
 | 
						||
    'email_rights' => 'All rights reserved',
 | 
						||
];
 |