Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add localization for UI strings in Korean #11706

Merged
merged 2 commits into from
Apr 13, 2022
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions src/ui/locales/ko.js
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": "방위를 북쪽으로 재설정",
yseo93 marked this conversation as resolved.
Show resolved Hide resolved
"NavigationControl.ZoomIn": "확대",
"NavigationControl.ZoomOut": "축소",
"ScaleControl.Feet": "피트",
"ScaleControl.Meters": "중",
stepankuzmin marked this conversation as resolved.
Show resolved Hide resolved
"ScaleControl.Kilometers": "km",
stepankuzmin marked this conversation as resolved.
Show resolved Hide resolved
"ScaleControl.Miles": "나",
stepankuzmin marked this conversation as resolved.
Show resolved Hide resolved
"ScaleControl.NauticalMiles": "nm",
stepankuzmin marked this conversation as resolved.
Show resolved Hide resolved
"ScrollZoomBlocker.CtrlMessage": "ctrl + 스크롤을 사용하여 지도 확대/축소",
"ScrollZoomBlocker.CmdMessage": "⌘ + 스크롤을 사용하여 지도를 확대/축소하세요.",
stepankuzmin marked this conversation as resolved.
Show resolved Hide resolved
"TouchPanBlocker.Message": "두 손가락을 사용하여 지도 이동"
};

export default locale;