8000 feat(locale): add Finnish language by Pwntus Β· Pull Request #3013 Β· nuxt/ui Β· GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

feat(locale): add Finnish language #3013

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 it } from './it'
export { default as ja } from './ja'
Expand Down
Loading
0