Skip to content

Commit

Permalink
feat(locale): add Finnish language (#3013)
Browse files Browse the repository at this point in the history
  • Loading branch information
Pwntus authored Jan 6, 2025
1 parent a18ad84 commit c770ae1
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/fi.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
import { defineLocale } from '../composables/defineLocale'

export default defineLocale({
name: 'Suomeksi',
code: 'fi',
messages: {
inputMenu: {
noMatch: 'Ei vastaavia tietoja',
noData: 'Ei tietoja',
create: 'Luo "{label}"'
},
calendar: {
prevYear: 'Edellinen vuosi',
nextYear: 'Seuraava vuosi',
prevMonth: 'Edellinen kuukausi',
nextMonth: 'Seuraava kuukausi'
},
inputNumber: {
increment: 'Kasvata',
decrement: 'Vähennä'
},
commandPalette: {
noMatch: 'Ei vastaavia tietoja',
noData: 'Ei tietoja',
close: 'Sulje'
},
selectMenu: {
noMatch: 'Ei vastaavia tietoja',
noData: 'Ei tietoja',
create: 'Luo "{label}"'
},
toast: {
close: 'Sulje'
},
carousel: {
prev: 'Edellinen',
next: 'Seuraava',
goto: 'Siirry sivulle {slide}'
},
modal: {
close: 'Sulje'
},
slideover: {
close: 'Sulje'
},
alert: {
close: 'Sulje'
},
table: {
noData: 'Ei tietoja'
}
}
})
1 change: 1 addition & 0 deletions src/runtime/locale/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ export { default as el } from './el'
export { default as en } from './en'
export { default as es } from './es'
export { default as fa_ir } from './fa_ir'
export { default as fi } from './fi'
export { default as fr } from './fr'
export { default as id } from './id'
export { default as it } from './it'
Expand Down

0 comments on commit c770ae1

Please sign in to comment.