Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
131 changes: 131 additions & 0 deletions src/runtime/locale/hr.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
import type { Messages } from '../types'
import { defineLocale } from '../composables/defineLocale'

export default defineLocale<Messages>({
name: 'Hrvatski',
code: 'hr',
messages: {
alert: {
close: 'Zatvori'
},
authForm: {
hidePassword: 'Sakrij lozinku',
showPassword: 'Prikaži lozinku',
submit: 'Nastavi'
},
banner: {
close: 'Zatvori'
},
calendar: {
nextMonth: 'Sljedeći mjesec',
nextYear: 'Sljedeća godina',
prevMonth: 'Prethodni mjesec',
prevYear: 'Prethodna godina'
},
carousel: {
dots: 'Odaberite slajd za prikaz',
goto: 'Idi na slajd {slide}',
next: 'Sljedeći',
prev: 'Prethodni'
},
chatPrompt: {
placeholder: 'Upišite svoju poruku ovdje…'
},
chatPromptSubmit: {
label: 'Pošalji upit'
},
colorMode: {
dark: 'Tamno',
light: 'Svijetlo',
switchToDark: 'Prebaci na tamni način rada',
switchToLight: 'Prebaci na svijetli način rada',
system: 'Sustav'
},
commandPalette: {
back: 'Natrag',
close: 'Zatvori',
noData: 'Nema podataka',
noMatch: 'Nema odgovarajućih podataka',
placeholder: 'Upišite naredbu ili pretraživanje…'
},
contentSearch: {
links: 'Poveznice',
theme: 'Tema'
},
contentSearchButton: {
label: 'Pretraživanje…'
},
contentToc: {
title: 'Na ovoj stranici'
},
dashboardSearch: {
theme: 'Tema'
},
dashboardSearchButton: {
label: 'Pretraživanje…'
},
dashboardSidebarCollapse: {
collapse: 'Smanji bočnu traku',
expand: 'Proširi bočnu traku'
},
dashboardSidebarToggle: {
close: 'Zatvori bočnu traku',
open: 'Otvori bočnu traku'
},
error: {
clear: 'Natrag na početnu'
},
fileUpload: {
removeFile: 'Ukloni {filename}'
},
header: {
close: 'Zatvori izbornik',
open: 'Otvori izbornik'
},
inputMenu: {
create: 'Stvori "{label}"',
noData: 'Nema podataka',
noMatch: 'Nema odgovarajućih podataka'
},
inputNumber: {
decrement: 'Smanji',
increment: 'Povećaj'
},
modal: {
close: 'Zatvori'
},
pricingTable: {
caption: 'Usporedba cjenovnih planova'
},
prose: {
codeCollapse: {
closeText: 'Smanji',
name: 'kod',
openText: 'Proširi'
},
collapsible: {
closeText: 'Sakrij',
name: 'svojstva',
openText: 'Prikaži'
},
pre: {
copy: 'Kopiraj kod u međuspremnik'
}
},
selectMenu: {
create: 'Stvori "{label}"',
noData: 'Nema podataka',
noMatch: 'Nema odgovarajućih podataka',
search: 'Pretraživanje…'
},
slideover: {
close: 'Zatvori'
},
table: {
noData: 'Nema podataka'
},
toast: {
close: 'Zatvori'
}
}
})
1 change: 1 addition & 0 deletions src/runtime/locale/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ export { default as fi } from './fi'
export { default as fr } from './fr'
export { default as he } from './he'
export { default as hi } from './hi'
export { default as hr } from './hr'
export { default as hu } from './hu'
export { default as hy } from './hy'
export { default as id } from './id'
Expand Down
Loading