-
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 Turkish (#11721)
h/t @Catalonium
- Loading branch information
1 parent
700f2b4
commit 6bc498f
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": "İlişkilendirmeyi aç/kapat", | ||
"AttributionControl.MapFeedback": "Harita geri bildirimi", | ||
"FullscreenControl.Enter": "Tam ekran yap", | ||
"FullscreenControl.Exit": "Tam ekrandan çık", | ||
"GeolocateControl.FindMyLocation": "Konumumu bul", | ||
"GeolocateControl.LocationNotAvailable": "Konum bulunamadı", | ||
"LogoControl.Title": "Mapbox logosu", | ||
"Map.Title": "Harita", | ||
"NavigationControl.ResetBearing": "Yönü kuzeye sıfırla", | ||
"NavigationControl.ZoomIn": "Yakınlaştır", | ||
"NavigationControl.ZoomOut": "Uzaklaştır", | ||
"ScaleControl.Feet": "ft", | ||
"ScaleControl.Meters": "m", | ||
"ScaleControl.Kilometers": "km", | ||
"ScaleControl.Miles": "mi", | ||
"ScaleControl.NauticalMiles": "nm", | ||
"ScrollZoomBlocker.CtrlMessage": "Ctrl + mouse orta tuşlarını kullanarak haritayı yakınlaştırıp uzaklaştırabilirsiniz", | ||
"ScrollZoomBlocker.CmdMessage": "⌘ + mouse orta tuşlarını kullanarak haritayı yakınlaştırıp uzaklaştırabilirsiniz", | ||
"TouchPanBlocker.Message": "İki parmağınızı kullanarak haritayı hareket ettirebilirsiniz" | ||
}; | ||
|
||
export default locale; |