-
Notifications
You must be signed in to change notification settings - Fork 2.2k
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 Simplified Chinese (#11723)
- Loading branch information
1 parent
1dba246
commit 95c2464
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; |