mirror of
https://github.com/BookStackApp/BookStack.git
synced 2024-10-01 01:36:00 -04:00
b3c47649b4
* New translations common.php (French) * New translations entities.php (French) * New translations settings.php (Russian) * New translations settings.php (Ukrainian) * New translations common.php (Spanish, Argentina) * New translations common.php (Spanish) * New translations entities.php (Spanish, Argentina) * New translations settings.php (Spanish, Argentina) * New translations common.php (Portuguese, Brazilian) * New translations settings.php (Portuguese, Brazilian) * New translations common.php (Chinese Simplified) * New translations common.php (Polish) * New translations common.php (Norwegian Bokmal) * New translations common.php (Bosnian) * New translations common.php (Latvian) * New translations common.php (Persian) * New translations common.php (Indonesian) * New translations common.php (Vietnamese) * New translations common.php (Chinese Traditional) * New translations common.php (Ukrainian) * New translations common.php (Turkish) * New translations common.php (Swedish) * New translations common.php (Slovenian) * New translations common.php (Slovak) * New translations common.php (Russian) * New translations common.php (Portuguese) * New translations common.php (Dutch) * New translations common.php (French) * New translations common.php (Korean) * New translations common.php (Japanese) * New translations common.php (Italian) * New translations common.php (Hungarian) * New translations common.php (Hebrew) * New translations common.php (German) * New translations common.php (Danish) * New translations common.php (Czech) * New translations common.php (Catalan) * New translations common.php (Bulgarian) * New translations common.php (Arabic) * New translations common.php (Portuguese, Brazilian) * New translations common.php (Spanish) * New translations common.php (Spanish, Argentina) * New translations common.php (German Informal)
90 lines
2.8 KiB
PHP
90 lines
2.8 KiB
PHP
<?php
|
|
/**
|
|
* Common elements found throughout many areas of BookStack.
|
|
*/
|
|
return [
|
|
|
|
// Buttons
|
|
'cancel' => 'Zrušiť',
|
|
'confirm' => 'Potvrdiť',
|
|
'back' => 'Späť',
|
|
'save' => 'Uložiť',
|
|
'continue' => 'Pokračovať',
|
|
'select' => 'Vybrať',
|
|
'toggle_all' => 'Prepnúť všetko',
|
|
'more' => 'Viac',
|
|
|
|
// Form Labels
|
|
'name' => 'Meno',
|
|
'description' => 'Popis',
|
|
'role' => 'Rola',
|
|
'cover_image' => 'Obal knihy',
|
|
'cover_image_description' => 'Tento obrázok by mal byť približne 300 x 170 pixelov.',
|
|
|
|
// Actions
|
|
'actions' => 'Akcie',
|
|
'view' => 'Zobraziť',
|
|
'view_all' => 'Zobraziť všetko',
|
|
'create' => 'Vytvoriť',
|
|
'update' => 'Aktualizovať',
|
|
'edit' => 'Editovať',
|
|
'sort' => 'Zoradiť',
|
|
'move' => 'Presunúť',
|
|
'copy' => 'Kopírovať',
|
|
'reply' => 'Odpovedať',
|
|
'delete' => 'Zmazať',
|
|
'delete_confirm' => 'Potvrdiť zmazanie',
|
|
'search' => 'Hľadať',
|
|
'search_clear' => 'Vyčistiť hľadanie',
|
|
'reset' => 'Resetovať',
|
|
'remove' => 'Odstrániť',
|
|
'add' => 'Pridať',
|
|
'fullscreen' => 'Celá obrazovka',
|
|
|
|
// Sort Options
|
|
'sort_options' => 'Možnosti triedenia',
|
|
'sort_direction_toggle' => 'Zoradiť smerový prepínač',
|
|
'sort_ascending' => 'Zoradiť vzostupne',
|
|
'sort_descending' => 'Zoradiť zostupne',
|
|
'sort_name' => 'Meno',
|
|
'sort_default' => 'Default',
|
|
'sort_created_at' => 'Dátum vytvorenia',
|
|
'sort_updated_at' => 'Aktualizované dňa',
|
|
|
|
// Misc
|
|
'deleted_user' => 'Odstránený používateľ',
|
|
'no_activity' => 'Žiadna aktivita na zobrazenie',
|
|
'no_items' => 'Žiadne položky nie sú dostupné',
|
|
'back_to_top' => 'Späť nahor',
|
|
'toggle_details' => 'Prepnúť detaily',
|
|
'toggle_thumbnails' => 'Prepnúť náhľady',
|
|
'details' => 'Podrobnosti',
|
|
'grid_view' => 'Zobrazenie v mriežke',
|
|
'list_view' => 'Zobraziť ako zoznam',
|
|
'default' => 'Predvolené',
|
|
'breadcrumb' => 'Breadcrumb',
|
|
|
|
// Header
|
|
'header_menu_expand' => 'Expand Header Menu',
|
|
'profile_menu' => 'Menu profilu',
|
|
'view_profile' => 'Zobraziť profil',
|
|
'edit_profile' => 'Upraviť profil',
|
|
'dark_mode' => 'Tmavý režim',
|
|
'light_mode' => 'Svetlý režim',
|
|
|
|
// Layout tabs
|
|
'tab_info' => 'Informácie',
|
|
'tab_info_label' => 'Tab: Show Secondary Information',
|
|
'tab_content' => 'Obsah',
|
|
'tab_content_label' => 'Tab: Show Primary Content',
|
|
|
|
// Email Content
|
|
'email_action_help' => 'Ak máte problém klinkúť na tlačidlo ":actionText", skopírujte a vložte URL uvedenú nižšie do Vášho prehliadača:',
|
|
'email_rights' => 'Všetky práva vyhradené',
|
|
|
|
// Footer Link Options
|
|
// Not directly used but available for convenience to users.
|
|
'privacy_policy' => 'Privacy Policy',
|
|
'terms_of_service' => 'Terms of Service',
|
|
];
|