Skip to content

Commit

Permalink
feat(locale): add Estonian language
Browse files Browse the repository at this point in the history
  • Loading branch information
Bitcreep committed Jan 7, 2025
1 parent cc50ef6 commit 19d47df
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';

Check failure on line 1 in src/runtime/locale/et.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Extra semicolon

export default defineLocale({
name: 'Eesti',
code: 'et',
messages: {
inputMenu: {
noMatch: 'Pole vastavaid andmeid',
noData: 'Pole andmeid',
create: 'Loo "{label}"',

Check failure on line 10 in src/runtime/locale/et.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Unexpected trailing comma
},
calendar: {
prevYear: 'Eelmine aasta',
nextYear: 'Järgmine aasta',
prevMonth: 'Eelmine kuu',
nextMonth: 'Järgmine kuu',

Check failure on line 16 in src/runtime/locale/et.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Unexpected trailing comma
},
inputNumber: {
increment: 'Suurenda',
decrement: 'Vähenda',

Check failure on line 20 in src/runtime/locale/et.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Unexpected trailing comma
},
commandPalette: {
noMatch: 'Pole vastavaid andmeid',
noData: 'Pole andmeid',
close: 'Sulge',

Check failure on line 25 in src/runtime/locale/et.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Unexpected trailing comma
},
selectMenu: {
noMatch: 'Pole vastavaid andmeid',
noData: 'Pole andmeid',
create: 'Loo "{label}"',

Check failure on line 30 in src/runtime/locale/et.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Unexpected trailing comma
},
toast: {
close: 'Sulge',

Check failure on line 33 in src/runtime/locale/et.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Unexpected trailing comma
},
carousel: {
prev: 'Eel',
next: 'Järg',
goto: 'Mine slaidile {slide}',

Check failure on line 38 in src/runtime/locale/et.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Unexpected trailing comma
},
modal: {
close: 'Sulge',

Check failure on line 41 in src/runtime/locale/et.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Unexpected trailing comma
},
slideover: {
close: 'Sulge',

Check failure on line 44 in src/runtime/locale/et.ts

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Unexpected trailing comma
},
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 19d47df

Please sign in to comment.