-
-
Notifications
You must be signed in to change notification settings - Fork 833
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Added Finnish translations. * add changelog entry * prettier --------- Co-authored-by: konnorrogers <[email protected]>
- Loading branch information
1 parent
4e09bac
commit 8806672
Showing
2 changed files
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
import { registerTranslation } from '@shoelace-style/localize'; | ||
import type { Translation } from '../utilities/localize.js'; | ||
|
||
const translation: Translation = { | ||
$code: 'fi', | ||
$name: 'Suomi', | ||
$dir: 'ltr', | ||
|
||
carousel: 'Karuselli', | ||
clearEntry: 'Poista merkintä', | ||
close: 'Sulje', | ||
copied: 'Kopioitu', | ||
copy: 'Kopioi', | ||
currentValue: 'Nykyinen arvo', | ||
error: 'Virhe', | ||
goToSlide: (slide, count) => `Siirry diaan ${slide} / ${count}`, | ||
hidePassword: 'Piilota salasana', | ||
loading: 'Ladataan', | ||
nextSlide: 'Seuraava dia', | ||
numOptionsSelected: num => { | ||
if (num === 0) return 'Ei valittuja vaihtoehtoja'; | ||
if (num === 1) return 'Yksi vaihtoehto valittu'; | ||
return `${num} vaihtoehtoa valittu`; | ||
}, | ||
previousSlide: 'Edellinen dia', | ||
progress: 'Edistyminen', | ||
remove: 'Poista', | ||
resize: 'Muuta kokoa', | ||
scrollToEnd: 'Vieritä loppuun', | ||
scrollToStart: 'Vieritä alkuun', | ||
selectAColorFromTheScreen: 'Valitse väri näytöltä', | ||
showPassword: 'Näytä salasana', | ||
slideNum: slide => `Dia ${slide}`, | ||
toggleColorFormat: 'Vaihda väriformaattia' | ||
}; | ||
|
||
registerTranslation(translation); | ||
|
||
export default translation; |