-
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 Ukrainian (#11689)
- Loading branch information
1 parent
7739239
commit 1dba246
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": "Показати атрибуцію", | ||
"AttributionControl.MapFeedback": "Відгук про мапу", | ||
"FullscreenControl.Enter": "Перейти у повноекранний режим", | ||
"FullscreenControl.Exit": "Вийти з повноекранного режиму", | ||
"GeolocateControl.FindMyLocation": "Показати моє місцезнаходження", | ||
"GeolocateControl.LocationNotAvailable": "Немає даних про місцезнаходження", | ||
"LogoControl.Title": "Логотип Mapbox", | ||
"Map.Title": "Мапа", | ||
"NavigationControl.ResetBearing": "Орієнтувати мапу на північ", | ||
"NavigationControl.ZoomIn": "Наблизити", | ||
"NavigationControl.ZoomOut": "Віддалити", | ||
"ScaleControl.Feet": "фт", | ||
"ScaleControl.Meters": "м", | ||
"ScaleControl.Kilometers": "км", | ||
"ScaleControl.Miles": "миль", | ||
"ScaleControl.NauticalMiles": "м. миль", | ||
"ScrollZoomBlocker.CtrlMessage": "Прокрутіть з натиснутим Ctrl для масштабування мапи", | ||
"ScrollZoomBlocker.CmdMessage": "Прокрутіть з натиснутим ⌘ для масштабування мапи", | ||
"TouchPanBlocker.Message": "Рухайте мапу двома пальцями" | ||
}; | ||
|
||
export default locale; |