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.7 KiB
PHP
90 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* Common elements found throughout many areas of BookStack.
|
|
*/
|
|
return [
|
|
|
|
// Buttons
|
|
'cancel' => 'Otkaži',
|
|
'confirm' => 'Potvrdi',
|
|
'back' => 'Nazad',
|
|
'save' => 'Spremi',
|
|
'continue' => 'Nastavi',
|
|
'select' => 'Odaberi',
|
|
'toggle_all' => 'Prebaci sve',
|
|
'more' => 'Više',
|
|
|
|
// Form Labels
|
|
'name' => 'Ime',
|
|
'description' => 'Opis',
|
|
'role' => 'Uloga',
|
|
'cover_image' => 'Naslovna slika',
|
|
'cover_image_description' => 'Ova slika treba biti približno 440x250px.',
|
|
|
|
// Actions
|
|
'actions' => 'Akcije',
|
|
'view' => 'Prikaz',
|
|
'view_all' => 'Prikaži sve',
|
|
'create' => 'Kreiraj',
|
|
'update' => 'Ažuriraj',
|
|
'edit' => 'Uredi',
|
|
'sort' => 'Sortiraj',
|
|
'move' => 'Pomjeri',
|
|
'copy' => 'Kopiraj',
|
|
'reply' => 'Odgovori',
|
|
'delete' => 'Izbriši',
|
|
'delete_confirm' => 'Potvrdi brisanje',
|
|
'search' => 'Traži',
|
|
'search_clear' => 'Očisti pretragu',
|
|
'reset' => 'Resetuj',
|
|
'remove' => 'Ukloni',
|
|
'add' => 'Dodaj',
|
|
'fullscreen' => 'Prikaz preko čitavog ekrana',
|
|
|
|
// Sort Options
|
|
'sort_options' => 'Opcije sortiranja',
|
|
'sort_direction_toggle' => 'Prebacivanje smjera sortiranja',
|
|
'sort_ascending' => 'Sortiraj uzlazno',
|
|
'sort_descending' => 'Sortiraj silazno',
|
|
'sort_name' => 'Ime',
|
|
'sort_default' => 'Default',
|
|
'sort_created_at' => 'Datum kreiranja',
|
|
'sort_updated_at' => 'Datum ažuriranja',
|
|
|
|
// Misc
|
|
'deleted_user' => 'Obrisani korisnik',
|
|
'no_activity' => 'Nema aktivnosti za prikazivanje',
|
|
'no_items' => 'Nema dostupnih stavki',
|
|
'back_to_top' => 'Povratak na vrh',
|
|
'toggle_details' => 'Vidi detalje',
|
|
'toggle_thumbnails' => 'Vidi prikaze slika',
|
|
'details' => 'Detalji',
|
|
'grid_view' => 'Prikaz rešetke',
|
|
'list_view' => 'Prikaz liste',
|
|
'default' => 'Početne postavke',
|
|
'breadcrumb' => 'Navigacijske stavke',
|
|
|
|
// Header
|
|
'header_menu_expand' => 'Expand Header Menu',
|
|
'profile_menu' => 'Meni profila',
|
|
'view_profile' => 'Pogledaj profil',
|
|
'edit_profile' => 'Izmjeni profil',
|
|
'dark_mode' => 'Tamni način rada',
|
|
'light_mode' => 'Svijetli način rada',
|
|
|
|
// Layout tabs
|
|
'tab_info' => 'Informacije',
|
|
'tab_info_label' => 'Tab: Show Secondary Information',
|
|
'tab_content' => 'Sadržaj',
|
|
'tab_content_label' => 'Tab: Show Primary Content',
|
|
|
|
// Email Content
|
|
'email_action_help' => 'Ukoliko imate poteškoća sa pritiskom na ":actionText" dugme, kopirajte i zaljepite URL koji se nalazi ispod u vaš web pretraživač:',
|
|
'email_rights' => 'Sva prava pridržana',
|
|
|
|
// Footer Link Options
|
|
// Not directly used but available for convenience to users.
|
|
'privacy_policy' => 'Pravila o privatnosti',
|
|
'terms_of_service' => 'Uslovi korištenja',
|
|
];
|