mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
feat(locale): add Estonian language (#3036)
Co-authored-by: Benjamin Canac <canacb1@gmail.com>
This commit is contained in:
53
src/runtime/locale/et.ts
Normal file
53
src/runtime/locale/et.ts
Normal file
@@ -0,0 +1,53 @@
|
||||
import { defineLocale } from '../composables/defineLocale'
|
||||
|
||||
export default defineLocale({
|
||||
name: 'Eesti',
|
||||
code: 'et',
|
||||
messages: {
|
||||
inputMenu: {
|
||||
noMatch: 'Pole vastavaid andmeid',
|
||||
noData: 'Pole andmeid',
|
||||
create: 'Loo "{label}"'
|
||||
},
|
||||
calendar: {
|
||||
prevYear: 'Eelmine aasta',
|
||||
nextYear: 'Järgmine aasta',
|
||||
prevMonth: 'Eelmine kuu',
|
||||
nextMonth: 'Järgmine kuu'
|
||||
},
|
||||
inputNumber: {
|
||||
increment: 'Suurenda',
|
||||
decrement: 'Vähenda'
|
||||
},
|
||||
commandPalette: {
|
||||
noMatch: 'Pole vastavaid andmeid',
|
||||
noData: 'Pole andmeid',
|
||||
close: 'Sulge'
|
||||
},
|
||||
selectMenu: {
|
||||
noMatch: 'Pole vastavaid andmeid',
|
||||
noData: 'Pole andmeid',
|
||||
create: 'Loo "{label}"'
|
||||
},
|
||||
toast: {
|
||||
close: 'Sulge'
|
||||
},
|
||||
carousel: {
|
||||
prev: 'Eel',
|
||||
next: 'Järg',
|
||||
goto: 'Mine slaidile {slide}'
|
||||
},
|
||||
modal: {
|
||||
close: 'Sulge'
|
||||
},
|
||||
slideover: {
|
||||
close: 'Sulge'
|
||||
},
|
||||
alert: {
|
||||
close: 'Sulge'
|
||||
},
|
||||
table: {
|
||||
noData: 'Pole andmeid'
|
||||
}
|
||||
}
|
||||
})
|
||||
@@ -3,6 +3,7 @@ export { default as cs } from './cs'
|
||||
export { default as da } from './da'
|
||||
export { default as de } from './de'
|
||||
export { default as el } from './el'
|
||||
export { default as et } from './et'
|
||||
export { default as en } from './en'
|
||||
export { default as es } from './es'
|
||||
export { default as fa_ir } from './fa_ir'
|
||||
|
||||
Reference in New Issue
Block a user