mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-11-01 08:32:52 +01:00
dd805503fb
* New translations settings.php (Japanese) * New translations settings.php (Japanese) * New translations common.php (Latvian) * New translations common.php (Russian) * New translations settings.php (Dutch) * New translations common.php (Dutch) * New translations settings.php (Dutch) * New translations entities.php (Dutch) * New translations validation.php (Dutch) * New translations activities.php (Dutch) * New translations common.php (German) * New translations common.php (Dutch) * New translations common.php (German Informal) * New translations activities.php (Dutch) * New translations entities.php (German) * New translations settings.php (German) * New translations auth.php (Dutch) * New translations components.php (Dutch) * New translations common.php (German Informal) * New translations entities.php (German Informal) * New translations settings.php (German Informal) * New translations common.php (Catalan) * New translations common.php (Catalan) * New translations passwords.php (Catalan) * New translations validation.php (Catalan) * New translations validation.php (Catalan) * New translations auth.php (Catalan) * New translations common.php (Italian) * New translations activities.php (Italian) * New translations common.php (Italian)
90 lines
2.7 KiB
PHP
90 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* Common elements found throughout many areas of BookStack.
|
|
*/
|
|
return [
|
|
|
|
// Buttons
|
|
'cancel' => 'Annuleren',
|
|
'confirm' => 'Bevestigen',
|
|
'back' => 'Terug',
|
|
'save' => 'Opslaan',
|
|
'continue' => 'Doorgaan',
|
|
'select' => 'Kies',
|
|
'toggle_all' => 'Toggle alles',
|
|
'more' => 'Meer',
|
|
|
|
// Form Labels
|
|
'name' => 'Naam',
|
|
'description' => 'Beschrijving',
|
|
'role' => 'Rol',
|
|
'cover_image' => 'Omslagfoto',
|
|
'cover_image_description' => 'Deze afbeelding moet ongeveer 440x250px zijn.',
|
|
|
|
// Actions
|
|
'actions' => 'Acties',
|
|
'view' => 'Bekijk',
|
|
'view_all' => 'Bekijk alle',
|
|
'create' => 'Aanmaken',
|
|
'update' => 'Bijwerken',
|
|
'edit' => 'Bewerk',
|
|
'sort' => 'Sorteer',
|
|
'move' => 'Verplaats',
|
|
'copy' => 'Kopiëren',
|
|
'reply' => 'Beantwoorden',
|
|
'delete' => 'Verwijder',
|
|
'delete_confirm' => 'Verwijdering bevestigen',
|
|
'search' => 'Zoek',
|
|
'search_clear' => 'Zoekopdracht wissen',
|
|
'reset' => 'Resetten',
|
|
'remove' => 'Verwijderen',
|
|
'add' => 'Toevoegen',
|
|
'fullscreen' => 'Volledig scherm',
|
|
|
|
// Sort Options
|
|
'sort_options' => 'Sorteeropties',
|
|
'sort_direction_toggle' => 'Sorteerrichting',
|
|
'sort_ascending' => 'Sorteer oplopend',
|
|
'sort_descending' => 'Sorteer aflopend',
|
|
'sort_name' => 'Naam',
|
|
'sort_default' => 'Standaard',
|
|
'sort_created_at' => 'Aanmaakdatum',
|
|
'sort_updated_at' => 'Gewijzigd op',
|
|
|
|
// Misc
|
|
'deleted_user' => 'Verwijderde gebruiker',
|
|
'no_activity' => 'Geen activiteit om weer te geven',
|
|
'no_items' => 'Geen items beschikbaar',
|
|
'back_to_top' => 'Terug naar boven',
|
|
'toggle_details' => 'Details weergeven',
|
|
'toggle_thumbnails' => 'Thumbnails weergeven',
|
|
'details' => 'Details',
|
|
'grid_view' => 'Grid weergave',
|
|
'list_view' => 'Lijstweergave',
|
|
'default' => 'Standaard',
|
|
'breadcrumb' => 'Kruimelpad',
|
|
|
|
// Header
|
|
'header_menu_expand' => 'Header menu uitvouwen',
|
|
'profile_menu' => 'Profiel menu',
|
|
'view_profile' => 'Profiel weergeven',
|
|
'edit_profile' => 'Profiel bewerken',
|
|
'dark_mode' => 'Donkere modus',
|
|
'light_mode' => 'Lichte modus',
|
|
|
|
// Layout tabs
|
|
'tab_info' => 'Info',
|
|
'tab_info_label' => 'Tabblad: Toon secundaire informatie',
|
|
'tab_content' => 'Inhoud',
|
|
'tab_content_label' => 'Tabblad: Toon primaire inhoud',
|
|
|
|
// Email Content
|
|
'email_action_help' => 'Als je de knop ":actionText" niet werkt, kopieër en plak de onderstaande URL in je web browser:',
|
|
'email_rights' => 'Alle rechten voorbehouden',
|
|
|
|
// Footer Link Options
|
|
// Not directly used but available for convenience to users.
|
|
'privacy_policy' => 'Privacybeleid',
|
|
'terms_of_service' => 'Algemene voorwaarden',
|
|
];
|