-
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 Korean (#11706)
h/t @cs09g
- Loading branch information
1 parent
319e412
commit 0346f76
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": "맵박스 로고", | ||
"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; |