mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-08 09:26:42 +00:00
111 lines
3.5 KiB
PHP
111 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* Common elements found throughout many areas of BookStack.
|
|
*/
|
|
return [
|
|
|
|
// Buttons
|
|
'cancel' => 'Avbryt',
|
|
'close' => 'Stäng',
|
|
'confirm' => 'Bekräfta',
|
|
'back' => 'Bakåt',
|
|
'save' => 'Spara',
|
|
'continue' => 'Fortsätt',
|
|
'select' => 'Välj',
|
|
'toggle_all' => 'Ändra alla',
|
|
'more' => 'Mer',
|
|
|
|
// Form Labels
|
|
'name' => 'Namn',
|
|
'description' => 'Beskrivning',
|
|
'role' => 'Roll',
|
|
'cover_image' => 'Omslagsbild',
|
|
'cover_image_description' => 'This image should be approximately 440x250px although it will be flexibly scaled & cropped to fit the user interface in different scenarios as required, so actual dimensions for display will differ.',
|
|
|
|
// Actions
|
|
'actions' => 'Åtgärder',
|
|
'view' => 'Visa',
|
|
'view_all' => 'Visa alla',
|
|
'new' => 'New',
|
|
'create' => 'Skapa',
|
|
'update' => 'Uppdatera',
|
|
'edit' => 'Redigera',
|
|
'sort' => 'Sortera',
|
|
'move' => 'Flytta',
|
|
'copy' => 'Kopiera',
|
|
'reply' => 'Svara',
|
|
'delete' => 'Ta bort',
|
|
'delete_confirm' => 'Bekräfta radering',
|
|
'search' => 'Sök',
|
|
'search_clear' => 'Rensa sökning',
|
|
'reset' => 'Återställ',
|
|
'remove' => 'Radera',
|
|
'add' => 'Lägg till',
|
|
'configure' => 'Konfigurera',
|
|
'manage' => 'Hantera',
|
|
'fullscreen' => 'Helskärm',
|
|
'favourite' => 'Favorit',
|
|
'unfavourite' => 'Ta bort favorit',
|
|
'next' => 'Nästa',
|
|
'previous' => 'Föregående',
|
|
'filter_active' => 'Aktivt filter:',
|
|
'filter_clear' => 'Rensa filter',
|
|
'download' => 'Ladda ner',
|
|
'open_in_tab' => 'Öppna i flik',
|
|
'open' => 'Open',
|
|
|
|
// Sort Options
|
|
'sort_options' => 'Sorteringsalternativ',
|
|
'sort_direction_toggle' => 'Växla sorteringsriktning',
|
|
'sort_ascending' => 'Sortera stigande',
|
|
'sort_descending' => 'Sortera fallande',
|
|
'sort_name' => 'Namn',
|
|
'sort_default' => 'Standard',
|
|
'sort_created_at' => 'Skapad',
|
|
'sort_updated_at' => 'Uppdaterad',
|
|
|
|
// Misc
|
|
'deleted_user' => 'Borttagen användare',
|
|
'no_activity' => 'Ingen aktivitet att visa',
|
|
'no_items' => 'Inga tillgängliga föremål',
|
|
'back_to_top' => 'Tillbaka till toppen',
|
|
'skip_to_main_content' => 'Hoppa till huvudinnehåll',
|
|
'toggle_details' => 'Växla detaljer',
|
|
'toggle_thumbnails' => 'Växla miniatyrer',
|
|
'details' => 'Information',
|
|
'grid_view' => 'Rutnätsvy',
|
|
'list_view' => 'Listvy',
|
|
'default' => 'Förvald',
|
|
'breadcrumb' => 'Brödsmula',
|
|
'status' => 'Status',
|
|
'status_active' => 'Aktiv',
|
|
'status_inactive' => 'Inaktiv',
|
|
'never' => 'Aldrig',
|
|
'none' => 'Inga',
|
|
|
|
// Header
|
|
'homepage' => 'Homepage',
|
|
'header_menu_expand' => 'Expandera sidhuvudsmenyn',
|
|
'profile_menu' => 'Profilmeny',
|
|
'view_profile' => 'Visa profil',
|
|
'edit_profile' => 'Redigera profil',
|
|
'dark_mode' => 'Mörkt läge',
|
|
'light_mode' => 'Ljust läge',
|
|
'global_search' => 'Global Search',
|
|
|
|
// Layout tabs
|
|
'tab_info' => 'Information',
|
|
'tab_info_label' => 'Flik: Visa sekundär information',
|
|
'tab_content' => 'Innehåll',
|
|
'tab_content_label' => 'Flik: Visa primärt innehåll',
|
|
|
|
// Email Content
|
|
'email_action_help' => 'Om du har problem att klicka på ":actionText"-knappen, kopiera och klistra in URL\'n nedan i din webbläsare:',
|
|
'email_rights' => 'Alla rättigheter är reserverade',
|
|
|
|
// Footer Link Options
|
|
// Not directly used but available for convenience to users.
|
|
'privacy_policy' => 'Integritetspolicy',
|
|
'terms_of_service' => 'Användarvillkor',
|
|
];
|