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.9 KiB
PHP
90 lines
2.9 KiB
PHP
<?php
|
|
/**
|
|
* Common elements found throughout many areas of BookStack.
|
|
*/
|
|
return [
|
|
|
|
// Buttons
|
|
'cancel' => 'Mégsem',
|
|
'confirm' => 'Megerősítés',
|
|
'back' => 'Vissza',
|
|
'save' => 'Mentés',
|
|
'continue' => 'Tovább',
|
|
'select' => 'Kiválasztás',
|
|
'toggle_all' => 'Összes átkapcsolása',
|
|
'more' => 'Több',
|
|
|
|
// Form Labels
|
|
'name' => 'Név',
|
|
'description' => 'Leírás',
|
|
'role' => 'Szerepkör',
|
|
'cover_image' => 'Borítókép',
|
|
'cover_image_description' => 'A kép méretének kb. 440x250px-nek kell lennie.',
|
|
|
|
// Actions
|
|
'actions' => 'Műveletek',
|
|
'view' => 'Megtekintés',
|
|
'view_all' => 'Összes megtekintése',
|
|
'create' => 'Létrehozás',
|
|
'update' => 'Frissítés',
|
|
'edit' => 'Szerkesztés',
|
|
'sort' => 'Rendezés',
|
|
'move' => 'Áthelyezés',
|
|
'copy' => 'Másolás',
|
|
'reply' => 'Válasz',
|
|
'delete' => 'Törlés',
|
|
'delete_confirm' => 'Törlés megerősítése',
|
|
'search' => 'Keresés',
|
|
'search_clear' => 'Keresés törlése',
|
|
'reset' => 'Visszaállítás',
|
|
'remove' => 'Eltávolítás',
|
|
'add' => 'Hozzáadás',
|
|
'fullscreen' => 'Teljes képernyő',
|
|
|
|
// Sort Options
|
|
'sort_options' => 'Rendezési beállítások',
|
|
'sort_direction_toggle' => 'Rendezési irány váltása',
|
|
'sort_ascending' => 'Növekvő sorrend',
|
|
'sort_descending' => 'Csökkenő sorrend',
|
|
'sort_name' => 'Név',
|
|
'sort_default' => 'Default',
|
|
'sort_created_at' => 'Létrehozás dátuma',
|
|
'sort_updated_at' => 'Frissítés dátuma',
|
|
|
|
// Misc
|
|
'deleted_user' => 'Törölt felhasználó',
|
|
'no_activity' => 'Nincs megjeleníthető aktivitás',
|
|
'no_items' => 'Nincsenek elérhető elemek',
|
|
'back_to_top' => 'Oldal eleje',
|
|
'toggle_details' => 'Részletek átkapcsolása',
|
|
'toggle_thumbnails' => 'Bélyegképek átkapcsolása',
|
|
'details' => 'Részletek',
|
|
'grid_view' => 'Rács nézet',
|
|
'list_view' => 'Lista nézet',
|
|
'default' => 'Alapértelmezés szerinti',
|
|
'breadcrumb' => 'Morzsa',
|
|
|
|
// Header
|
|
'header_menu_expand' => 'Expand Header Menu',
|
|
'profile_menu' => 'Profil menü',
|
|
'view_profile' => 'Profil megtekintése',
|
|
'edit_profile' => 'Profil szerkesztése',
|
|
'dark_mode' => 'Sötét mód',
|
|
'light_mode' => 'Világos mód',
|
|
|
|
// Layout tabs
|
|
'tab_info' => 'Információ',
|
|
'tab_info_label' => 'Tab: Show Secondary Information',
|
|
'tab_content' => 'Tartalom',
|
|
'tab_content_label' => 'Tab: Show Primary Content',
|
|
|
|
// Email Content
|
|
'email_action_help' => 'Probléma esetén a lenti ":actionText" gombra kell kattintani, majd ki kell másolni a lenti webcímet és be kell illeszteni egy böngészőbe:',
|
|
'email_rights' => 'Minden jog fenntartva',
|
|
|
|
// Footer Link Options
|
|
// Not directly used but available for convenience to users.
|
|
'privacy_policy' => 'Privacy Policy',
|
|
'terms_of_service' => 'Terms of Service',
|
|
];
|