Skip to content

Commit

Permalink
fix(locale): fix trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Bitcreep committed Jan 7, 2025
1 parent 19d47df commit db1d89a
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions src/runtime/locale/et.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { defineLocale } from '../composables/defineLocale';
import { defineLocale } from '../composables/defineLocale'

export default defineLocale({
name: 'Eesti',
Expand All @@ -7,47 +7,47 @@ export default defineLocale({
inputMenu: {
noMatch: 'Pole vastavaid andmeid',
noData: 'Pole andmeid',
create: 'Loo "{label}"',
create: 'Loo "{label}"'
},
calendar: {
prevYear: 'Eelmine aasta',
nextYear: 'Järgmine aasta',
prevMonth: 'Eelmine kuu',
nextMonth: 'Järgmine kuu',
nextMonth: 'Järgmine kuu'
},
inputNumber: {
increment: 'Suurenda',
decrement: 'Vähenda',
decrement: 'Vähenda'
},
commandPalette: {
noMatch: 'Pole vastavaid andmeid',
noData: 'Pole andmeid',
close: 'Sulge',
close: 'Sulge'
},
selectMenu: {
noMatch: 'Pole vastavaid andmeid',
noData: 'Pole andmeid',
create: 'Loo "{label}"',
create: 'Loo "{label}"'
},
toast: {
close: 'Sulge',
close: 'Sulge'
},
carousel: {
prev: 'Eel',
next: 'Järg',
goto: 'Mine slaidile {slide}',
goto: 'Mine slaidile {slide}'
},
modal: {
close: 'Sulge',
close: 'Sulge'
},
slideover: {
close: 'Sulge',
close: 'Sulge'
},
alert: {
close: 'Sulge',
close: 'Sulge'
},
table: {
noData: 'Pole andmeid',
},
},
});
noData: 'Pole andmeid'
}
}
});

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

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Extra semicolon

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

View workflow job for this annotation

GitHub Actions / build (ubuntu-latest, 22)

Newline required at end of file but not found

0 comments on commit db1d89a

Please sign in to comment.