-
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 Danish (#11693)
h/t @DorkMatter
- Loading branch information
1 parent
6044c5c
commit e6fadd2
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": "Slå attribuering til/fra", | ||
"AttributionControl.MapFeedback": "Feedback om kortet", | ||
"FullscreenControl.Enter": "Skift til fuld skærm", | ||
"FullscreenControl.Exit": "Luk fuld skærm", | ||
"GeolocateControl.FindMyLocation": "Find min position", | ||
"GeolocateControl.LocationNotAvailable": "Position utilgængelig", | ||
"LogoControl.Title": "Mapbox logo", | ||
"Map.Title": "Kort", | ||
"NavigationControl.ResetBearing": "Nulstil pejling til nord", | ||
"NavigationControl.ZoomIn": "Zoom ind", | ||
"NavigationControl.ZoomOut": "Zoom ud", | ||
"ScaleControl.Feet": "ft", | ||
"ScaleControl.Meters": "m", | ||
"ScaleControl.Kilometers": "km", | ||
"ScaleControl.Miles": "mil", | ||
"ScaleControl.NauticalMiles": "sømil", | ||
"ScrollZoomBlocker.CtrlMessage": "Brug ctrl + scroll for at zoome ind på kortet", | ||
"ScrollZoomBlocker.CmdMessage": "Brug ⌘ + scroll for at zoome ind på kortet", | ||
"TouchPanBlocker.Message": "Brug to fingre til at flytte kortet" | ||
}; | ||
|
||
export default locale; |