-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add localization for UI strings in Finnish (#11698)
h/t @OzQu and @aleksigron
- Loading branch information
1 parent
af67f0d
commit 4a6b651
Showing
1 changed file
with
25 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
// @flow | ||
|
||
const locale = { | ||
"AttributionControl.ToggleAttribution": "Käytä nimeämistä", | ||
"AttributionControl.MapFeedback": "Karttapalaute", | ||
"FullscreenControl.Enter": "Siirry koko näytön tilaan", | ||
"FullscreenControl.Exit": "Poistu koko näytöstä", | ||
"GeolocateControl.FindMyLocation": "Etsi sijaintini", | ||
"GeolocateControl.LocationNotAvailable": "Sijainti ei saatavilla", | ||
"LogoControl.Title": "Mapboxin logo", | ||
"Map.Title": "Kartta", | ||
"NavigationControl.ResetBearing": "Palauta suuntima pohjoiseen", | ||
"NavigationControl.ZoomIn": "Lähennä", | ||
"NavigationControl.ZoomOut": "Loitonna", | ||
"ScaleControl.Feet": "ft", | ||
"ScaleControl.Meters": "m", | ||
"ScaleControl.Kilometers": "km", | ||
"ScaleControl.Miles": "mi", | ||
"ScaleControl.NauticalMiles": "nm", | ||
"ScrollZoomBlocker.CtrlMessage": "Käytä ctrl + rullaa zoomataksesi karttaa", | ||
"ScrollZoomBlocker.CmdMessage": "Käytä ⌘ + rullaa zoomataksesi karttaa", | ||
"TouchPanBlocker.Message": "Siirrä karttaa kahdella sormella" | ||
}; | ||
|
||
export default locale; |