Skip to content

Commit

Permalink
feat(locale): add Estonian language (#3036)
Browse files Browse the repository at this point in the history
Co-authored-by: Benjamin Canac <[email protected]>
  • Loading branch information
Bitcreep and benjamincanac authored Jan 8, 2025
1 parent 446a9f7 commit 01bf99e
Show file tree
Hide file tree
Showing 2 changed files with 54 additions and 0 deletions.
53 changes: 53 additions & 0 deletions src/runtime/locale/et.ts
Original file line number Diff line number Diff line change
@@ -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'
}
}
})
1 change: 1 addition & 0 deletions src/runtime/locale/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down

0 comments on commit 01bf99e

Please sign in to comment.