Update to iD v2.15.4
This commit is contained in:
parent
61faea262a
commit
241f12df40
57 changed files with 3604 additions and 685 deletions
149
config/application.yml
Normal file
149
config/application.yml
Normal file
|
@ -0,0 +1,149 @@
|
|||
defaults: &defaults
|
||||
# The server protocol and host
|
||||
server_protocol: "http"
|
||||
server_url: "openstreetmap.example.com"
|
||||
# Publisher
|
||||
#publisher_url: ""
|
||||
# The generator
|
||||
generator: "OpenStreetMap server"
|
||||
copyright_owner: "OpenStreetMap and contributors"
|
||||
attribution_url: "http://www.openstreetmap.org/copyright"
|
||||
license_url: "http://opendatacommons.org/licenses/odbl/1-0/"
|
||||
# Support email address
|
||||
support_email: "openstreetmap@example.com"
|
||||
# Sender addresses for emails
|
||||
email_from: "OpenStreetMap <openstreetmap@example.com>"
|
||||
email_return_path: "openstreetmap@example.com"
|
||||
# API version
|
||||
api_version: "0.6"
|
||||
# Application status - possible values are:
|
||||
# :online - online and operating normally
|
||||
# :api_readonly - site online but API in read-only mode
|
||||
# :api_offline - site online but API offline
|
||||
# :database_readonly - database and site in read-only mode
|
||||
# :database_offline - database offline with site in emergency mode
|
||||
# :gpx_offline - gpx storage offline
|
||||
status: :online
|
||||
# The maximum area you're allowed to request, in square degrees
|
||||
max_request_area: 0.25
|
||||
# Number of GPS trace/trackpoints returned per-page
|
||||
tracepoints_per_page: 5000
|
||||
# Maximum number of nodes that will be returned by the api in a map request
|
||||
max_number_of_nodes: 50000
|
||||
# Maximum number of nodes that can be in a way (checked on save)
|
||||
max_number_of_way_nodes: 2000
|
||||
# The maximum area you're allowed to request notes from, in square degrees
|
||||
max_note_request_area: 25
|
||||
# Zoom level to use for postcode results from the geocoder
|
||||
postcode_zoom: 15
|
||||
# Zoom level to use for geonames results from the geocoder
|
||||
geonames_zoom: 12
|
||||
# Timeout for API calls in seconds
|
||||
api_timeout: 300
|
||||
# Timeout for web pages in seconds
|
||||
web_timeout: 30
|
||||
# Periods (in hours) which are allowed for user blocks
|
||||
user_block_periods: [0, 1, 3, 6, 12, 24, 48, 96]
|
||||
# Rate limit for message sending
|
||||
max_messages_per_hour: 60
|
||||
# Domain for handling message replies
|
||||
#messages_domain: "messages.openstreetmap.org"
|
||||
# Geonames authentication details
|
||||
#geonames_username: ""
|
||||
# GeoIP database
|
||||
#geoip_database: ""
|
||||
# Users to show as being nearby
|
||||
nearby_users: 30
|
||||
# Max radius, in km, for nearby users
|
||||
nearby_radius: 50
|
||||
# Spam threshold
|
||||
spam_threshold: 50
|
||||
# Default legale (jurisdiction location) for contributor terms
|
||||
default_legale: GB
|
||||
# Location of GPX traces and images
|
||||
gpx_trace_dir: "/home/osm/traces"
|
||||
gpx_image_dir: "/home/osm/images"
|
||||
# Location of data for attachments
|
||||
attachments_dir: ":rails_root/public/attachments"
|
||||
# Log file to use
|
||||
#log_path: ""
|
||||
# Log file to use for logstash
|
||||
#logstash_path: ""
|
||||
# List of memcache servers to use for caching
|
||||
#memcache_servers: []
|
||||
# Enable legacy OAuth 1.0 support
|
||||
oauth_10_support: true
|
||||
# URL of Nominatim instance to use for geocoding
|
||||
nominatim_url: "https://nominatim.openstreetmap.org/"
|
||||
# Default editor
|
||||
default_editor: "id"
|
||||
# OAuth consumer key for Potlatch 2
|
||||
#potlatch2_key: ""
|
||||
# OAuth consumer key for the web site
|
||||
#oauth_key: ""
|
||||
# OAuth consumer key for iD
|
||||
#id_key: ""
|
||||
# Whether to require users to view the CTs before continuing to edit...
|
||||
require_terms_seen: false
|
||||
# Whether to require users to agree to the CTs before editing
|
||||
require_terms_agreed: false
|
||||
# Imagery to return in capabilities as blacklisted
|
||||
imagery_blacklist:
|
||||
# Current Google imagery URLs have google or googleapis in the domain
|
||||
# with a vt or kh endpoint, and x, y and z query parameters
|
||||
- ".*\\.google(apis)?\\..*/(vt|kh)[\\?/].*([xyz]=.*){3}.*"
|
||||
# Blacklist VWorld
|
||||
- "http://xdworld\\.vworld\\.kr:8080/.*"
|
||||
# Blacklist here
|
||||
- ".*\\.here\\.com[/:].*"
|
||||
# URL of Overpass instance to use for feature queries
|
||||
overpass_url: "https://overpass-api.de/api/interpreter"
|
||||
# Routing endpoints
|
||||
graphhopper_url: "https://graphhopper.com/api/1/route"
|
||||
mapquest_directions_url: "https://open.mapquestapi.com/directions/v2/route"
|
||||
osrm_url: "https://router.project-osrm.org/route/v1/driving/"
|
||||
# External authentication credentials
|
||||
#google_auth_id: ""
|
||||
#google_auth_secret: ""
|
||||
#google_openid_realm: ""
|
||||
#facebook_auth_id: ""
|
||||
#facebook_auth_secret: ""
|
||||
#windowslive_auth_id: ""
|
||||
#windowslive_auth_secret: ""
|
||||
#github_auth_id: ""
|
||||
#github_auth_secret: ""
|
||||
#wikipedia_auth_id: ""
|
||||
#wikipedia_auth_secret: ""
|
||||
# MapQuest authentication details
|
||||
#mapquest_key: ""
|
||||
# Thunderforest authentication details
|
||||
#thunderforest_key: ""
|
||||
# Key for generating TOTP tokens
|
||||
#totp_key: ""
|
||||
# Enforce Content-Security-Policy
|
||||
csp_enforce: false
|
||||
# URL for reporting Content-Security-Policy violations
|
||||
#csp_report_url: ""
|
||||
|
||||
development:
|
||||
<<: *defaults
|
||||
|
||||
production:
|
||||
<<: *defaults
|
||||
|
||||
test:
|
||||
<<: *defaults
|
||||
# Geonames credentials for testing
|
||||
geonames_username: "dummy"
|
||||
# External authentication credentials for testing
|
||||
google_auth_id: "dummy"
|
||||
google_auth_secret: "dummy"
|
||||
google_openid_realm: "https://www.openstreetmap.org"
|
||||
facebook_auth_id: "dummy"
|
||||
facebook_auth_secret: "dummy"
|
||||
windowslive_auth_id: "dummy"
|
||||
windowslive_auth_secret: "dummy"
|
||||
github_auth_id: "dummy"
|
||||
github_auth_secret: "dummy"
|
||||
wikipedia_auth_id: "dummy"
|
||||
wikipedia_auth_secret: "dummy"
|
680
vendor/assets/iD/iD.js
vendored
680
vendor/assets/iD/iD.js
vendored
File diff suppressed because one or more lines are too long
2
vendor/assets/iD/iD/img/fa-sprite.svg
vendored
2
vendor/assets/iD/iD/img/fa-sprite.svg
vendored
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 92 KiB After Width: | Height: | Size: 91 KiB |
2
vendor/assets/iD/iD/img/temaki-sprite.svg
vendored
2
vendor/assets/iD/iD/img/temaki-sprite.svg
vendored
File diff suppressed because one or more lines are too long
Before Width: | Height: | Size: 113 KiB After Width: | Height: | Size: 116 KiB |
6
vendor/assets/iD/iD/locales/af.json
vendored
6
vendor/assets/iD/iD/locales/af.json
vendored
|
@ -327,12 +327,6 @@
|
|||
"historic": {
|
||||
"label": "Tipe"
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Steilte"
|
||||
},
|
||||
|
|
93
vendor/assets/iD/iD/locales/ar.json
vendored
93
vendor/assets/iD/iD/locales/ar.json
vendored
|
@ -641,7 +641,7 @@
|
|||
"all_members": "كل اﻷعضاء",
|
||||
"all_relations": "كل العلاقات",
|
||||
"add_to_relation": "إضافة إلى علاقة",
|
||||
"new_relation": "علاقة جديدة....",
|
||||
"new_relation": "علاقة جديدة...",
|
||||
"choose_relation": "اختر العلاقة الأم",
|
||||
"role": "القاعدة",
|
||||
"choose": "اختر نوع العنصر",
|
||||
|
@ -782,7 +782,7 @@
|
|||
"tooltip": "مباني، ملاجئ، مرائب، الخ"
|
||||
},
|
||||
"building_parts": {
|
||||
"description": "أجزاء بناء"
|
||||
"description": "أجزاء المبنى"
|
||||
},
|
||||
"indoor": {
|
||||
"description": "عناصر داخل المبنى",
|
||||
|
@ -859,6 +859,7 @@
|
|||
},
|
||||
"restore": {
|
||||
"heading": "لديك تغييرات غير محفوظة",
|
||||
"description": "هل ترغب في استعادة التغييرات الغير محفوظة من جلسة التعديل السابقة؟",
|
||||
"restore": "استعادة تغييراتي",
|
||||
"reset": "تجاهل تغييراتي"
|
||||
},
|
||||
|
@ -979,19 +980,24 @@
|
|||
"this_relation": "هذه العلاقة",
|
||||
"this_oneway": "هذا الطريق وحيد الاتجاه",
|
||||
"this_highway": "هذا الطريق السريع",
|
||||
"this_waterway": "هذا الممر المائي",
|
||||
"this_railway": "سكة الحديد هذه",
|
||||
"this_waterway": "هذا المجرى المائي",
|
||||
"this_cycleway": "طريق الدراجات هذا",
|
||||
"this_cycleway_footpath": "طريق الدراجات/مسار المشي هذا",
|
||||
"this_riverbank": "ضفة النهر هذه",
|
||||
"this_crossing": "هذا المعبر",
|
||||
"this_railway_crossing": "مزلقان سكة الحديد هذا",
|
||||
"this_bridge": "هذا الجسر",
|
||||
"this_tunnel": "هذا النفق",
|
||||
"this_boundary": "هذه الحدود",
|
||||
"this_turn_restriction": "قيد الانعطاف هذا",
|
||||
"this_roundabout": "هذا الدوران",
|
||||
"this_mini_roundabout": "هذا الدوران الصغير",
|
||||
"this_track": "هذا المسار",
|
||||
"this_feature": "هذا العنصر",
|
||||
"highway": "طريق سريع",
|
||||
"railway": "سكة حديد",
|
||||
"waterway": "ممر مائي",
|
||||
"waterway": "مجرى مائي",
|
||||
"cycleway": "طريق دراجات",
|
||||
"cycleway_footpath": "طريق دراجات / طريق مشاة",
|
||||
"riverbank": "ضفاف النهر",
|
||||
|
@ -1025,10 +1031,36 @@
|
|||
"description": "{var1} موسوم بـ \"{var2}\" ويجب أن تكون حلقة مغلقة."
|
||||
},
|
||||
"40": {
|
||||
"title": "اتجاه واحد مستحيل",
|
||||
"description": "العُقدة الأولى {var1} من {var2} غير متصلة بأي طُرق أخرى."
|
||||
},
|
||||
"41": {
|
||||
"description": "العُقدة الأخيرة {var1} من {var2} غير متصلة بأي طُرق أخرى."
|
||||
},
|
||||
"42": {
|
||||
"description": "لا يمكنك الوصول إلى {var1} لأن جميع الطرق القادمة منه هي طرق باتجاه واحد فقط."
|
||||
},
|
||||
"43": {
|
||||
"description": "لا يمكنك الهروب من {var1} لأن جميع الطرق المؤدية إليه هي طُرق باتجاه واحد فقط."
|
||||
},
|
||||
"50": {
|
||||
"title": "غالبا تقاطع",
|
||||
"description": "{var1} قريب جدا ولكنه غير متصل بطريق {var2}."
|
||||
},
|
||||
"60": {
|
||||
"title": "وسم مُهمل",
|
||||
"description": "{var1} يستخدم الوسم المُهمل \"{var2} \". برجاء استخدام \"{var3} \" بدلا من ذلك."
|
||||
},
|
||||
"70": {
|
||||
"title": "وسم مفقود"
|
||||
"title": "وسم مفقود",
|
||||
"description": "{var1} يحتوي وسما فارغا: \"{var2}\"."
|
||||
},
|
||||
"71": {
|
||||
"description": "{var1} لا يحتوي على أوسمة."
|
||||
},
|
||||
"410": {
|
||||
"title": "مشكلة في الموقع",
|
||||
"description": "هناك مشكلة غير محددة بشأن الاتصال بالموقع أو الرابط."
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -1356,7 +1388,8 @@
|
|||
"title": "إصلاح"
|
||||
},
|
||||
"fix_all": {
|
||||
"title": "إصلاح الكل"
|
||||
"title": "إصلاح الكل",
|
||||
"annotation": "تم إصلاح العديد من مشكلات المصادقة."
|
||||
},
|
||||
"almost_junction": {
|
||||
"title": "تقريبا تقاطعات",
|
||||
|
@ -1385,7 +1418,7 @@
|
|||
"reference": "السكك الحديدية التي تقطع المباني ينبغي أن تستخدم جسورًا أو أنفاقًا."
|
||||
},
|
||||
"building-waterway": {
|
||||
"reference": "الممرات المائية التي تقطع المباني ينبغي أن تستخدم أنفاقًا أو طبقات مختلفة."
|
||||
"reference": "المجاري المائية التي تقطع المباني ينبغي أن تستخدم أنفاقًا أو طبقات مختلفة."
|
||||
},
|
||||
"highway-highway": {
|
||||
"reference": "الطُرق المتقاطعة ينبغي أن تستخدم الجسور، أو الأنفاق، أو عُقد التقاطع العادية."
|
||||
|
@ -1394,16 +1427,16 @@
|
|||
"reference": "الطُرق التي تتقاطع مع السكك الحديدية ينبغي أن تستخدم جسورًا، أو أنفاقًا، أو مزلقانات."
|
||||
},
|
||||
"highway-waterway": {
|
||||
"reference": "الطُرق التي تتقاطع مع الممرات المائية ينبغي أن تستخدم جسورًا، أو أنفاقًا، أو مخاضات."
|
||||
"reference": "الطُرق التي تتقاطع مع المجاري المائية ينبغي أن تستخدم جسورًا، أو أنفاقًا، أو مخاضات."
|
||||
},
|
||||
"railway-railway": {
|
||||
"reference": "سكك الحديد المتقاطعة ينبغي أن تكون متصلة أو تستخدم جسورًا أو أنفاقًا."
|
||||
},
|
||||
"railway-waterway": {
|
||||
"reference": "السكك الحديدية التي تتقاطع مع الممرات المائية ينبغي أن تستخدم جسورًا أو أنفاقًا."
|
||||
"reference": "السكك الحديدية التي تتقاطع مع المجاري المائية ينبغي أن تستخدم جسورًا أو أنفاقًا."
|
||||
},
|
||||
"waterway-waterway": {
|
||||
"reference": "الممرات المائية المتقاطعة ينبغي أن تكون متصلة أو أن تستخدم الأنفاق."
|
||||
"reference": "المجاري المائية المتقاطعة ينبغي أن تكون متصلة أو أن تستخدم الأنفاق."
|
||||
},
|
||||
"tunnel-tunnel": {
|
||||
"reference": "الأنفاق المتقاطعة ينبغي أن تستخدم الطبقات المختلفة."
|
||||
|
@ -1504,13 +1537,34 @@
|
|||
},
|
||||
"impossible_oneway": {
|
||||
"title": "اتجاه واحد مستحيل",
|
||||
"tip": "العثور على مشاكل تحديد مسار الوجهة باستخدام عناصر الاتجاه الواحد"
|
||||
"tip": "العثور على مشاكل تحديد مسار الوجهة باستخدام عناصر الاتجاه الواحد",
|
||||
"waterway": {
|
||||
"connected": {
|
||||
"start": {
|
||||
"message": "{feature} تتدفق بعيدا عن مجرى مائي متصل"
|
||||
},
|
||||
"end": {
|
||||
"message": "{feature} تتدفق بعكس اتجاه مجرى مائي متصل"
|
||||
},
|
||||
"reference": "يجب أن تتدفق أجزاء المجرى المائي جميعها في نفس الاتجاه."
|
||||
}
|
||||
},
|
||||
"highway": {
|
||||
"start": {
|
||||
"message": "لا يمكن الوصول إلى {feature}",
|
||||
"reference": "يجب أن يكون الوصول إلى الطُرق ذات الاتجاه الواحد عن طريق طرق أخرى."
|
||||
},
|
||||
"end": {
|
||||
"message": "لا يوجد منفذ لـ {feature}",
|
||||
"reference": "يجب أن تؤدي الطُرق ذات الاتجاه الواحد إلى طُرق أخرى."
|
||||
}
|
||||
}
|
||||
},
|
||||
"unsquare_way": {
|
||||
"message": "{feature} تحتوي أركان غير مربعة",
|
||||
"tip": "العثور على عناصر ذات أركان غير مربعة يمكن رسمها بشكل أفضل",
|
||||
"buildings": {
|
||||
"reference": "المباني ذات الأركان الغير مربعة يمكن رسمها في الغالب بدقة أكثر."
|
||||
"reference": "المباني ذات الأركان غير المربعة يمكن رسمها في الغالب بدقة أكثر."
|
||||
}
|
||||
},
|
||||
"fix": {
|
||||
|
@ -1597,6 +1651,10 @@
|
|||
"title": "وسم كمنفصل",
|
||||
"annotation": "وسمت العناصر القريبة جدا من بعضها كمنفصلة."
|
||||
},
|
||||
"tag_as_unsquare": {
|
||||
"title": "وسم كغير مربعة فعليا",
|
||||
"annotation": "طريق موسوم بأنه يحتوي على أركان غير مربعة."
|
||||
},
|
||||
"tag_this_as_higher": {
|
||||
"title": "وسم هذا كمرتفع"
|
||||
},
|
||||
|
@ -1613,6 +1671,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "استخدم طبقات مختلفة"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "استخدم طبقات أو مستويات مختلفة"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "استخدم مستويات مختلفة"
|
||||
},
|
||||
|
@ -1891,7 +1952,7 @@
|
|||
"pause": "Pause",
|
||||
"pgdn": "PgDn",
|
||||
"pgup": "PgUp",
|
||||
"return": "رجوع",
|
||||
"return": "Return",
|
||||
"shift": "Shift",
|
||||
"space": "Space"
|
||||
},
|
||||
|
@ -2798,12 +2859,6 @@
|
|||
"undefined": "لا"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "انحدار"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/ast.json
vendored
6
vendor/assets/iD/iD/locales/ast.json
vendored
|
@ -1214,12 +1214,6 @@
|
|||
"label": "Númberu d'aros",
|
||||
"placeholder": "1, 2, 4..."
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Pendiente"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/bg.json
vendored
6
vendor/assets/iD/iD/locales/bg.json
vendored
|
@ -1348,12 +1348,6 @@
|
|||
"label": "Кошове",
|
||||
"placeholder": "1, 2, 4..."
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Наклон"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/bs.json
vendored
6
vendor/assets/iD/iD/locales/bs.json
vendored
|
@ -443,12 +443,6 @@
|
|||
"historic": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Nagib"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/ca.json
vendored
6
vendor/assets/iD/iD/locales/ca.json
vendored
|
@ -1888,12 +1888,6 @@
|
|||
"undefined": "No"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Pendent"
|
||||
},
|
||||
|
|
145
vendor/assets/iD/iD/locales/cs.json
vendored
145
vendor/assets/iD/iD/locales/cs.json
vendored
|
@ -160,7 +160,9 @@
|
|||
"points": "Narovnáno několik bodů.",
|
||||
"line": "Narovnána linie."
|
||||
},
|
||||
"too_bendy": "Nelze narovnat, protože je příliš zakroucený."
|
||||
"too_bendy": "Nelze narovnat, protože je příliš zakroucený.",
|
||||
"connected_to_hidden": "Nemůže být narovnáno, protože je připojeno k neviditelnému prvku.",
|
||||
"not_downloaded": "Nemůže být narovnáno, protože některé jeho části nebyly zcela staženy."
|
||||
},
|
||||
"delete": {
|
||||
"title": "Smazat",
|
||||
|
@ -191,10 +193,21 @@
|
|||
"connected_to_hidden": {
|
||||
"single": "Nelze smazat, protože je napojen na skrytý prvek.",
|
||||
"multiple": "Nelze smazat, protože jsou napojené na skryté prvky."
|
||||
},
|
||||
"not_downloaded": {
|
||||
"single": "Prvek nemůže být smazán, neboť některé jeho části nebyly dosud staženy.",
|
||||
"multiple": "Tyto prvky nemohou být smazány, neboť některé jejich části nebyly dosud staženy."
|
||||
}
|
||||
},
|
||||
"downgrade": {
|
||||
"title": "Degradovat"
|
||||
"title": "Degradovat",
|
||||
"annotation": {
|
||||
"building": {
|
||||
"single": "Prvek degradován na základní budovu.",
|
||||
"multiple": "Degradováno {n} prvků na základní budovy."
|
||||
},
|
||||
"multiple": "Degradováno {n} prvků."
|
||||
}
|
||||
},
|
||||
"add_member": {
|
||||
"annotation": "Přidán člen do relace."
|
||||
|
@ -375,6 +388,9 @@
|
|||
"create": "Přidáno omezení odbočování",
|
||||
"delete": "Smazáno omezení odbočování"
|
||||
}
|
||||
},
|
||||
"extract": {
|
||||
"key": "E"
|
||||
}
|
||||
},
|
||||
"restriction": {
|
||||
|
@ -450,11 +466,11 @@
|
|||
"rateLimit": "API omezuje anonymní připojení. Můžete to vyřešit tím, že se přihlásíte."
|
||||
},
|
||||
"commit": {
|
||||
"title": "Nahrát na OpenStreetMap",
|
||||
"title": "Odeslat na OpenStreetMap",
|
||||
"upload_explanation": "Vámi provedené změny budou viditelné na všech mapách postavených na datech z OpenStreetMap.",
|
||||
"upload_explanation_with_user": "Změny provedené pod jménem {user} budou viditelné na všech mapách postavených na datech z OpenStreetMap.",
|
||||
"request_review": "Rád bych, kdyby se na mé změny někdo podíval.",
|
||||
"save": "Nahrát",
|
||||
"save": "Odeslat",
|
||||
"cancel": "Storno",
|
||||
"changes": "{count} změn",
|
||||
"download_changes": "Stáhnout soubor osmChange",
|
||||
|
@ -471,7 +487,7 @@
|
|||
},
|
||||
"contributors": {
|
||||
"list": "Přispěli {users}",
|
||||
"truncated_list": "Přispěli {users} a {count} další."
|
||||
"truncated_list": "Přispěli {users} a dalších {count}."
|
||||
},
|
||||
"info_panels": {
|
||||
"key": "I",
|
||||
|
@ -573,6 +589,9 @@
|
|||
"edit_reference": "editovat / přeložit",
|
||||
"wiki_reference": "Zobrazit dokumentaci",
|
||||
"wiki_en_reference": "Zobrazit dokumentaci v angličtině",
|
||||
"hidden_preset": {
|
||||
"zoom": "{features} jsou skryté. Pro jejich zobrazení přibližte."
|
||||
},
|
||||
"back_tooltip": "Změnit prvek",
|
||||
"remove": "Odstranit",
|
||||
"search": "Hledat",
|
||||
|
@ -723,6 +742,9 @@
|
|||
"description": "Železnice",
|
||||
"tooltip": "Koleje, nádraží atd."
|
||||
},
|
||||
"pistes": {
|
||||
"description": "Stezky"
|
||||
},
|
||||
"power": {
|
||||
"description": "Energetika",
|
||||
"tooltip": "Elektrická vedení, elektrárny, transformátory atd."
|
||||
|
@ -816,6 +838,7 @@
|
|||
"success": {
|
||||
"just_edited": "Právě jste upravili OpenStreetMap!",
|
||||
"thank_you": "Děkujeme za vylepšení mapy.",
|
||||
"thank_you_location": "Děkujeme za vylepšení mapy kolem {where}.",
|
||||
"thank_you_where": {
|
||||
"format": "{place}{separator}{region}",
|
||||
"separator": ", "
|
||||
|
@ -1293,8 +1316,8 @@
|
|||
"save_h": "Uložit",
|
||||
"save": "Stiskněte{save} **Uložit** pro ukončení svých úprav a jejich nahrání na OpenStreetMap. Pamatujte na časté ukládání své práce!",
|
||||
"save_validation": "Na obrazovce ukládání budete mít šanci prohlédnout si své úpravy. iD také provede některé základní kontroly ohledně chybějících informací a případně Vám může pomoci návrhy a varováními, pokud se něco nebude zdát v pořádku.",
|
||||
"upload_h": "Nahrát",
|
||||
"upload": "Před nahráním vašich změn musíte vložit [popis vaší sady změn](https://wiki.openstreetmap.org/wiki/Good_changeset_comments). Poté klikněte na tlačítko **Nahrát** pro odeslání vašich změn do OpenStreetMap, kde budou připojeny do mapy a veřejně viditelné pro všechny.",
|
||||
"upload_h": "Odeslat",
|
||||
"upload": "Před nahráním vašich změn musíte vložit [popis vaší sady změn](https://wiki.openstreetmap.org/wiki/Good_changeset_comments). Poté klikněte na tlačítko **Odeslat** pro odeslání vašich změn do OpenStreetMap, kde budou připojeny do mapy a veřejně viditelné pro všechny.",
|
||||
"backups_h": "Automatické zálohy",
|
||||
"backups": "Pokud nemůžete dokončit vaše změny najednou, například pokud vám spadne počítač nebo zavřete panel prohlížeče, vaše změny jsou uloženy v úložišti vašeho prohlížeče. Ke změnám se můžete vrátit (ve stejném prohlížeči na stejném počítači) a iD vám nabídne obnovení vaší neuložené práce.",
|
||||
"keyboard_h": "Klávesové zkratky",
|
||||
|
@ -1422,6 +1445,7 @@
|
|||
},
|
||||
"options": {
|
||||
"what": {
|
||||
"title": "Hledat:",
|
||||
"edited": "Mé úpravy",
|
||||
"all": "Všechno"
|
||||
},
|
||||
|
@ -1445,7 +1469,10 @@
|
|||
"title": "Skoro spojení"
|
||||
},
|
||||
"close_nodes": {
|
||||
"title": "Body sobě velmi blízko"
|
||||
"title": "Body sobě velmi blízko",
|
||||
"detached": {
|
||||
"message": "{feature} je příliš blízko {feature2}"
|
||||
}
|
||||
},
|
||||
"crossing_ways": {
|
||||
"title": "Křížení linií",
|
||||
|
@ -1457,6 +1484,13 @@
|
|||
"fixme_tag": {
|
||||
"title": "Žádosti na opravu"
|
||||
},
|
||||
"generic_name": {
|
||||
"title": "Podezřelé názvy",
|
||||
"message": "{feature} má podezřelý název \"{name}\""
|
||||
},
|
||||
"incompatible_source": {
|
||||
"title": "Podezřelé zdroje"
|
||||
},
|
||||
"invalid_format": {
|
||||
"title": "Neplatné formátování",
|
||||
"email": {
|
||||
|
@ -1491,6 +1525,11 @@
|
|||
"impossible_oneway": {
|
||||
"title": "Nemožné jednosměrky"
|
||||
},
|
||||
"unsquare_way": {
|
||||
"title": "Nepravoúhlé rohy (do {val}°)",
|
||||
"message": "{feature} má nepravoúhlé rohy",
|
||||
"tip": "Najít prvky s nepravoúhlými rohy, které by mohly být zakresleny lépe"
|
||||
},
|
||||
"fix": {
|
||||
"connect_almost_junction": {
|
||||
"annotation": "Připojeny velmi blízké prvky."
|
||||
|
@ -1521,12 +1560,15 @@
|
|||
},
|
||||
"tag_as_disconnected": {
|
||||
"title": "Označit jako odpojené"
|
||||
},
|
||||
"tag_as_unsquare": {
|
||||
"title": "Označit jako fyzicky nepravoúhlé"
|
||||
}
|
||||
}
|
||||
},
|
||||
"intro": {
|
||||
"done": "hotovo",
|
||||
"ok": "OK",
|
||||
"ok": "Vskutku",
|
||||
"graph": {
|
||||
"block_number": "<value for addr:block_number>",
|
||||
"city": "Meziříčí",
|
||||
|
@ -1927,9 +1969,15 @@
|
|||
"category-building": {
|
||||
"name": "Budovy"
|
||||
},
|
||||
"category-golf": {
|
||||
"name": "Golfové prvky"
|
||||
},
|
||||
"category-landuse": {
|
||||
"name": "Využití krajiny"
|
||||
},
|
||||
"category-natural": {
|
||||
"name": "Přírodní prvky"
|
||||
},
|
||||
"category-path": {
|
||||
"name": "Pěší cesty"
|
||||
},
|
||||
|
@ -2010,6 +2058,15 @@
|
|||
"access_simple": {
|
||||
"label": "Povolený vstup/vjezd"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Druh",
|
||||
"options": {
|
||||
"all": "Vše",
|
||||
"alphabetic": "Abecední",
|
||||
"even": "Sudý",
|
||||
"odd": "Lichý"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Adresa",
|
||||
"placeholders": {
|
||||
|
@ -2197,6 +2254,10 @@
|
|||
"building": {
|
||||
"label": "Budova"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Podzemní patra",
|
||||
"placeholder": "2, 4, 6,..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Patra budovy",
|
||||
"placeholder": "2, 4, 6…"
|
||||
|
@ -2706,12 +2767,6 @@
|
|||
"undefined": "Ne"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Sklon"
|
||||
},
|
||||
|
@ -3310,6 +3365,9 @@
|
|||
"sanitary_dump_station": {
|
||||
"label": "Výlevka pro WC"
|
||||
},
|
||||
"screen": {
|
||||
"placeholder": "1, 4, 8,…"
|
||||
},
|
||||
"scuba_diving": {
|
||||
"label": "Služby"
|
||||
},
|
||||
|
@ -3609,9 +3667,16 @@
|
|||
"options": {
|
||||
"bucket": "Nádrž na odpad",
|
||||
"chemical": "Chemický",
|
||||
"flush": "Splachovací"
|
||||
"flush": "Splachovací",
|
||||
"pitlatrine": "Kadibudka"
|
||||
}
|
||||
},
|
||||
"toilets/handwashing": {
|
||||
"label": "Mytí rukou"
|
||||
},
|
||||
"toilets/position": {
|
||||
"label": "Pozice"
|
||||
},
|
||||
"toll": {
|
||||
"label": "Mýtné"
|
||||
},
|
||||
|
@ -3649,6 +3714,7 @@
|
|||
"label": "Dopravní značka"
|
||||
},
|
||||
"traffic_sign/direction": {
|
||||
"label": "Dotčený směr",
|
||||
"options": {
|
||||
"backward": "Zpátky",
|
||||
"both": "Oba/všechny směry",
|
||||
|
@ -3659,6 +3725,7 @@
|
|||
"label": "Typ"
|
||||
},
|
||||
"traffic_signals/direction": {
|
||||
"label": "Dotčený směr",
|
||||
"options": {
|
||||
"backward": "Zpátky",
|
||||
"both": "Oba/všechny směry",
|
||||
|
@ -3696,6 +3763,9 @@
|
|||
"trench": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"trolley_wire": {
|
||||
"label": "Trolejové vedení"
|
||||
},
|
||||
"tunnel": {
|
||||
"label": "Typ",
|
||||
"placeholder": "Výchozí"
|
||||
|
@ -3774,7 +3844,8 @@
|
|||
"label": "Typ"
|
||||
},
|
||||
"website": {
|
||||
"label": "Webová stránka"
|
||||
"label": "Webová stránka",
|
||||
"placeholder": "https://priklad.cz"
|
||||
},
|
||||
"wetland": {
|
||||
"label": "Typ"
|
||||
|
@ -3804,6 +3875,7 @@
|
|||
"delta": "Trojúhelník",
|
||||
"leblanc": "LeBlanc",
|
||||
"open": "Otevřít",
|
||||
"open-delta": "Otevřená delta",
|
||||
"star": "Hvězda",
|
||||
"zigzag": "Cikcak"
|
||||
}
|
||||
|
@ -5133,6 +5205,9 @@
|
|||
"name": "Brod",
|
||||
"terms": "brod,přejezd vody,ford"
|
||||
},
|
||||
"ford_line": {
|
||||
"name": "Brod"
|
||||
},
|
||||
"golf/bunker": {
|
||||
"name": "Pískový bunker",
|
||||
"terms": "pískový bunker,písková překážka,písečná překážka,bunker,hazard"
|
||||
|
@ -5888,6 +5963,9 @@
|
|||
"name": "Stadion",
|
||||
"terms": "stadion,fotbal,fotbalový stadión,hřiště"
|
||||
},
|
||||
"leisure/swimming_area": {
|
||||
"name": "Přírodní koupaliště"
|
||||
},
|
||||
"leisure/swimming_pool": {
|
||||
"name": "Plavecký bazén",
|
||||
"terms": "plovárna,koupaliště"
|
||||
|
@ -5896,6 +5974,18 @@
|
|||
"name": "Závodní dráha (ne pro motorsport)",
|
||||
"terms": "jezdit na kole,pes,chrt,kůň,koně,chrti,chrtů,závod*,dráha"
|
||||
},
|
||||
"leisure/track/horse_racing": {
|
||||
"name": "Jezdecká dráha"
|
||||
},
|
||||
"leisure/track/horse_racing_point": {
|
||||
"name": "Jezdecká dráha"
|
||||
},
|
||||
"leisure/track/running": {
|
||||
"name": "Běžecká dráha"
|
||||
},
|
||||
"leisure/track/running_point": {
|
||||
"name": "Běžecká dráha"
|
||||
},
|
||||
"leisure/water_park": {
|
||||
"name": "Akvapark",
|
||||
"terms": "akvapark,aquapark,vodní zábavní park,bazén,koupaliště,tobogán"
|
||||
|
@ -6034,6 +6124,9 @@
|
|||
"man_made/tower/observation": {
|
||||
"name": "Vyhlídková věž"
|
||||
},
|
||||
"man_made/tunnel": {
|
||||
"name": "Tunel"
|
||||
},
|
||||
"man_made/wastewater_plant": {
|
||||
"name": "Čistírna odpadních vod",
|
||||
"terms": "čistírna,čistička,čistírna odpadních vod,ČOV,čovka"
|
||||
|
@ -6199,7 +6292,7 @@
|
|||
"terms": "mokřad,mokřina,rašeliniště,slatiniště,slatina,bažina,slanisko,slať,slatě,mangrovy"
|
||||
},
|
||||
"natural/wood": {
|
||||
"name": "Prales",
|
||||
"name": "Les",
|
||||
"terms": "prales,přírodní les,neudržovaný les,nehospodářský les"
|
||||
},
|
||||
"noexit/yes": {
|
||||
|
@ -7593,6 +7686,22 @@
|
|||
"text": "© agentschap Informatie Vlaanderen"
|
||||
}
|
||||
},
|
||||
"AGIVFlandersGRB": {
|
||||
"attribution": {
|
||||
"text": "© agentschap Informatie Vlaanderen"
|
||||
},
|
||||
"name": "AIV Flanders GRB"
|
||||
},
|
||||
"AIV_DHMV_II_HILL_25cm": {
|
||||
"attribution": {
|
||||
"text": "© agentschap Informatie Vlaanderen"
|
||||
}
|
||||
},
|
||||
"AIV_DHMV_II_SVF_25cm": {
|
||||
"attribution": {
|
||||
"text": "© agentschap Informatie Vlaanderen"
|
||||
}
|
||||
},
|
||||
"Bing": {
|
||||
"description": "Satelitní a letecké snímky.",
|
||||
"name": "Letecké snímky Bing"
|
||||
|
|
6
vendor/assets/iD/iD/locales/da.json
vendored
6
vendor/assets/iD/iD/locales/da.json
vendored
|
@ -2331,12 +2331,6 @@
|
|||
"undefined": "Nej"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Stigning"
|
||||
},
|
||||
|
|
109
vendor/assets/iD/iD/locales/de.json
vendored
109
vendor/assets/iD/iD/locales/de.json
vendored
|
@ -1710,7 +1710,7 @@
|
|||
"tip": "Finde nicht routingfähige Straßen, Wege und Fährrouten.",
|
||||
"routable": {
|
||||
"message": {
|
||||
"multiple": "{count} routingfähige Objekte sind nur untereinander vunden."
|
||||
"multiple": "{count} routingfähige Objekte sind nur untereinander verbunden."
|
||||
},
|
||||
"reference": "Alle Straßen, Wege und Fährrouten sollten verbunden sein und ein zusammenhängendes routingfähiges Netzwerk bilden."
|
||||
},
|
||||
|
@ -1719,8 +1719,8 @@
|
|||
}
|
||||
},
|
||||
"fixme_tag": {
|
||||
"title": "„FIXME“ Ersuchen",
|
||||
"message": "{feature} mit „FIXME“ Ersuchen",
|
||||
"title": "Ersuchen um Verbesserung („Fix Me“)",
|
||||
"message": "{feature} mit Ersuchen um Verbesserung („Fix Me“)",
|
||||
"tip": "Finde Objekte mit einer „fixme“ Eigenschaft",
|
||||
"reference": "Eine „fixme“ Eigenschaft weist darauf hin, dass ein Mapper um Hilfe mit einem Objekt ersucht hat."
|
||||
},
|
||||
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Benutze verschiedene Ebenen"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Benutze verschiedene Ebenen oder Stockwerke (level/layer)"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Benutze verschiedene Stockwerke"
|
||||
},
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
"access_simple": {
|
||||
"label": "Erlaubter Zugang"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Typ",
|
||||
"options": {
|
||||
"all": "Alle",
|
||||
"alphabetic": "Alphabetisch",
|
||||
"even": "Gerade",
|
||||
"odd": "Ungerade"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Adresse",
|
||||
"placeholders": {
|
||||
|
@ -2650,6 +2662,10 @@
|
|||
"building": {
|
||||
"label": "Gebäude"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Unterirdische Geschosse",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Gebäudeetagen",
|
||||
"placeholder": "2, 4, 6..."
|
||||
|
@ -3168,10 +3184,10 @@
|
|||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
"label": "IATA Flughafen Code"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
"label": "ICAO Flughafen Code"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Neigung"
|
||||
|
@ -3673,12 +3689,18 @@
|
|||
"power_supply": {
|
||||
"label": "Stromversorgung"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "Vorschule"
|
||||
},
|
||||
"produce": {
|
||||
"label": "Erzeugnisse"
|
||||
},
|
||||
"product": {
|
||||
"label": "Produkte"
|
||||
},
|
||||
"public_bookcase/type": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"railway": {
|
||||
"label": "Typ"
|
||||
},
|
||||
|
@ -4337,6 +4359,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "Address-Interpolation"
|
||||
},
|
||||
"address": {
|
||||
"name": "Adresse",
|
||||
"terms": "Adresse"
|
||||
|
@ -4430,10 +4455,18 @@
|
|||
"name": "Hubschrauberlandeplatz",
|
||||
"terms": "Hubschrauberlandeplatz, Helikopterlandeplatz, Heliport"
|
||||
},
|
||||
"aeroway/holding_position": {
|
||||
"name": "Rollhalteort",
|
||||
"terms": "Rollhalteort, Rollhalt"
|
||||
},
|
||||
"aeroway/jet_bridge": {
|
||||
"name": "Jetbrücke",
|
||||
"terms": "Jetbrücke, Flugzeugbrücke, Passagierbrücke,"
|
||||
},
|
||||
"aeroway/parking_position": {
|
||||
"name": "Flugzeugparkposition",
|
||||
"terms": "Flugzeugparkposition"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "Start- und Landebahn",
|
||||
"terms": "Start- und Landebahn, Start-/Landebahn, Startbahn, Landebahn"
|
||||
|
@ -4639,6 +4672,10 @@
|
|||
"name": "Kampfsportstudio",
|
||||
"terms": "Kampfsportstudio, Kampfsportzentrum, Karatestudio, Dojo"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "Umkleideraum",
|
||||
"terms": "Umkleideraum, Umkleidekabine"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Trinkwasser",
|
||||
"terms": "Brunnen,Trinkwasserbrunnen,Wasserhahn,Trinkbrunnen"
|
||||
|
@ -4741,7 +4778,7 @@
|
|||
"terms": "Karaoke Klub, Karaoke, Raum, Karaoke TV"
|
||||
},
|
||||
"amenity/kindergarten": {
|
||||
"name": "Kindergarten, Kindergartengelände, Kindertagesstätte, Kindertagesstättengelände",
|
||||
"name": "Vorschule/Kindergarten, Kindergartengelände, Kindertagesstätte, Kindertagesstättengelände",
|
||||
"terms": "Kindergartengelände"
|
||||
},
|
||||
"amenity/language_school": {
|
||||
|
@ -4795,6 +4832,10 @@
|
|||
"name": "Mehrstöckige Parkgarage",
|
||||
"terms": "Mehrstöckige Parkgarage"
|
||||
},
|
||||
"amenity/parking/park_ride": {
|
||||
"name": "Park & Ride Platz",
|
||||
"terms": "Pendlerparkplatz, Park&Pool, Park&Ride, P+R, öffentlicher Verkehr, U-Bahn, Eisenbahnparkplatz"
|
||||
},
|
||||
"amenity/parking/underground": {
|
||||
"name": "Tiefgarage",
|
||||
"terms": "Autoparkplatz, Parkplatz, Tiefgaragenparkplatz, LKW-Parken"
|
||||
|
@ -6997,6 +7038,10 @@
|
|||
"name": "Fahrsilo",
|
||||
"terms": "offener Schüttgutbunker, Fahrsilokammer"
|
||||
},
|
||||
"man_made/cairn": {
|
||||
"name": "Steinmännchen",
|
||||
"terms": "Steinhügel, Steinmänner, Steinmandl, Steinmanderl, Steindauben"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "Schornstein",
|
||||
"terms": "Schornstein, Kamin"
|
||||
|
@ -8409,6 +8454,10 @@
|
|||
"name": "HiFi-Laden",
|
||||
"terms": "HiFi-Geschäft"
|
||||
},
|
||||
"shop/hobby": {
|
||||
"name": "Bastelgeschäft",
|
||||
"terms": "Bastelgeschäft, Hobbyshop"
|
||||
},
|
||||
"shop/houseware": {
|
||||
"name": "Haushaltswarengeschäft",
|
||||
"terms": "Haushaltswarengeschäft, Haushaltswarenladen"
|
||||
|
@ -8601,6 +8650,10 @@
|
|||
"name": "Supermarkt",
|
||||
"terms": "Supermarkt"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "Swimmingpoolbedarf",
|
||||
"terms": "Swimmingpoolbedarf"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "Schneider",
|
||||
"terms": "Schneider, Herrenschneider"
|
||||
|
@ -8743,6 +8796,10 @@
|
|||
"name": "Sehenswürdigkeit",
|
||||
"terms": "Touristenattraktion"
|
||||
},
|
||||
"tourism/camp_pitch": {
|
||||
"name": "Zeltplatz/Wohnwagenplatz",
|
||||
"terms": "Zelt, Wohnwagen"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "Campingplatz",
|
||||
"terms": "Camping Lager, Zeltplatz, Campingplatz"
|
||||
|
@ -9799,6 +9856,10 @@
|
|||
"description": "YouthMappers Ortsverband an der Universität von Nigerie, Enugu Campus",
|
||||
"extendedDescription": "Das LionMappersTeam (LMT) Enugu Campus ist ein Teil des YouthMappers Network. Das einzige Ziel ist, Mitgliedern die Möglichkeit zu geben, ihre Fähigkeiten im Bereich der Geoinformatik zu erlernen und zu verbessern sowie offene geografische Daten und Analysen zu erstellen, die lokal definierten Herausforderungen auf globaler Ebene begegnen. Es handelt sich um ein Team von Freiwilligen für die Bereitstellung von Crowdsourced-Mapping und Geoinformationen unter Verwendung von Openstreetmap, Citizen Science und anderer Geospatial-Technologie für Forschung, Schulung und Reaktion auf widerstandsfähige gesellschaftliche Herausforderungen. Wir sind in den Bereichen Web-Kartografie, GIS und Fernerkundung und Forschung involviert. Wir beschäftigen uns mit Freiwilligen Geografischen Informationen. GIS und Gerechtigkeit und Citizen Science. Zu unseren Hauptaktivitäten zählen Online-Crowdsourcing-Kartografie, Field Mapping, Schulungsworkshops und Schulungen zu High School sowie humanitärer Katastrophenhilfe."
|
||||
},
|
||||
"osm-africa-telegram": {
|
||||
"name": "OpenStreetMap Afrika Telegram",
|
||||
"description": "OpenStreetMap Telegram für Afrika"
|
||||
},
|
||||
"ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri": {
|
||||
"name": "YouthMappers INES Ruhengeri",
|
||||
"description": "YouthMappers Ortsverband am Institut für Hochschulbildung in Ruhengeri",
|
||||
|
@ -9925,6 +9986,10 @@
|
|||
"description": "YouthMappers chapter at University of Zimbabwe",
|
||||
"extendedDescription": "UzMappersTeam Zimbabwe is a team of Volunteers using OpenStreetMap for Open Data Mapping and Humanitarian Disaster response mapping .The team empowers its members with open source geospatial technology skills."
|
||||
},
|
||||
"osm-afghanistan-facebook": {
|
||||
"name": "OpenStreetMap Afghanistan",
|
||||
"description": "Verbessere OpenStreetMap in Afghanistan"
|
||||
},
|
||||
"OSM-BGD-facebook": {
|
||||
"name": "OpenStreetMap Bangladesch",
|
||||
"description": "Verbessere OpenStreetMap in Bangladesch",
|
||||
|
@ -10460,6 +10525,10 @@
|
|||
"name": "OpenStreetMap Kosovo auf Telegram",
|
||||
"description": "Halboffizielle öffentliche Gesamt-Kosovo Telegram Gruppe. Mapper von überall in jeder Sprache sind willkommen."
|
||||
},
|
||||
"lu-mailinglist": {
|
||||
"name": "Talk-lu Mailing Liste",
|
||||
"description": "Offizielle Mailing Liste für die Luxembourgische OSM Gemeinschaft"
|
||||
},
|
||||
"ym-Universit-Mohammed-V-Rabat": {
|
||||
"name": "Brahmapoutre at Rabat",
|
||||
"description": "YouthMappers chapter at Université Mohammed V Rabat",
|
||||
|
@ -10489,6 +10558,14 @@
|
|||
"name": "OpenStreetMap Polen Web Forum",
|
||||
"description": "Forum der polnischen OpenStreetMap-Community"
|
||||
},
|
||||
"pt-mailinglist": {
|
||||
"name": "Talk-pt Mailing Liste",
|
||||
"description": "Talk-pt ist die offizielle Mailingliste für die Portugiesische OSM-Gemeinschaft"
|
||||
},
|
||||
"pt-telegram": {
|
||||
"name": "OpenStreetMap Portugal no Telegram",
|
||||
"description": "Telegram Gruppe der Portugiesischen OpenStreetMap Gemeinschaft {url}"
|
||||
},
|
||||
"si-forum": {
|
||||
"name": "OpenStreetMap Slowenien Forum",
|
||||
"description": "Forum der OpenStreetMap-Community in Slowenien"
|
||||
|
@ -10978,6 +11055,10 @@
|
|||
"name": "Geography Club",
|
||||
"description": "YouthMappers chapter at Western Michigan University"
|
||||
},
|
||||
"geogeeks_perth_meetup": {
|
||||
"name": "GeoGeeks Perth Treffen",
|
||||
"description": "Treffen in Perth für Menschen die sich für GIS-Daten, Mappen und Open Source interessieren. Wir beschäftigen uns mit allen Angelegenheiten von lokaler Bedeutung."
|
||||
},
|
||||
"talk-au": {
|
||||
"name": "Talk-au Mailing Liste",
|
||||
"description": "Mappers in Australien chatten hier"
|
||||
|
@ -11034,6 +11115,10 @@
|
|||
"description": "Beteiligte dich an der OpenStreetMap Brasília Gemeinschaft auf Telegram",
|
||||
"extendedDescription": "Mach mit, um mehr über OpenStreetMap zu erfahren, Fragen zu stellen oder an unseren Treffen teilzunehmen. Alle sind willkommen!"
|
||||
},
|
||||
"OSM-br-discord": {
|
||||
"name": "OpenStreetMap Brasil Discord",
|
||||
"description": "Beteilige dich an der OpenStreetMap Brasilien Community auf Discord"
|
||||
},
|
||||
"OSM-br-mailinglist": {
|
||||
"name": "Talk-br Mailingliste",
|
||||
"description": "Eine Mailingliste zu OpenStreetMap in Brasilien"
|
||||
|
@ -11171,6 +11256,18 @@
|
|||
"name": "Talk-uy Mailing Liste",
|
||||
"description": "Talk-uy ist die offizielle Mailingliste für die OSM Gemeinschaft in Uruguay"
|
||||
},
|
||||
"ve-forum": {
|
||||
"name": "OpenStreetMap VE Forum",
|
||||
"description": "OpenStreetMap Venezuela web forum"
|
||||
},
|
||||
"ve-mailinglist": {
|
||||
"name": "Talk-ve Mailing Liste",
|
||||
"description": "Talk-ve ist die offizielle Mailingliste für die OSM Community in Venezuela."
|
||||
},
|
||||
"ve-telegram": {
|
||||
"name": "OpenStreetMap Venezuela Telegram",
|
||||
"description": "Mach mit bei der OpenStreetMap Venezuela Gemeinschaft auf Telegram"
|
||||
},
|
||||
"LATAM-Facebook": {
|
||||
"name": "OpenStreetMap Lateinamerika Facebook",
|
||||
"description": "OpenStreetMap Lateinamerika auf Facebook"
|
||||
|
|
9
vendor/assets/iD/iD/locales/el.json
vendored
9
vendor/assets/iD/iD/locales/el.json
vendored
|
@ -1913,12 +1913,6 @@
|
|||
"undefined": "Όχι"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Κλίση"
|
||||
},
|
||||
|
@ -4853,6 +4847,9 @@
|
|||
"name": "Γλίστρα",
|
||||
"terms": "Γλίστρα, Νεωλκείο"
|
||||
},
|
||||
"leisure/slipway_point": {
|
||||
"name": "Γλίστρα"
|
||||
},
|
||||
"leisure/sports_centre": {
|
||||
"name": "Αθλητικό Κέντρο/ Συγκρότημα",
|
||||
"terms": "Αθλητικό Κέντρο/ Συγκρότημα"
|
||||
|
|
6
vendor/assets/iD/iD/locales/en-AU.json
vendored
6
vendor/assets/iD/iD/locales/en-AU.json
vendored
|
@ -61,6 +61,9 @@
|
|||
"amenity/social_centre": {
|
||||
"name": "Social Centre"
|
||||
},
|
||||
"amenity/vending_machine/fuel": {
|
||||
"name": "Fuel Pump"
|
||||
},
|
||||
"barrier/kerb": {
|
||||
"name": "Kerb"
|
||||
},
|
||||
|
@ -106,6 +109,9 @@
|
|||
"highway/give_way": {
|
||||
"name": "Give Way Sign"
|
||||
},
|
||||
"highway/living_street": {
|
||||
"name": "Shared Zone Road"
|
||||
},
|
||||
"leisure/adult_gaming_centre": {
|
||||
"name": "Adult Gaming Centre"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/en-GB.json
vendored
6
vendor/assets/iD/iD/locales/en-GB.json
vendored
|
@ -1872,12 +1872,6 @@
|
|||
"undefined": "No"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Incline"
|
||||
},
|
||||
|
|
112
vendor/assets/iD/iD/locales/en.json
vendored
112
vendor/assets/iD/iD/locales/en.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Use different layers"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Use different layers or levels"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Use different levels"
|
||||
},
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Type",
|
||||
"options": {
|
||||
"all": "All",
|
||||
"even": "Even",
|
||||
"odd": "Odd",
|
||||
"alphabetic": "Alphabetic"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Address",
|
||||
"placeholders": {
|
||||
|
@ -2657,6 +2669,10 @@
|
|||
"label": "Building Levels",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Underground Levels",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/material": {
|
||||
"label": "Material"
|
||||
},
|
||||
|
@ -3168,10 +3184,10 @@
|
|||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
"label": "IATA Airport Code"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
"label": "ICAO Airport Code"
|
||||
},
|
||||
"incline_steps": {
|
||||
"label": "Incline",
|
||||
|
@ -3673,12 +3689,18 @@
|
|||
"power": {
|
||||
"label": "Type"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "Preschool"
|
||||
},
|
||||
"produce": {
|
||||
"label": "Produce"
|
||||
},
|
||||
"product": {
|
||||
"label": "Products"
|
||||
},
|
||||
"public_bookcase/type": {
|
||||
"label": "Type"
|
||||
},
|
||||
"railway": {
|
||||
"label": "Type"
|
||||
},
|
||||
|
@ -4425,6 +4447,10 @@
|
|||
"name": "Waterway",
|
||||
"terms": ""
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"name": "Address Interpolation",
|
||||
"terms": ""
|
||||
},
|
||||
"address": {
|
||||
"name": "Address",
|
||||
"terms": ""
|
||||
|
@ -4513,10 +4539,18 @@
|
|||
"name": "Helipad",
|
||||
"terms": "helicopter,helipad,heliport"
|
||||
},
|
||||
"aeroway/holding_position": {
|
||||
"name": "Aircraft Holding Position",
|
||||
"terms": ""
|
||||
},
|
||||
"aeroway/jet_bridge": {
|
||||
"name": "Jet Bridge",
|
||||
"terms": "aerobridge,air jetty,airbridge,finger,gangway,jet way,jetway,passenger boarding bridge,PBB,portal,skybridge,terminal gate connector"
|
||||
},
|
||||
"aeroway/parking_position": {
|
||||
"name": "Aircraft Parking Position",
|
||||
"terms": ""
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "Runway",
|
||||
"terms": "landing strip"
|
||||
|
@ -4749,6 +4783,10 @@
|
|||
"name": "Dojo / Martial Arts Academy",
|
||||
"terms": "martial arts,dojang"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "Changing Room",
|
||||
"terms": "changeroom,dressing room,fitting room,locker room"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Drinking Water",
|
||||
"terms": "potable water source,water fountain,drinking fountain,bubbler,water tap"
|
||||
|
@ -4905,6 +4943,10 @@
|
|||
"name": "Multilevel Parking Garage",
|
||||
"terms": "car,indoor parking,multistorey car park,parkade,parking building,parking deck,parking garage,parking ramp,parking structure"
|
||||
},
|
||||
"amenity/parking/park_ride": {
|
||||
"name": "Park & Ride Lot",
|
||||
"terms": "commuter parking lot,incentive parking lot,metro parking lot,park and pool lot,park and ride lot,P+R,public transport parking lot,public transit parking lot,train parking lot"
|
||||
},
|
||||
"amenity/parking/underground": {
|
||||
"name": "Underground Parking",
|
||||
"terms": "automobile parking,car lot,car parking,rv parking,subsurface parking,truck parking,vehicle parking"
|
||||
|
@ -7651,7 +7693,7 @@
|
|||
},
|
||||
"office/telecommunication": {
|
||||
"name": "Telecom Office",
|
||||
"terms": "communication,internet,phone,voice"
|
||||
"terms": "communication,internet service provider,isp,network,telephone,voice"
|
||||
},
|
||||
"office/therapist": {
|
||||
"name": "Therapist Office",
|
||||
|
@ -7851,7 +7893,7 @@
|
|||
},
|
||||
"power/line": {
|
||||
"name": "Power Line",
|
||||
"terms": ""
|
||||
"terms": "electric power transmission line,high voltage line,high tension line"
|
||||
},
|
||||
"power/minor_line": {
|
||||
"name": "Minor Power Line",
|
||||
|
@ -8155,7 +8197,7 @@
|
|||
},
|
||||
"route/ferry": {
|
||||
"name": "Ferry Route",
|
||||
"terms": ""
|
||||
"terms": "boat,merchant vessel,ship,water bus,water shuttle,water taxi"
|
||||
},
|
||||
"seamark/beacon_isolated_danger": {
|
||||
"name": "Danger Beacon",
|
||||
|
@ -8657,6 +8699,10 @@
|
|||
"name": "Photography Store",
|
||||
"terms": "camera,film"
|
||||
},
|
||||
"shop/printer_ink": {
|
||||
"name": "Printer Ink Store",
|
||||
"terms": "copier ink,fax ink,ink cartridges,toner"
|
||||
},
|
||||
"shop/pyrotechnics": {
|
||||
"name": "Fireworks Store",
|
||||
"terms": "fireworks"
|
||||
|
@ -8705,6 +8751,10 @@
|
|||
"name": "Supermarket",
|
||||
"terms": "grocery,store,shop"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "Pool Supply Store",
|
||||
"terms": "hot tub equipment store,hot tub maintenance store,hot tub supply store,pool shop,pool store,swimming pool equipment store,swimming pool installation store,swimming pool maintenance store,swimming pool supply shop"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "Tailor",
|
||||
"terms": "clothes,suit"
|
||||
|
@ -9215,7 +9265,7 @@
|
|||
},
|
||||
"waterway/weir": {
|
||||
"name": "Weir",
|
||||
"terms": ""
|
||||
"terms": "low-head dam,low-rise dam,wier"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -9900,6 +9950,10 @@
|
|||
"description": "YouthMappers chapter at University of Nigeria, Enugu Campus",
|
||||
"extendedDescription": "The LionMappersTeam(LMT)Enugu Campus is an affiliate of YouthMappers Network, with the sole aim of providing members the opportunity to learn and improve their skills in the field of Geoinformatics and to create open geographic data and analysis that addresses locally defined challenges globally. It is a team of volunteers for Crowdsourced Mapping and Geographic Information provision using Openstreetmap, Citizen Science and other Geospatial Technology for research, training and response to resilient community challenges. We are involved in Web-Cartography, GIS and Remote Sensing Applications and ResearchWe are passionate about Volunteered Geographic Information.Paticipatory GIS and Citizen Science.Our major activities include online crowdsourced-Cartography, Field Mapping ,Training workshops and outreaches to High School as well as Humanitarian/Disaster Response Mapping."
|
||||
},
|
||||
"osm-africa-telegram": {
|
||||
"name": "OpenStreetMap Africa Telegram",
|
||||
"description": "OpenStreetMap Telegram for Africa"
|
||||
},
|
||||
"ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri": {
|
||||
"name": "YouthMappers at INES Ruhengeri",
|
||||
"description": "YouthMappers chapter at Insititue d' Enseignement Superieur de Ruhengeri",
|
||||
|
@ -10026,6 +10080,10 @@
|
|||
"description": "YouthMappers chapter at University of Zimbabwe",
|
||||
"extendedDescription": "UzMappersTeam Zimbabwe is a team of Volunteers using OpenStreetMap for Open Data Mapping and Humanitarian Disaster response mapping .The team empowers its members with open source geospatial technology skills."
|
||||
},
|
||||
"osm-afghanistan-facebook": {
|
||||
"name": "OpenStreetMap Afghanistan",
|
||||
"description": "Improve OpenStreetMap in Afghanistan"
|
||||
},
|
||||
"OSM-BGD-facebook": {
|
||||
"name": "OpenStreetMap Bangladesh",
|
||||
"description": "Improve OpenStreetMap in Bangladesh",
|
||||
|
@ -10561,6 +10619,10 @@
|
|||
"name": "OpenStreetMap Kosovo on Telegram",
|
||||
"description": "Semi-official all-Kosovo Telegram public group. We welcome all mappers from anywhere in any language."
|
||||
},
|
||||
"lu-mailinglist": {
|
||||
"name": "Talk-lu Mailing List",
|
||||
"description": "Official mailing list for the Luxembourgish OSM community"
|
||||
},
|
||||
"ym-Universit-Mohammed-V-Rabat": {
|
||||
"name": "Brahmapoutre at Rabat",
|
||||
"description": "YouthMappers chapter at Université Mohammed V Rabat",
|
||||
|
@ -10715,10 +10777,26 @@
|
|||
"description": "YouthMappers chapter at University of the West Indies, Mona Campus",
|
||||
"extendedDescription": "The UWI, Mona Campus Library engages in public, outreach and special projects. This will allow our library the means to be a catalyst for spatial literacy and advocate for spatial data sharing and access to Jamaican and Caribbean interests. We have disaster relief and communication needs and extensive earth science and geo-hazards needs to better serve our campus and community. Specifically, we hace a Science Library to showcase such to all faculty and students."
|
||||
},
|
||||
"OSM-NI-telegram": {
|
||||
"ni-facebook": {
|
||||
"name": "OpenStreetMap NI Community",
|
||||
"description": "Mappers and OpenStreetMap on Facebook in Nicaragua"
|
||||
},
|
||||
"ni-mailinglist": {
|
||||
"name": "Talk-ni Mailing List",
|
||||
"description": "Talk-ni is the official mailing list for the Nicaraguan OSM community"
|
||||
},
|
||||
"ni-telegram": {
|
||||
"name": "OSM Nicaragua on Telegram",
|
||||
"description": "OpenStreetMap Nicaragua Telegram chat"
|
||||
},
|
||||
"ni-twitter": {
|
||||
"name": "OpenStreetMap Nicaragua Twitter",
|
||||
"description": "OSM Nicaragua on Twitter: @osm_ni"
|
||||
},
|
||||
"osm-ni": {
|
||||
"name": "MapaNica.net",
|
||||
"description": "Provide OSM services and information for the local community in Nicaragua"
|
||||
},
|
||||
"ym-Universidad-Nacional-de-Ingenieria": {
|
||||
"name": "Yeka Street MGA",
|
||||
"description": "YouthMappers chapter at Universidad Nacional de Ingenieria",
|
||||
|
@ -11087,6 +11165,10 @@
|
|||
"name": "Geography Club",
|
||||
"description": "YouthMappers chapter at Western Michigan University"
|
||||
},
|
||||
"geogeeks_perth_meetup": {
|
||||
"name": "GeoGeeks Perth Meetup",
|
||||
"description": "Perth-based meetup group for people interested in mapping, geospatial data, and open source. We'll be working on anything that involves a sense of place."
|
||||
},
|
||||
"talk-au": {
|
||||
"name": "Talk-au Mailing List",
|
||||
"description": "Place for Aussie mappers to chat"
|
||||
|
@ -11143,6 +11225,10 @@
|
|||
"description": "Join the OpenStreetMap Brasília community on Telegram",
|
||||
"extendedDescription": "Join the community to learn more about OpenStreetMap, ask questions or participate in our meetings. Everyone is welcome!"
|
||||
},
|
||||
"OSM-br-discord": {
|
||||
"name": "OpenStreetMap Brasil Discord",
|
||||
"description": "Join the OpenStreetMap Brasil community on Discord"
|
||||
},
|
||||
"OSM-br-mailinglist": {
|
||||
"name": "Talk-br Mailing List",
|
||||
"description": "A mailing list to discuss OpenStreetMap in Brazil"
|
||||
|
@ -11280,6 +11366,18 @@
|
|||
"name": "Talk-uy Mailing List",
|
||||
"description": "Talk-uy is the official mailing list for the Uruguayan OSM community"
|
||||
},
|
||||
"ve-forum": {
|
||||
"name": "OpenStreetMap VE Forum",
|
||||
"description": "OpenStreetMap Venezuela web forum"
|
||||
},
|
||||
"ve-mailinglist": {
|
||||
"name": "Talk-ve Mailing List",
|
||||
"description": "Talk-ve is the official mailing list for the Venezuelan OSM community"
|
||||
},
|
||||
"ve-telegram": {
|
||||
"name": "OpenStreetMap Venezuela Telegram",
|
||||
"description": "Join the OpenStreetMap Venezuela community on Telegram"
|
||||
},
|
||||
"LATAM-Facebook": {
|
||||
"name": "OpenStreetMap Latam Facebook",
|
||||
"description": "OpenStreetMap Latam on Facebook"
|
||||
|
|
48
vendor/assets/iD/iD/locales/eo.json
vendored
48
vendor/assets/iD/iD/locales/eo.json
vendored
|
@ -1950,6 +1950,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Uzi malsamajn tavolojn"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Uzi malsamajn tavolojn aŭ etaĝojn"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Uzi malsamajn etaĝojn"
|
||||
},
|
||||
|
@ -2458,6 +2461,15 @@
|
|||
"access_simple": {
|
||||
"label": "Aliro permesata"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Maniero",
|
||||
"options": {
|
||||
"all": "Ĉiuj",
|
||||
"alphabetic": "Alfabeta",
|
||||
"even": "Parnombra",
|
||||
"odd": "Neparnombra"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Adreso",
|
||||
"placeholders": {
|
||||
|
@ -2648,6 +2660,10 @@
|
|||
"building": {
|
||||
"label": "Konstruaĵo"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Kiom da subteraj etaĝoj",
|
||||
"placeholder": "2, 4, 6…"
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Etaĝoj de konstruaĵo",
|
||||
"placeholder": "2, 4, 6…"
|
||||
|
@ -3165,12 +3181,6 @@
|
|||
"undefined": "Ne"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Klino"
|
||||
},
|
||||
|
@ -3671,6 +3681,9 @@
|
|||
"power_supply": {
|
||||
"label": "Energi-fonto"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "Infanvartejo"
|
||||
},
|
||||
"produce": {
|
||||
"label": "Produktaĵo"
|
||||
},
|
||||
|
@ -4335,6 +4348,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "Interpolado de adresoj"
|
||||
},
|
||||
"address": {
|
||||
"name": "Adreso",
|
||||
"terms": "stratnomo,domnumero,numero"
|
||||
|
@ -4637,6 +4653,10 @@
|
|||
"name": "Doĵo / batalart-lernejo",
|
||||
"terms": "dojho,dojxo,batalarto,luktoarto,luktarto"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "Vestejo",
|
||||
"terms": "travestejo,tualetejo"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Trinkakvejo",
|
||||
"terms": "ŝprucakvo,shprucakvo,sxprucakvo,trinkejo,akvokrano,krano"
|
||||
|
@ -4793,6 +4813,10 @@
|
|||
"name": "Pluretaĝa parkumejo",
|
||||
"terms": "parkejo,parkumejo,aŭtejo,aŭtoparkejo"
|
||||
},
|
||||
"amenity/parking/park_ride": {
|
||||
"name": "Parkumejo P+R (ĉe publika transporto)",
|
||||
"terms": "parkumejo"
|
||||
},
|
||||
"amenity/parking/underground": {
|
||||
"name": "Parkumejo subtera",
|
||||
"terms": "parkejo subtera,subtera parkumejo"
|
||||
|
@ -6996,6 +7020,10 @@
|
|||
"name": "Stokejo senkovra",
|
||||
"terms": "turstokejo,stokturo,silo,magazeno"
|
||||
},
|
||||
"man_made/cairn": {
|
||||
"name": "Ŝtonamaso",
|
||||
"terms": "shtonamaso,sxtonamaso,kairno,amasaĵo"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "Kamentubo",
|
||||
"terms": "kameno,fumtubo"
|
||||
|
@ -8589,6 +8617,10 @@
|
|||
"name": "Superbazaro",
|
||||
"terms": "vendejaro,vendejego"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "Vendejo de naĝej-akcesoriaĵoj",
|
||||
"terms": "naĝejo,naĝbaseno"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "Tajlora laborejo/vendejo",
|
||||
"terms": "tajloro"
|
||||
|
@ -8731,6 +8763,10 @@
|
|||
"name": "Turisma vidindaĵo",
|
||||
"terms": "vidindaĵo,vidindajho,vidindajxo,atrakcio,vizitindaĵo"
|
||||
},
|
||||
"tourism/camp_pitch": {
|
||||
"name": "Loko por kampadveturilo/tendo",
|
||||
"terms": "kampadejo,tendo,kampadveturilo"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "Kampadejo",
|
||||
"terms": "tendo,bivakejo"
|
||||
|
|
107
vendor/assets/iD/iD/locales/es.json
vendored
107
vendor/assets/iD/iD/locales/es.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Use capas diferentes"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Use diferentes capas o niveles"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Use niveles diferentes"
|
||||
},
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
"access_simple": {
|
||||
"label": "Acceso permitido"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Tipo",
|
||||
"options": {
|
||||
"all": "Todo",
|
||||
"alphabetic": "Alfabético",
|
||||
"even": "Par",
|
||||
"odd": "Impar"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Dirección",
|
||||
"placeholders": {
|
||||
|
@ -2650,6 +2662,10 @@
|
|||
"building": {
|
||||
"label": "Edificio"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Niveles subterráneos",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Niveles del edificio",
|
||||
"placeholder": "2, 4, 6..."
|
||||
|
@ -2844,7 +2860,7 @@
|
|||
"label": "Diseño"
|
||||
},
|
||||
"destination/ref_oneway": {
|
||||
"label": "Números de carretera de destino"
|
||||
"label": "Números de vía de destino"
|
||||
},
|
||||
"destination/symbol_oneway": {
|
||||
"label": "Símbolos de destino"
|
||||
|
@ -3168,10 +3184,10 @@
|
|||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
"label": "Código de aeropuerto IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
"label": "Código de aeropuerto de la OACI - ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Pendiente"
|
||||
|
@ -3673,12 +3689,18 @@
|
|||
"power_supply": {
|
||||
"label": "Fuente de energía"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "Preescolar"
|
||||
},
|
||||
"produce": {
|
||||
"label": "Produce"
|
||||
},
|
||||
"product": {
|
||||
"label": "Productos"
|
||||
},
|
||||
"public_bookcase/type": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
"railway": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
|
@ -4337,6 +4359,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "Interpolación de direcciones"
|
||||
},
|
||||
"address": {
|
||||
"name": "Dirección",
|
||||
"terms": "dirección, altura, domicilio, residencia"
|
||||
|
@ -4430,10 +4455,18 @@
|
|||
"name": "Helipuerto",
|
||||
"terms": "helipuerto, pista de aterrizaje para helicópteros, pista de despegue para helicópteros, helicóptero"
|
||||
},
|
||||
"aeroway/holding_position": {
|
||||
"name": "Posición de espera de aviones",
|
||||
"terms": "aeronave, avión, posición, espera"
|
||||
},
|
||||
"aeroway/jet_bridge": {
|
||||
"name": "Manga de aeropuerto",
|
||||
"terms": "puente avión, puente aéreo, pasarela, puente de embarque de pasajeros, PBB, portal, conector de puerta de terminal"
|
||||
},
|
||||
"aeroway/parking_position": {
|
||||
"name": "Posición de estacionamiento de aviones",
|
||||
"terms": "aeronave, avión, posición, estacionamiento, parqueo"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "Pista de aterrizaje",
|
||||
"terms": "pista, pista de aterrizaje, pista de despegue"
|
||||
|
@ -4639,6 +4672,10 @@
|
|||
"name": "Academia de artes marciales",
|
||||
"terms": "dojo, academia, artes marciales, karate, judo, taekwondo, kendo, ninjutsu, kung fu"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "Vestuario",
|
||||
"terms": "Cambio de ropa, vestidor, vestuario"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Fuente de agua potable",
|
||||
"terms": "agua,potable,bebible,fuente,manantial, fontana, fontanal, hontanar, venero, bebedero"
|
||||
|
@ -4795,6 +4832,10 @@
|
|||
"name": "Garaje de estacionamiento multinivel",
|
||||
"terms": "aparcamiento, estacionamiento, estacionamiento de varios pisos, estructura de estacionamiento, rampa de estacionamiento, plataforma de estacionamiento, estacionamiento cubierto"
|
||||
},
|
||||
"amenity/parking/park_ride": {
|
||||
"name": "Estacionamiento con transporte público",
|
||||
"terms": "cercanías, incentivo, estacionamiento, P + R, park, ride, transporte público, bus, metro, subte"
|
||||
},
|
||||
"amenity/parking/underground": {
|
||||
"name": "Estacionamiento subterráneo",
|
||||
"terms": "Estacionamiento, estacionamiento de automóviles, estacionamiento de vehículos, estacionamiento de rv, estacionamiento subterráneo, estacionamiento de camiones, estacionamiento de vehículos, aparcamiento"
|
||||
|
@ -5192,8 +5233,8 @@
|
|||
"terms": "correo, paquete, retiro, envio, productos"
|
||||
},
|
||||
"amenity/vending_machine/parking_tickets": {
|
||||
"name": "Máquina expendedora de boletos de aparcamiento",
|
||||
"terms": "ticket, boleto, recibo, expendedor, coche, carro, auto, automóvil, vehículo, aparcamiento, parking, aparcadero, estacionamiento, garaje, parqueadero, parqueo"
|
||||
"name": "Parquímetro",
|
||||
"terms": "ticket, boleto, recibo, expendedor, aparcamiento, parking, aparcadero, estacionamiento, parqueadero, parqueo, parquímetro"
|
||||
},
|
||||
"amenity/vending_machine/public_transport_tickets": {
|
||||
"name": "Máquina expendedora del boleto de transporte",
|
||||
|
@ -6997,6 +7038,10 @@
|
|||
"name": "Silo búnker",
|
||||
"terms": "silo búnker, silo, bunker"
|
||||
},
|
||||
"man_made/cairn": {
|
||||
"name": "Mojón",
|
||||
"terms": "pila de piedra, pila de piedras, càrn"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "Chimenea",
|
||||
"terms": "chimenea, fogón, fuego"
|
||||
|
@ -8410,6 +8455,10 @@
|
|||
"name": "Tienda de equipos de sonido",
|
||||
"terms": "sonido, hifi, alta fidelidad, altavoz, amplificador, equipos HIFI"
|
||||
},
|
||||
"shop/hobby": {
|
||||
"name": "Tienda de pasatiempos",
|
||||
"terms": "manga, figuras, modelo"
|
||||
},
|
||||
"shop/houseware": {
|
||||
"name": "Tienda de artículos del hogar ",
|
||||
"terms": "artículos del hogar, enseres del hogar, hogar, houseware"
|
||||
|
@ -8602,6 +8651,10 @@
|
|||
"name": "Supermercado",
|
||||
"terms": "supermercado, supermercados, cadena de supermercados, hipermercado"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "Tienda de suministros para piscinas",
|
||||
"terms": "equipos para jacuzzis, cuidado de jacuzzis, suministros para jacuzzis, tienda de piscinas, piscinas, instalación de piscinas, mantenimiento de piscinas, insumos de piscinas, jacuzzi, piscina, pileta, alberca"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "Sastrería",
|
||||
"terms": "Sastre, taller de costura, costura, taller de sastrería, sastrería"
|
||||
|
@ -8744,6 +8797,10 @@
|
|||
"name": "Atracción turística",
|
||||
"terms": "punto de interés, interés turístico, atracción turística, atracciones turísticas, atractivos turísticos, lugares turísticos"
|
||||
},
|
||||
"tourism/camp_pitch": {
|
||||
"name": "Lugar para acampar",
|
||||
"terms": "lugar, patio, cancha, terreno, camping, cámping, campamento, acampe, tienda, carpa, rv, motorhome, motor home, caravana, autocaravana,"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "Campamento",
|
||||
"terms": "terreno, área, lugar, camping, cámping, campamento, acampe, tienda, carpa, rv, motorhome, motor home, caravana, autocaravana"
|
||||
|
@ -9800,6 +9857,10 @@
|
|||
"description": "Capítulo de los YouthMappers en la Universidad de Nigeria, Campus Enugu",
|
||||
"extendedDescription": "El LionMappersTeam (LMT) Enugu Campus es un afiliado de YouthMappers Network, con el único objetivo de brindar a los miembros la oportunidad de aprender y mejorar sus habilidades en el campo de la geoinformática y crear datos geográficos abiertos y análisis que aborden los desafíos definidos localmente a nivel mundial. Es un equipo de voluntarios para la provisión de información geográfica y de mapas de colaboración colectiva que utiliza Openstreetmap, Citizen Science y otras tecnologías geoespaciales para la investigación, la capacitación y la respuesta a los desafíos de la comunidad resistente. Participamos en aplicaciones de cartografía web, SIG y teledetección e investigación. Nos apasiona la información geográfica voluntaria. El SIG participativo y la ciencia ciudadana. Nuestras actividades principales incluyen cartografía en línea, cartografía de campo, talleres de capacitación y divulgación a la escuela secundaria, así como Mapeo de Respuesta Humanitaria / Desastres."
|
||||
},
|
||||
"osm-africa-telegram": {
|
||||
"name": "Telegram de OpenStreetMap África",
|
||||
"description": "Telegram de OpenStreetMap África"
|
||||
},
|
||||
"ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri": {
|
||||
"name": "YouthMappers en INES Ruhengeri",
|
||||
"description": "El capítulo de YouthMappers en el Instituto de Educación Superior de Ruhengeri",
|
||||
|
@ -9926,6 +9987,10 @@
|
|||
"description": "El capítulo de YouthMappers en la Universidad de Zimbabwe",
|
||||
"extendedDescription": "UzMappersTeam Zimbabwe es un equipo de voluntarios que utilizan OpenStreetMap para el mapeo de datos abiertos y el mapeo de respuesta ante desastres humanitarios. El equipo capacita a sus miembros con habilidades de tecnología geoespacial de código abierto."
|
||||
},
|
||||
"osm-afghanistan-facebook": {
|
||||
"name": "OpenStreetMap Afganistán",
|
||||
"description": "Mejore OpenStreetMap en Afganistán"
|
||||
},
|
||||
"OSM-BGD-facebook": {
|
||||
"name": "OpenStreetMap Bangladesh",
|
||||
"description": "Mejore OpenStreetMap en Bangladesh",
|
||||
|
@ -10461,6 +10526,10 @@
|
|||
"name": "OpenStreetMap Kosovo en Telegram",
|
||||
"description": "Grupo público de Telegram semi-oficial sobre Kosovo. Damos la bienvenida a todos los mapeadores de cualquier lugar en cualquier idioma."
|
||||
},
|
||||
"lu-mailinglist": {
|
||||
"name": "Lista de correo de Talk-lu",
|
||||
"description": "Lista de correo oficial para la comunidad OSM de Luxemburgo"
|
||||
},
|
||||
"ym-Universit-Mohammed-V-Rabat": {
|
||||
"name": "Brahmapoutre en Rabat",
|
||||
"description": "Capítulo de YouthMapper en la Université Mohammed V Rabat",
|
||||
|
@ -10490,6 +10559,14 @@
|
|||
"name": "Foro de OpenStreetMap Polonia",
|
||||
"description": "Foro de la comunidad polaca OpenStreetMap"
|
||||
},
|
||||
"pt-mailinglist": {
|
||||
"name": "Lista de correo de Talk-pt",
|
||||
"description": "Talk-pt es la lista de correo oficial de la comunidad OSM portuguesa"
|
||||
},
|
||||
"pt-telegram": {
|
||||
"name": "Telegram de OpenStreetMap en Portugal",
|
||||
"description": "Grupo de Telegram de la comunidad portuguesa de OpenStreetMap {url}"
|
||||
},
|
||||
"si-forum": {
|
||||
"name": "Foro de OpenStreetMap Eslovenia",
|
||||
"description": "Foro de la comunidad OpenStreetMap en Eslovenia"
|
||||
|
@ -10979,6 +11056,10 @@
|
|||
"name": "Club de geografía",
|
||||
"description": "El capítulo de YouthMappers en la Universidad de Western Michigan"
|
||||
},
|
||||
"geogeeks_perth_meetup": {
|
||||
"name": "Grupo de Meetup de GeoGeeks Perth",
|
||||
"description": "Grupo de reuniones basado en Perth para personas interesadas en mapas, datos geoespaciales y código abierto. Estaremos trabajando en cualquier cosa que implique un sentido de lugar."
|
||||
},
|
||||
"talk-au": {
|
||||
"name": "Lista de correo Talk-au",
|
||||
"description": "Lugar para que los mapeadores australianos chateen"
|
||||
|
@ -11035,6 +11116,10 @@
|
|||
"description": "Únase a la comunidad de OpenStreetMap Brasília en Telegram",
|
||||
"extendedDescription": "Únase a la comunidad para obtener más información sobre OpenStreetMap, hacer preguntas o participar en nuestras reuniones. ¡Todos son bienvenidos!"
|
||||
},
|
||||
"OSM-br-discord": {
|
||||
"name": "Discord de OpenStreetMap Brasil",
|
||||
"description": "Únete a la comunidad de OpenStreetMap Brasil en Discord"
|
||||
},
|
||||
"OSM-br-mailinglist": {
|
||||
"name": "Lista de correo Talk-br",
|
||||
"description": "Una lista de correo para discutir OpenStreetMap en Brasil"
|
||||
|
@ -11172,6 +11257,18 @@
|
|||
"name": "Lista de correo de Talk-uy",
|
||||
"description": "Talk-uy es la lista de correo oficial de la comunidad uruguaya de OSM"
|
||||
},
|
||||
"ve-forum": {
|
||||
"name": "Foro de OpenStreetMap VE",
|
||||
"description": "Foro web de OpenStreetMap Venezuela"
|
||||
},
|
||||
"ve-mailinglist": {
|
||||
"name": "Lista de correo de Talk-ve",
|
||||
"description": "Talk-ve es la lista de correo oficial de la comunidad OSM de Venezuela"
|
||||
},
|
||||
"ve-telegram": {
|
||||
"name": "Telegram de OpenStreetMap Venezuela",
|
||||
"description": "Únase a la comunidad de OpenStreetMap Venezuela en Telegram"
|
||||
},
|
||||
"LATAM-Facebook": {
|
||||
"name": "Facebook de OpenStreetMap Latam",
|
||||
"description": "OpenStreetMap Latam en Facebook"
|
||||
|
|
6
vendor/assets/iD/iD/locales/et.json
vendored
6
vendor/assets/iD/iD/locales/et.json
vendored
|
@ -1115,12 +1115,6 @@
|
|||
"horse_riding": {
|
||||
"label": "Ratsutamine"
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"indoor": {
|
||||
"label": "Siseruum"
|
||||
},
|
||||
|
|
18
vendor/assets/iD/iD/locales/fa.json
vendored
18
vendor/assets/iD/iD/locales/fa.json
vendored
|
@ -115,7 +115,7 @@
|
|||
"annotation": "تگها تغییر یافت."
|
||||
},
|
||||
"circularize": {
|
||||
"title": "دایره کردن",
|
||||
"title": "دایره",
|
||||
"description": {
|
||||
"line": "این خط را دایرهای کنید.",
|
||||
"area": "این محدوده را دایرهای کنید."
|
||||
|
@ -496,7 +496,7 @@
|
|||
},
|
||||
"redo": {
|
||||
"tooltip": "ازنو: {action}",
|
||||
"nothing": "چیزی برای ازنو انجامدادن نیست."
|
||||
"nothing": "چیزی برای انجام دوباره نیست."
|
||||
},
|
||||
"tooltip_keyhint": "میانبر:",
|
||||
"browser_notice": "این ویرایشگر از مرورگرهای کروم، سافاری، اپرا و اینترنت اکسپلورر ۱۱ و ویرایشهای جدیدتر آن پشتیبانی میکند. لطفاً مرورگر خود را بهروز کنید یا از Potlatch 2 برای ویرایش نقشه استفاده کنید.",
|
||||
|
@ -2301,7 +2301,7 @@
|
|||
"rotate": "چرخاندن عارضههای انتخابشده",
|
||||
"orthogonalize": "قائمهکردن گوشههای یک خط یا محدوده",
|
||||
"straighten": "مسقیمکردن یک خط یا بهخطکردن نقطهها",
|
||||
"circularize": "دایرهکردن یک خط بسته یا محدوده",
|
||||
"circularize": "دایره کردن یک خط بسته یا محدوده",
|
||||
"reflect_long": "بازتاب عارضهها حول قطر بزرگتر",
|
||||
"reflect_short": "بازتاب عارضهها حول قطر کوچکتر",
|
||||
"delete": "حذف عارضههای انتخابشده"
|
||||
|
@ -3096,12 +3096,6 @@
|
|||
"undefined": "خیر"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "یاتا"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ایکائو"
|
||||
},
|
||||
"incline": {
|
||||
"label": "شیب"
|
||||
},
|
||||
|
@ -4669,7 +4663,7 @@
|
|||
"name": "ساختمان"
|
||||
},
|
||||
"building/apartments": {
|
||||
"name": "آپارتمان",
|
||||
"name": "ساختمان آپارتمانی",
|
||||
"terms": "ساختمان چندطبقه"
|
||||
},
|
||||
"building/barn": {
|
||||
|
@ -5092,7 +5086,7 @@
|
|||
},
|
||||
"highway/footway": {
|
||||
"name": "راه پیاده",
|
||||
"terms": "پیاده روی, پیاده, پا, پیاده گردی, تریل, مسیر پیاده"
|
||||
"terms": "پیاده, پیاده روی, پا, پیاده گردی, تریل, مسیر پیاده"
|
||||
},
|
||||
"highway/footway/conveying": {
|
||||
"name": "راه پیاده متحرک",
|
||||
|
@ -5418,7 +5412,7 @@
|
|||
"terms": "منطقه مسکونی, محدوده مسکونی, ناحیه مسکونی, محوطه مسکونی, محیط مسکونی"
|
||||
},
|
||||
"landuse/residential/apartments": {
|
||||
"name": "مجتمع آپارتمانی"
|
||||
"name": "محدوده مجتمع آپارتمانی"
|
||||
},
|
||||
"landuse/retail": {
|
||||
"name": "منطقه خرید و فروش"
|
||||
|
|
93
vendor/assets/iD/iD/locales/fi.json
vendored
93
vendor/assets/iD/iD/locales/fi.json
vendored
|
@ -19,6 +19,7 @@
|
|||
},
|
||||
"modes": {
|
||||
"add_feature": {
|
||||
"title": "Lisää karttakohde",
|
||||
"key": "Välilehti",
|
||||
"result": "{count} tulos",
|
||||
"results": "{count} tulosta"
|
||||
|
@ -203,10 +204,26 @@
|
|||
}
|
||||
},
|
||||
"downgrade": {
|
||||
"title": "Yksinkertaista",
|
||||
"description": {
|
||||
"building_address": "Poista kaikki osoitteet ja rakennukset ilman ominaisuustietoja",
|
||||
"building_address": "Poista kaikki muut ominaisuustiedot paitsi osoite- ja rakennustiedot.",
|
||||
"building": "Poista kaikki rakennukset ilman ominaisuustietoja.",
|
||||
"address": "Poista kaikki osoitteet ilman ominaisuustietoja."
|
||||
"address": "Poista kaikki muut ominaisuustiedot paitsi osoitteet."
|
||||
},
|
||||
"annotation": {
|
||||
"building": {
|
||||
"single": "Karttakohde yksinkertaistettu tavalliseksi rakennukseksi.",
|
||||
"multiple": "{n} karttakohdetta yksinkertaistettu tavalliseksi rakennukseksi."
|
||||
},
|
||||
"address": {
|
||||
"single": "Karttakohde yksinkertaistettu pelkäksi osoitteeksi.",
|
||||
"multiple": "{n} karttakohdetta yksinkertaistettu pelkäksi osoitteeksi."
|
||||
},
|
||||
"multiple": "Yksinkertaistettu {n} karttakohdetta"
|
||||
},
|
||||
"has_wikidata_tag": {
|
||||
"single": "Tätä kohdetta ei voi yksinkertaistaa, sillä se on kytketty Wikidata-tietokantaan.",
|
||||
"multiple": "Näitä kohteita ei voi yksinkertaistaa, sillä jotknin niistä on kytketty Wikidata-tietokantaan."
|
||||
}
|
||||
},
|
||||
"add_member": {
|
||||
|
@ -718,7 +735,7 @@
|
|||
"tooltip": "Rakennukset, katokset, autotallit jne."
|
||||
},
|
||||
"building_parts": {
|
||||
"description": "Rakennuksen osat",
|
||||
"description": "Rakennusten osat",
|
||||
"tooltip": "3D-rakennukset ja -kattokomponentit"
|
||||
},
|
||||
"indoor": {
|
||||
|
@ -1184,7 +1201,7 @@
|
|||
"open_data_h": "Avoin data",
|
||||
"open_data": "Tekemäsi muokkaukset näkyvät kaikille käyttäjille. Muokkauksesi voi perustua paikallistuntemukseen, paikan päällä tehtyihin havaintoihin tai ilmakuva- ja katutasokuvamateriaaleihin. Tietojen kopiointi kaupallisista lähteistä, kuten Google-kartoista, [on ehdottomasti kielletty](https://www.openstreetmap.org/copyright).",
|
||||
"before_start_h": "Ennen aloittamista",
|
||||
"before_start": "Tutustu huolellisesti OpenStreetMapiin ja tähän muokkausohjelmaan ennen muokkaamisen aloittamista. Tämän kartanmuokkausohjelman aloitusoppaan avulla voit harjoitella interaktiivisesti OpenStreetMapin muokkaamista. Aloita harjoittelu napsauttamalla Aloitusopas - se vie vain 15 minuuttia.",
|
||||
"before_start": "Tutustu huolellisesti OpenStreetMapiin ja tähän kartanmuokkausohjelmaan ennen muokkaamisen aloittamista. Aloitusoppaan avulla voit harjoitella muokkaamista vuorovaikutteisesti. Aloita harjoittelu napsauttamalla Aloitusopas - se vie vain 15 minuuttia.",
|
||||
"open_source_h": "Avoin lähdekoodi",
|
||||
"open_source": "Tämä avoimen lähdekoodin iD-ohjelman versio {version} perustuu vapaaehtoisten käyttäjien työhön. Lähdekoodi on saatavilla [GitHub-palvelusta](https://github.com/openstreetmap/iD).",
|
||||
"open_source_help": "Voit osallistua projektiin auttamalla ohjelman [kääntämisessä](https://github.com/openstreetmap/iD/blob/master/CONTRIBUTING.md#translating) tai [ilmoittamalla ohjelmistovirheistä](https://github.com/openstreetmap/iD/issues)."
|
||||
|
@ -2092,7 +2109,7 @@
|
|||
"name": "Luontokohteet"
|
||||
},
|
||||
"category-path": {
|
||||
"name": "Kävely- ja pyörätiet "
|
||||
"name": "Kävely- ja pyörätiet"
|
||||
},
|
||||
"category-rail": {
|
||||
"name": "Raidekohteet"
|
||||
|
@ -2171,6 +2188,15 @@
|
|||
"access_simple": {
|
||||
"label": "Sallittu käyttäjäryhmä"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Tyyppi",
|
||||
"options": {
|
||||
"all": "Kaikki",
|
||||
"alphabetic": "Aakkosellinen",
|
||||
"even": "Parillinen",
|
||||
"odd": "Pariton"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Osoite",
|
||||
"placeholders": {
|
||||
|
@ -2437,7 +2463,8 @@
|
|||
"label": "Liikkeen suunta",
|
||||
"options": {
|
||||
"backward": "taaksepäin",
|
||||
"forward": "eteenpäin"
|
||||
"forward": "eteenpäin",
|
||||
"reversible": "Suuntaa vaihtava"
|
||||
}
|
||||
},
|
||||
"country": {
|
||||
|
@ -2559,6 +2586,10 @@
|
|||
"label": "Laitteet",
|
||||
"placeholder": "1, 2, 3..."
|
||||
},
|
||||
"diameter": {
|
||||
"label": "Läpimitta",
|
||||
"placeholder": "5 mm, 10 cm, 15 in, …"
|
||||
},
|
||||
"diaper": {
|
||||
"label": "Vaipanvaihtomahdollisuus"
|
||||
},
|
||||
|
@ -2816,6 +2847,12 @@
|
|||
"historic/wreck/date_sunk": {
|
||||
"label": "Uppoamispäivä"
|
||||
},
|
||||
"historic/wreck/visible_at_high_tide": {
|
||||
"label": "Näkyvissä nousuveden aikaan"
|
||||
},
|
||||
"historic/wreck/visible_at_low_tide": {
|
||||
"label": "Näkyvissä laskuveden aikaan"
|
||||
},
|
||||
"hoops": {
|
||||
"label": "Koritelineet",
|
||||
"placeholder": "1, 2, 4..."
|
||||
|
@ -2849,12 +2886,6 @@
|
|||
"undefined": "Ei"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Kaltevuus"
|
||||
},
|
||||
|
@ -2868,6 +2899,9 @@
|
|||
"indoor": {
|
||||
"label": "Sisätila"
|
||||
},
|
||||
"indoor_type": {
|
||||
"label": "Tyyppi"
|
||||
},
|
||||
"industrial": {
|
||||
"label": "Tyyppi"
|
||||
},
|
||||
|
@ -2985,6 +3019,9 @@
|
|||
"label": "Kerroslukumäärä",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"liaison": {
|
||||
"label": "Tyyppi"
|
||||
},
|
||||
"lit": {
|
||||
"label": "Valaistus"
|
||||
},
|
||||
|
@ -3206,8 +3243,31 @@
|
|||
},
|
||||
"piste/difficulty": {
|
||||
"label": "Haastavuus",
|
||||
"options": {
|
||||
"advanced": "Vaikea",
|
||||
"easy": "Helppo",
|
||||
"freeride": "Vapaalasku",
|
||||
"intermediate": "Keskivaikea",
|
||||
"novice": "Erittäin helppo"
|
||||
},
|
||||
"placeholder": "Helppo, keskivaikea, vaikea..."
|
||||
},
|
||||
"piste/difficulty_downhill": {
|
||||
"label": "Vaikeusaste",
|
||||
"options": {
|
||||
"advanced": "Vaikea (musta)",
|
||||
"easy": "Helppo (sininen)",
|
||||
"freeride": "Vapaalasku (off-piste)",
|
||||
"intermediate": "Keskivaikea (punainen)",
|
||||
"novice": "Erittäin helppo (vihreä / opettelu)"
|
||||
}
|
||||
},
|
||||
"piste/difficulty_nordic": {
|
||||
"label": "Vaikeusaste"
|
||||
},
|
||||
"piste/difficulty_skitour": {
|
||||
"label": "Vaikeusaste"
|
||||
},
|
||||
"piste/grooming": {
|
||||
"label": "Rinne/latupohja",
|
||||
"options": {
|
||||
|
@ -3289,6 +3349,7 @@
|
|||
"placeholder": "Etäisyys yhden desimaalin tarkkuudella (123.4)"
|
||||
},
|
||||
"railway/signal/direction": {
|
||||
"label": "Vaikutussuunta",
|
||||
"options": {
|
||||
"backward": "Taaksepäin",
|
||||
"both": "Molemmat/kaikki",
|
||||
|
@ -3639,7 +3700,7 @@
|
|||
"label": "Tyyppi"
|
||||
},
|
||||
"tracktype": {
|
||||
"label": "Raidetyyppi",
|
||||
"label": "Tiepohja",
|
||||
"options": {
|
||||
"grade1": "Kiinteä: päällystetty tai voimakkaasti pakkaantunut, kova pinta",
|
||||
"grade2": "Enimmäkseen kiinteä: soraa/kiveä johon sekoittunut hieman pehmeää maa-ainesta",
|
||||
|
@ -3659,6 +3720,7 @@
|
|||
"label": "Liikennemerkki"
|
||||
},
|
||||
"traffic_sign/direction": {
|
||||
"label": "Vaikutussuunta",
|
||||
"options": {
|
||||
"backward": "Taaksepäin",
|
||||
"both": "Molemmat/kaikki",
|
||||
|
@ -3669,6 +3731,7 @@
|
|||
"label": "Tyyppi"
|
||||
},
|
||||
"traffic_signals/direction": {
|
||||
"label": "Vaikutussuunta",
|
||||
"options": {
|
||||
"backward": "Taaksepäin",
|
||||
"both": "Molemmat/kaikki",
|
||||
|
@ -4038,7 +4101,7 @@
|
|||
"name": "Kongressikeskus"
|
||||
},
|
||||
"amenity/courthouse": {
|
||||
"name": "Käräjäoikeus",
|
||||
"name": "Tuomioistuin",
|
||||
"terms": "oikeustalo, käräjätalo, alioikeus, kihlakunnanoikeus, syyttäjäntalo, raastupa, käräjätuomari, syyttäjä, lautamies, käräjäoikeus"
|
||||
},
|
||||
"amenity/coworking_space": {
|
||||
|
@ -7279,7 +7342,7 @@
|
|||
"name": "Taajamaliikennemerkki"
|
||||
},
|
||||
"traffic_sign_vertex": {
|
||||
"name": "Liikennemerkk"
|
||||
"name": "Liikennemerkki"
|
||||
},
|
||||
"type/boundary": {
|
||||
"name": "Raja"
|
||||
|
|
121
vendor/assets/iD/iD/locales/fr.json
vendored
121
vendor/assets/iD/iD/locales/fr.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Utiliser des couches différentes"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Utiliser des couches ou des niveaux différents"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Utiliser des niveaux différents"
|
||||
},
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
"access_simple": {
|
||||
"label": "Accès autorisé"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Adresses interpolées",
|
||||
"options": {
|
||||
"all": "Toutes",
|
||||
"alphabetic": "Alphabétique",
|
||||
"even": "Paires",
|
||||
"odd": "Impaires"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Adresse",
|
||||
"placeholders": {
|
||||
|
@ -2650,6 +2662,10 @@
|
|||
"building": {
|
||||
"label": "Bâtiment "
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Niveaux souterrains",
|
||||
"placeholder": "2, 4, 6…"
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Nombre de niveaux",
|
||||
"placeholder": "2, 4, 6..."
|
||||
|
@ -3167,12 +3183,6 @@
|
|||
"undefined": "Non"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "Code AITA (*IATA*)"
|
||||
},
|
||||
"icao": {
|
||||
"label": "Code OACI (*ICAO*)"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Pente"
|
||||
},
|
||||
|
@ -3673,6 +3683,9 @@
|
|||
"power_supply": {
|
||||
"label": "Source de courant"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "École maternelle"
|
||||
},
|
||||
"produce": {
|
||||
"label": "Produits agricoles"
|
||||
},
|
||||
|
@ -4337,6 +4350,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "Interpolation d'adresse"
|
||||
},
|
||||
"address": {
|
||||
"name": "Adresse",
|
||||
"terms": "Adresse, localisation, BAN, address"
|
||||
|
@ -4639,6 +4655,10 @@
|
|||
"name": "Dojo",
|
||||
"terms": "dojo, arts martiaux, art martial, tatami, judo, karate, aikido, aïkido, kendo, jujitsu, jujutsu, ju-jitsu, ju-jutsu, jūjutsu, jiu-jitsu, akhara, dojang, gelanggang, silat melayu, heya, sumo, kalari, kalaripayat, sasaran, pencak silat, wuguan, wushu, shorinji kempo, yoseikan budo, budo, aïkibudo, kenjutsu, bujutsu, katana, wakizashi, bokken, kobudo, bo-jutsu, bojustu, kendō, bō-jutsu, taijitsu, taijutsu"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "Vestiaire",
|
||||
"terms": "vestiaire,cabine d'essayage,cabine de plage"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Eau potable",
|
||||
"terms": "eau potable, robinet, boire, fontaine d'eau, fontaine à eau, distributeur d'eau, eau, fontaine, drinking water"
|
||||
|
@ -6996,6 +7016,10 @@
|
|||
"name": "Silo-couloir",
|
||||
"terms": "Silo-couloir, trémie"
|
||||
},
|
||||
"man_made/cairn": {
|
||||
"name": "Cairn",
|
||||
"terms": "cairn,pierres,tas de cailloux,pile de cailloux"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "Cheminée",
|
||||
"terms": "Cheminée"
|
||||
|
@ -8409,6 +8433,10 @@
|
|||
"name": "Magasin de matériel hi-fi",
|
||||
"terms": "Magasin d'appareils audio-visuel"
|
||||
},
|
||||
"shop/hobby": {
|
||||
"name": "Magasin pour hobby (non spécifié)",
|
||||
"terms": "manga,figurine,modèle,modélisme"
|
||||
},
|
||||
"shop/houseware": {
|
||||
"name": "Magasin d’articles ménagers",
|
||||
"terms": "Vente d'articles de cuisine"
|
||||
|
@ -8601,6 +8629,10 @@
|
|||
"name": "Supermarché",
|
||||
"terms": "Supermarché"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "Magasin de matériel de piscine",
|
||||
"terms": "spa,cuve thermale,maintenance,piscine"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "Tailleur",
|
||||
"terms": "Habilleur, Giletier"
|
||||
|
@ -8743,6 +8775,10 @@
|
|||
"name": "Attraction touristique",
|
||||
"terms": "Attraction touristique"
|
||||
},
|
||||
"tourism/camp_pitch": {
|
||||
"name": "Parcelle dans un camping",
|
||||
"terms": "emplacement de camping,tente,caravane,camping-car,parcelle"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "Camping",
|
||||
"terms": "Terrain de camping,Site de camping,Aire de camping"
|
||||
|
@ -9859,12 +9895,18 @@
|
|||
"name": "Jeunes cartographes de l'Open University of Tanzania",
|
||||
"description": "Groupe des jeunes cartographes de l'Open University of Tanzania"
|
||||
},
|
||||
"ym-Sokoine-University-of-Agriculture": {
|
||||
"description": "Chapitre YouthMappers à l'Université d'Agriculture Sokoine"
|
||||
},
|
||||
"ym-University-of-Dar-es-Salaam": {
|
||||
"name": "YouthMappers à l'Université de Dar es Salaam",
|
||||
"description": "Chapitre YouthMappers à l'Université de Dar es Salaam"
|
||||
"description": "Chapitre YouthMappers à l'Université de Dar es Salaam",
|
||||
"extendedDescription": "Le but du chapitre YouthMappers de l'Université de Dar es Salaam est d'utiliser et de promouvoir les données open source et les technologies SIG pour cartographier les zones de catastrophe potentielle, fournir des ressources pour les interventions d'urgence, mettre en contact ses membres avec les organismes travaillant sur l'open source et les SIG dans la ville de Dar es Salaam, et contribuer aux besoins futurs de nos partenaires."
|
||||
},
|
||||
"ym-Busitema-University": {
|
||||
"description": "Chapitre YouthMappers à l'Université de Busitema"
|
||||
"name": "Good Mappers",
|
||||
"description": "Chapitre YouthMappers à l'Université de Busitema",
|
||||
"extendedDescription": "Good mappers est une équipe d'étudiants de l'Université de Busitema. Son principal objectif est de créer une communauté de cartographes expérimentés qui pourront contribuer à cartographier le monde."
|
||||
},
|
||||
"ym-Gulu-University": {
|
||||
"description": "Chapitre YouthMappers à l'Université de Gulu"
|
||||
|
@ -9875,6 +9917,9 @@
|
|||
"ym-Makerere-University": {
|
||||
"description": "Chapitre YouthMappers à l'Université de Makerere"
|
||||
},
|
||||
"ym-Mbarara-University-of-Science-and-Technology": {
|
||||
"description": "Chapitre YouthMappers à l'Université des Sciences et Technologies de Mbarara"
|
||||
},
|
||||
"ym-St.-Augustine-International-University": {
|
||||
"name": "YouthMappers à l'Université Internationale de St Augustine",
|
||||
"description": "Chapitre YouthMappers à l'Université Internationale de St. Augustine"
|
||||
|
@ -10008,6 +10053,9 @@
|
|||
"description": "Améliorez OpenStreetMap au Népal",
|
||||
"extendedDescription": "Vous cartographiez au Népal ? Vous avez des questions, vous souhaitez rencontrer la communauté ? Rejoignez-nous sur {Url}. Vous êtes tous les bienvenus !"
|
||||
},
|
||||
"ym-Kathmandu-University": {
|
||||
"description": "Chapitre YouthMappers à l'Université de Katmandou"
|
||||
},
|
||||
"OSM-Asia-mailinglist": {
|
||||
"name": "Liste de diffusion OpenStreetMap Asie",
|
||||
"description": "Talk-asia est la liste de diffusion officielle pour la communauté d'Asie"
|
||||
|
@ -10317,12 +10365,17 @@
|
|||
"description": "Liste de discussion OpenStreetMap Italie régionale pour Trentino."
|
||||
},
|
||||
"ym-Yarmouk-University": {
|
||||
"name": "YouthMappers à YU"
|
||||
"name": "YouthMappers à YU",
|
||||
"description": "Chapitre YouthMappers à l'Université de Yarmouk"
|
||||
},
|
||||
"kosovo-telegram": {
|
||||
"name": "OpenStreetMap Kosovo sur Telegram",
|
||||
"description": "Groupe Telegram public semi-officiel pour tout le Kosovo. Nous accueillons tous les cartographes de n'importe où dans toutes les langues."
|
||||
},
|
||||
"lu-mailinglist": {
|
||||
"name": "Liste de diffusion Talk-lu",
|
||||
"description": "Liste de diffusion officielle pour la communauté luxembourgeoise d'OSM"
|
||||
},
|
||||
"ym-Universit-Mohammed-V-Rabat": {
|
||||
"name": "Brahmapoutre à Rabat",
|
||||
"description": "Chapitre YouthMappers à l'Université Mohammed V de Rabat"
|
||||
|
@ -10351,6 +10404,13 @@
|
|||
"name": "Forum d'OpenStreetMap Pologne",
|
||||
"description": "Forum de la communauté polonaise d'OpenStreetMap"
|
||||
},
|
||||
"pt-mailinglist": {
|
||||
"name": "Liste de diffusion Talk-pt",
|
||||
"description": "Talk-pt est la liste de diffusion officielle de la communauté portugaise d'OSM"
|
||||
},
|
||||
"pt-telegram": {
|
||||
"description": "Groupe Telegram de la communauté portugaise d'OpenStreetMap {url}"
|
||||
},
|
||||
"si-forum": {
|
||||
"name": "Forum d'OpenStreetMap Slovénie",
|
||||
"description": "Forum de la communauté OpenStreetMap en Slovénie"
|
||||
|
@ -10375,6 +10435,9 @@
|
|||
"name": "YouthMappers à l'UAM",
|
||||
"description": "Chapitre YouthMappers à l'Université Autonome de Madrid"
|
||||
},
|
||||
"ym-Universidad-Politcnica-de-Madrid": {
|
||||
"description": "Chapitre YouthMappers à l'Université Polytechnique de Madrid"
|
||||
},
|
||||
"osm-se": {
|
||||
"name": "OpenStreetMap.se",
|
||||
"description": "Des nouvelles de la communauté OpenStreetMap suédoise"
|
||||
|
@ -10399,6 +10462,10 @@
|
|||
"name": "OpenStreetMap Suède sur Twitter",
|
||||
"description": "Suivez-nous sur Twitter : {url}"
|
||||
},
|
||||
"ym-Istanbul-Technical-University": {
|
||||
"name": "YouthMappers ITU",
|
||||
"description": "Chapitre YouthMappers à l'Université Technique d'Istanbul"
|
||||
},
|
||||
"Nottingham-OSM-pub-meetup": {
|
||||
"name": "Rencontres mensuelles dans un pub de East Midlands (Nottingham)",
|
||||
"description": "Rassemblement social pour les cartographes et les utilisateur d'East Midlands",
|
||||
|
@ -10424,6 +10491,10 @@
|
|||
"ym-University-of-Warwick": {
|
||||
"description": "Chapitre YouthMappers à l'Université de Warwick"
|
||||
},
|
||||
"ym-Sacred-Heart-Junior-College": {
|
||||
"name": "YouthMappers au Sacred Heart Junior College",
|
||||
"description": "Chapitre YouthMappers au Sacred Heart Junior College"
|
||||
},
|
||||
"OSM-CA-Slack": {
|
||||
"name": "Slack OSM-CA",
|
||||
"description": "Vous êtes tous les bienvenus ! Enregistrez-vous sur {signupUrl}."
|
||||
|
@ -10432,14 +10503,28 @@
|
|||
"name": "OpenStreetMap Vancouver",
|
||||
"description": "Cartographes et utilisateurs d'OpenStreetMap à Vancouver"
|
||||
},
|
||||
"ym-Universidad-de-Costa-Rica": {
|
||||
"description": "Chapitre YouthMappers à l'Université du Costa Rica"
|
||||
},
|
||||
"OSM-CU-telegram": {
|
||||
"name": "OSM Cuba sur Telegram",
|
||||
"description": "Chat Telegram d'OpenStreetMap Cuba"
|
||||
},
|
||||
"ym-Universidad-Nacional-Autnoma-de-Honduras": {
|
||||
"description": "Chapitre YouthMappers à l'Université Nationale Autonome du Honduras"
|
||||
},
|
||||
"OSM-NI-telegram": {
|
||||
"name": "OSM Nicaragua sur Telegram",
|
||||
"description": "Chat Telegram d'OpenStreetMap Nicaragua"
|
||||
},
|
||||
"ym-University-of-Panama": {
|
||||
"name": "YouthMappers UP",
|
||||
"description": "Chapitre YouthMappers à l'Université du Panama"
|
||||
},
|
||||
"ym-Universidad-de-Puerto-Rico-Rio-Piedras": {
|
||||
"name": "YouthMappers à l'UPR",
|
||||
"description": "Chapitre YouthMappers à l'Université de Puerto Rico - Rio Piedras"
|
||||
},
|
||||
"Bay-Area-OpenStreetMappers": {
|
||||
"name": "Bay Area OpenStreetMappers",
|
||||
"description": "Améliorez OpenStreetMap dans la Bay Area",
|
||||
|
@ -10552,8 +10637,15 @@
|
|||
"description": "Nous aidons OpenStreetMap à grandir et à s'améliorer aux États-Unis.",
|
||||
"extendedDescription": "Nous soutenons OpenStreetMap en organisant des conférences annuelles, en fournissant des moyens à la communauté, en établissant des partenariats, et en relayant les informations. Rejoignez OpenStreetMap États-Unis ici: {signupUrl}",
|
||||
"events": {
|
||||
"sotmus2019-cfs": {
|
||||
"name": "Proposez un sujet pour le SotM-US 2019",
|
||||
"description": "Nous invitons tous les membres de la communauté OpenStreetMap à partager leurs idées et leurs propositions d'intervention pour la rencontre State of the Map US 2019. Que vous soyez nouveau ou expérimenté, n'hésitez pas à vous manifester!",
|
||||
"where": "Minneapolis, Minnesota"
|
||||
},
|
||||
"sotmus2019": {
|
||||
"name": "State of the Map USA 2019"
|
||||
"name": "State of the Map USA 2019",
|
||||
"description": "Rejoignez la communauté OpenStreetMap au State of the Map US à Minneapolis, Minnesota. Établissez des contacts avec d'autres cartographes, entrepreneurs, agences gouvernementales et à but non lucratif, collaborant tous à la carte libre du monde.",
|
||||
"where": "Minneapolis, Minnesota"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
@ -10585,9 +10677,18 @@
|
|||
"description": "Cartographes et utilisateurs d'OpenStreetMap autour de Grand Junction, CO",
|
||||
"extendedDescription": "Le but de ce groupe est de présenter OpenStreetMap aux communautés, développer une communauté de cartographes, créer la meilleure donnée géographique possible par n'importe quel moyen et finalement d'élaborer une stratégie pour communiquer cette donnée aux communautés. Imaginez des panneaux indicatifs sur les chemins de randonnées ! Imaginez un meilleur développement des voies cyclables ! Imaginez tout ce que vous voulez, c'est le plaisir d'OpenStreetMap !"
|
||||
},
|
||||
"ym-Central-Washington-University": {
|
||||
"description": "Chapitre YouthMappers à la Central Washington University"
|
||||
},
|
||||
"ym-Jacksonville-State-University": {
|
||||
"description": "Chapitre YouthMappers à l'Université d’État de Jacksonville"
|
||||
},
|
||||
"ym-Kansas-State-University": {
|
||||
"description": "Chapitre YouthMappers à l'Université d’État du Kansas"
|
||||
},
|
||||
"ym-McGill-University": {
|
||||
"description": "Chapitre YouthMappers à l'Université McGill"
|
||||
},
|
||||
"ym-Miami-University": {
|
||||
"description": "Chapitre YouthMappers à l'Université de Miami"
|
||||
},
|
||||
|
|
83
vendor/assets/iD/iD/locales/gl.json
vendored
83
vendor/assets/iD/iD/locales/gl.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Emprega capas diferentes"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Emprega diferentes capas ou niveis"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Emprega niveis diferentes"
|
||||
},
|
||||
|
@ -3163,12 +3166,6 @@
|
|||
"undefined": "Non"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Inclinación"
|
||||
},
|
||||
|
@ -4496,7 +4493,7 @@
|
|||
},
|
||||
"amenity/bicycle_rental": {
|
||||
"name": "Alugamento de bicicletas",
|
||||
"terms": "bici, bicicleta, alugueiro, préstamo"
|
||||
"terms": "bici, bicicleta, alugueiro, préstamo, alugamento, locación"
|
||||
},
|
||||
"amenity/bicycle_repair_station": {
|
||||
"name": "Lugar para ferramentas de reparación de bicicletas",
|
||||
|
@ -4507,8 +4504,8 @@
|
|||
"terms": "cervexa, bar, terraza, xardín, ó ar libre, ao aire libre, biergarten"
|
||||
},
|
||||
"amenity/boat_rental": {
|
||||
"name": "Aluguer de botes",
|
||||
"terms": "aluguer, bote, barca, lancha"
|
||||
"name": "Alugamento de embarcacións",
|
||||
"terms": "alugueiro, alugamento, locación, bote, barca, lancha, embarcación, embarcacións"
|
||||
},
|
||||
"amenity/bureau_de_change": {
|
||||
"name": "Troco de divisas",
|
||||
|
@ -4526,8 +4523,8 @@
|
|||
"terms": "car pool, car pooling, transporte, automóbil, vehículo, auto, carro, coche, compartido"
|
||||
},
|
||||
"amenity/car_rental": {
|
||||
"name": "Aluguer de automóbiles",
|
||||
"terms": "aluguer, coche, automóbil, rent-a-car"
|
||||
"name": "Alugamento de automóbiles",
|
||||
"terms": "alugueiro, alugamento, locación, coche, automóbil, vehículo, rent-a-car"
|
||||
},
|
||||
"amenity/car_sharing": {
|
||||
"name": "Auto compartido",
|
||||
|
@ -4555,7 +4552,7 @@
|
|||
},
|
||||
"amenity/clinic": {
|
||||
"name": "Clínica ou centro de saúde",
|
||||
"terms": "clínica, médico, saúde, urxencias"
|
||||
"terms": "clínica, médico, saúde, urxencias, clinica, ambulatorio, saude"
|
||||
},
|
||||
"amenity/clinic/abortion": {
|
||||
"name": "Clínica de aborto",
|
||||
|
@ -4614,7 +4611,7 @@
|
|||
},
|
||||
"amenity/doctors": {
|
||||
"name": "Doutor",
|
||||
"terms": "doutor, médico, clínica, saúde"
|
||||
"terms": "doutor, médico, clínica, saúde, clinica, saude"
|
||||
},
|
||||
"amenity/dojo": {
|
||||
"name": "Dojo/academia de artes marciais",
|
||||
|
@ -4691,7 +4688,7 @@
|
|||
},
|
||||
"amenity/hospital": {
|
||||
"name": "Hospital",
|
||||
"terms": "hospital, clínica, urxencias, sanidade, saúde, médico"
|
||||
"terms": "clínica, urxencias, sanidade, saúde, médico, clinica, saude, ambulatorio"
|
||||
},
|
||||
"amenity/hunting_stand": {
|
||||
"name": "Stand de Caza"
|
||||
|
@ -4859,7 +4856,8 @@
|
|||
"terms": "centro de reciclaxe, punto limpo"
|
||||
},
|
||||
"amenity/recycling_container": {
|
||||
"name": "Colector de reciclaxe"
|
||||
"name": "Colector de reciclaxe",
|
||||
"terms": "reciclaxe, colector, contenedor, contedor, lixo, basura"
|
||||
},
|
||||
"amenity/register_office": {
|
||||
"name": "Oficina do rexistro"
|
||||
|
@ -5137,7 +5135,7 @@
|
|||
},
|
||||
"attraction/drop_tower": {
|
||||
"name": "Torre de caída",
|
||||
"terms": "caída, torre, atracción"
|
||||
"terms": "caída, torre, atracción, pilar de caída, piar de caída, xogo mecánico, xogo de feria, feira"
|
||||
},
|
||||
"attraction/maze": {
|
||||
"name": "Labirinto"
|
||||
|
@ -6040,7 +6038,7 @@
|
|||
"name": "Conca"
|
||||
},
|
||||
"landuse/brownfield": {
|
||||
"name": "Solar anteriormente edificado"
|
||||
"name": "Soar urbanizado abandonado"
|
||||
},
|
||||
"landuse/cemetery": {
|
||||
"name": "Cemiterio"
|
||||
|
@ -6253,6 +6251,10 @@
|
|||
"leisure/nature_reserve": {
|
||||
"name": "Reserva natural"
|
||||
},
|
||||
"leisure/outdoor_seating": {
|
||||
"name": "Área de asentos ó exterior",
|
||||
"terms": "ó ar libre, ó aire libre, ao ar libre, ao aire libre, xardín de cervexa, comedor, cafetería, cafetaría, cafeteria, restaurante, pub, bar, patio, terraza, mesas, estar, sombrilla, parasol, antuca, catasol"
|
||||
},
|
||||
"leisure/park": {
|
||||
"name": "Parque",
|
||||
"terms": "parque, zona verde, xardín, alameda"
|
||||
|
@ -6449,7 +6451,24 @@
|
|||
"terms": "vértice xeodésico, xeodesia"
|
||||
},
|
||||
"man_made/tower": {
|
||||
"name": "Torre"
|
||||
"name": "Torre",
|
||||
"terms": "torre, mastro, edificio, estrutura alta"
|
||||
},
|
||||
"man_made/tower/bell_tower": {
|
||||
"name": "Campanil",
|
||||
"terms": "campanario, campanil, torre da igrexa, campá, sino"
|
||||
},
|
||||
"man_made/tower/communication": {
|
||||
"name": "Torre de comunicación",
|
||||
"terms": "antena, torre de transmisión, torre de telefonía celular, torre de telefonía móbil, mastro de comunicación, torre de comunicación, torre adaptada, torre de telefonía móbil, mastro de radio, torre de radio, torre de televisión, mastro de transmisión, torre de transmisión, torre de televisión"
|
||||
},
|
||||
"man_made/tower/defensive": {
|
||||
"name": "Torre defensiva",
|
||||
"terms": "torre fortificada, torre do castelo"
|
||||
},
|
||||
"man_made/tower/observation": {
|
||||
"name": "Torre de observación",
|
||||
"terms": "torre de vixiancia, torre de lume"
|
||||
},
|
||||
"man_made/wastewater_plant": {
|
||||
"name": "Depuradora de augas",
|
||||
|
@ -6850,17 +6869,27 @@
|
|||
"name": "Subestación"
|
||||
},
|
||||
"power/tower": {
|
||||
"name": "Torre de Alta Tensión"
|
||||
"name": "Torre de alta tensión",
|
||||
"terms": "torre de alto voltaxe, torres de alta tensión, torre de electricidade"
|
||||
},
|
||||
"power/transformer": {
|
||||
"name": "Transformador"
|
||||
},
|
||||
"public_transport/platform/light_rail": {
|
||||
"name": "Plataforma de tren lixeiro"
|
||||
},
|
||||
"public_transport/platform/light_rail_point": {
|
||||
"name": "Paraxe / Plataforma de tren lixeiro"
|
||||
},
|
||||
"public_transport/station": {
|
||||
"name": "Estación de transporte público"
|
||||
},
|
||||
"public_transport/station_bus": {
|
||||
"name": "Estación de autobuses"
|
||||
},
|
||||
"public_transport/station_light_rail": {
|
||||
"name": "Estación de tren lixeiro"
|
||||
},
|
||||
"public_transport/station_subway": {
|
||||
"name": "Estación de metro"
|
||||
},
|
||||
|
@ -6913,6 +6942,9 @@
|
|||
"name": "Paso a nivel (estrada)",
|
||||
"terms": "paso a nivel, cruzamento ferroviario, paso ferroviario, cruzamento a nivel"
|
||||
},
|
||||
"railway/light_rail": {
|
||||
"name": "Tren lixeiro"
|
||||
},
|
||||
"railway/milestone": {
|
||||
"name": "Fito de Vía"
|
||||
},
|
||||
|
@ -7127,6 +7159,10 @@
|
|||
"name": "Tenda de enmarcado",
|
||||
"terms": "enmarcado, marco, enmarcar, cadro"
|
||||
},
|
||||
"shop/frozen_food": {
|
||||
"name": "Conxelados",
|
||||
"terms": "alimentos, comidas, conxeladas, conxelados"
|
||||
},
|
||||
"shop/funeral_directors": {
|
||||
"name": "Funeraria",
|
||||
"terms": "funeraria, tanatorio, velorio, abellón"
|
||||
|
@ -7185,6 +7221,10 @@
|
|||
"shop/leather": {
|
||||
"name": "Tenda de peles"
|
||||
},
|
||||
"shop/lighting": {
|
||||
"name": "Tenda de iluminación",
|
||||
"terms": "Iluminación fluorescente, lámpadas, LEDs, luminarias"
|
||||
},
|
||||
"shop/locksmith": {
|
||||
"name": "Cerralleiro",
|
||||
"terms": "cerralleiro, zarralleiro, cerraxeiro, chaves, duplicado de chaves, copia de chaves"
|
||||
|
@ -7287,7 +7327,7 @@
|
|||
"name": "Papelaría"
|
||||
},
|
||||
"shop/storage_rental": {
|
||||
"name": "Aluguer de almacéns"
|
||||
"name": "Alugamento de almacéns"
|
||||
},
|
||||
"shop/supermarket": {
|
||||
"name": "Supermercado"
|
||||
|
@ -7547,6 +7587,9 @@
|
|||
"type/route/horse": {
|
||||
"name": "Rota de equitación"
|
||||
},
|
||||
"type/route/light_rail": {
|
||||
"name": "Rota de tren lixeiro"
|
||||
},
|
||||
"type/route/pipeline": {
|
||||
"name": "Rota de tubaxe"
|
||||
},
|
||||
|
|
110
vendor/assets/iD/iD/locales/he.json
vendored
110
vendor/assets/iD/iD/locales/he.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "שימוש בשכבות שונות"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "להשתמש בשכבות או רמות שונים"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "שימוש ברמות שונות"
|
||||
},
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
"access_simple": {
|
||||
"label": "הכניסה מותרת"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "סוג",
|
||||
"options": {
|
||||
"all": "הכול",
|
||||
"alphabetic": "אלפביתית",
|
||||
"even": "זוגית",
|
||||
"odd": "אי־זוגית"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "כתובת",
|
||||
"placeholders": {
|
||||
|
@ -2650,6 +2662,10 @@
|
|||
"building": {
|
||||
"label": "בניין"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "קומות תת־קרקעיות",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "קומות בבניין",
|
||||
"placeholder": "2, 4, 6…"
|
||||
|
@ -3168,10 +3184,10 @@
|
|||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
"label": "קוד נמל תעופה של IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
"label": "קוד נמל תעופה של ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "שיפוע"
|
||||
|
@ -3673,12 +3689,18 @@
|
|||
"power_supply": {
|
||||
"label": "הספק חשמל"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "גן חובה"
|
||||
},
|
||||
"produce": {
|
||||
"label": "ירקות"
|
||||
},
|
||||
"product": {
|
||||
"label": "מוצרים"
|
||||
},
|
||||
"public_bookcase/type": {
|
||||
"label": "סוג"
|
||||
},
|
||||
"railway": {
|
||||
"label": "סוג"
|
||||
},
|
||||
|
@ -4337,6 +4359,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "שיטת חלוקת כתובות"
|
||||
},
|
||||
"address": {
|
||||
"name": "כתובת",
|
||||
"terms": "כתובת,מען"
|
||||
|
@ -4430,6 +4455,10 @@
|
|||
"name": "מנחת מסוקים",
|
||||
"terms": "מנחת מסוקים"
|
||||
},
|
||||
"aeroway/holding_position": {
|
||||
"name": "תבנית ריתוק כלי טיס",
|
||||
"terms": "תנוחת המתנה כלי טיס,תנוחת מעגל המתנה כלי טיס,תבנית המתנה מטוס,תבנית מעגל המתנה מטוס,תנוחת ריתוק מטוס,תנוחת ריתוק כלי טיס"
|
||||
},
|
||||
"aeroway/jet_bridge": {
|
||||
"name": "גשר עלייה למטוס",
|
||||
"terms": "שרוול עליה למטוס,שרוול נוסעים"
|
||||
|
@ -4639,6 +4668,10 @@
|
|||
"name": "דוג׳ו / מרכז לאומנויות לחימה",
|
||||
"terms": "אקדמיה למקצועות לחימה"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "חדר הלבשה",
|
||||
"terms": "חדר החלפה,תא מדידה,חדר מדידה,תא הלבשה"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "מי שתייה",
|
||||
"terms": "מי שתייה"
|
||||
|
@ -4795,6 +4828,10 @@
|
|||
"name": "חניון רב קומות",
|
||||
"terms": "מבנה חנייה"
|
||||
},
|
||||
"amenity/parking/park_ride": {
|
||||
"name": "חניון חנה וסע",
|
||||
"terms": "מגרש חניה,חניון,חניון תחבורה ציבורית,מתחם חנייה"
|
||||
},
|
||||
"amenity/parking/underground": {
|
||||
"name": "חנייה תת־קרקעית",
|
||||
"terms": "חניית כלי רכב,חנייה למכוניות,חניון,חניון לילה,חנייה על פני הקרקע,חניית משאיות,חניית מכוניות"
|
||||
|
@ -5199,11 +5236,11 @@
|
|||
},
|
||||
"amenity/veterinary": {
|
||||
"name": "וטרינר",
|
||||
"terms": "וטרינר"
|
||||
"terms": "רופא חיות"
|
||||
},
|
||||
"amenity/waste/dog_excrement": {
|
||||
"name": "שקי-קקי",
|
||||
"terms": "שקי-קקי"
|
||||
"terms": "שקית לאיסוף צרכים"
|
||||
},
|
||||
"amenity/waste_basket": {
|
||||
"name": "סל אשפה",
|
||||
|
@ -5339,14 +5376,16 @@
|
|||
"terms": "גדר"
|
||||
},
|
||||
"barrier/fence/railing": {
|
||||
"name": "מעקה"
|
||||
"name": "מעקה",
|
||||
"terms": "מעקה מדרגות"
|
||||
},
|
||||
"barrier/gate": {
|
||||
"name": "שער",
|
||||
"terms": "שער"
|
||||
},
|
||||
"barrier/guard_rail": {
|
||||
"name": "מעקה בטיחות"
|
||||
"name": "מעקה בטיחות",
|
||||
"terms": "מעקה"
|
||||
},
|
||||
"barrier/hedge": {
|
||||
"name": "גדר חיה",
|
||||
|
@ -5361,17 +5400,20 @@
|
|||
"terms": "שפת המדרכה,אבני השפה,מדרכה,אבני שפה"
|
||||
},
|
||||
"barrier/kerb/flush": {
|
||||
"name": "אבן שפה משופעת"
|
||||
"name": "אבן שפה משופעת",
|
||||
"terms": "מדרכה משופעת"
|
||||
},
|
||||
"barrier/kerb/lowered": {
|
||||
"name": "שפת מדרכה מונמכת",
|
||||
"terms": "שפת המדרכה,אבני שפה מונמכות,מדרכה מונמכת,אבני שפה מונמכות"
|
||||
},
|
||||
"barrier/kerb/raised": {
|
||||
"name": "אבן שפה מוגבהת"
|
||||
"name": "אבן שפה מוגבהת",
|
||||
"terms": "אבן שפה עם הגבהה,מדרכה מוגבהת,הגבהת מדרכה"
|
||||
},
|
||||
"barrier/kerb/rolled": {
|
||||
"name": "תעלה חד־שיפועית"
|
||||
"name": "תעלה חד־שיפועית",
|
||||
"terms": "תעלת ניקוז,מרזב"
|
||||
},
|
||||
"barrier/kissing_gate": {
|
||||
"name": "מחסום חיות",
|
||||
|
@ -5425,7 +5467,8 @@
|
|||
"terms": "בניין"
|
||||
},
|
||||
"building/apartments": {
|
||||
"name": "בניין דירות"
|
||||
"name": "בניין דירות",
|
||||
"terms": "בניין מגורים"
|
||||
},
|
||||
"building/barn": {
|
||||
"name": "אסם",
|
||||
|
@ -5636,7 +5679,8 @@
|
|||
"terms": "מועדון"
|
||||
},
|
||||
"club/sport": {
|
||||
"name": "מועדון ספורט"
|
||||
"name": "מועדון ספורט",
|
||||
"terms": "מועדון אתלטיקה,מועדון התעמלות,מכון התעמלות,מכון כושר,מגרש אתלטיקה,רחבת אתלטיקה"
|
||||
},
|
||||
"craft": {
|
||||
"name": "מלאכה",
|
||||
|
@ -5684,7 +5728,7 @@
|
|||
},
|
||||
"craft/chimney_sweeper": {
|
||||
"name": "מנקה ארובות",
|
||||
"terms": "מנקה ארובות"
|
||||
"terms": "מנקת ארובות"
|
||||
},
|
||||
"craft/clockmaker": {
|
||||
"name": "שען",
|
||||
|
@ -5708,7 +5752,7 @@
|
|||
},
|
||||
"craft/electronics_repair": {
|
||||
"name": "חנות תיקון אלקטרוניקה",
|
||||
"terms": "חנות תיקון אלקטרוניקה"
|
||||
"terms": "חנות תיקון מוצרי אלקטרוניקה"
|
||||
},
|
||||
"craft/floorer": {
|
||||
"name": "ריצוף",
|
||||
|
@ -5776,7 +5820,7 @@
|
|||
"terms": "שרברבית"
|
||||
},
|
||||
"craft/pottery": {
|
||||
"name": "כלי חרס",
|
||||
"name": "קדרות",
|
||||
"terms": "כלי חרס"
|
||||
},
|
||||
"craft/rigger": {
|
||||
|
@ -5797,7 +5841,7 @@
|
|||
},
|
||||
"craft/sawmill": {
|
||||
"name": "מנסרה",
|
||||
"terms": "מנסרה"
|
||||
"terms": "נגריה,בית מלאכה,בית עץ"
|
||||
},
|
||||
"craft/scaffolder": {
|
||||
"name": "התקנת פיגומים",
|
||||
|
@ -5926,6 +5970,9 @@
|
|||
"name": "מקום צליחה",
|
||||
"terms": "מקום צליחה"
|
||||
},
|
||||
"ford_line": {
|
||||
"name": "מעברה"
|
||||
},
|
||||
"golf/bunker": {
|
||||
"name": "מכשול חול",
|
||||
"terms": "מכשול חול"
|
||||
|
@ -5951,7 +5998,8 @@
|
|||
"terms": "חור גולף"
|
||||
},
|
||||
"golf/lateral_water_hazard": {
|
||||
"name": "מכשול מים צדדי"
|
||||
"name": "מכשול מים צדדי",
|
||||
"terms": "נקודת חצייה,מעבר על מים"
|
||||
},
|
||||
"golf/path": {
|
||||
"name": "נתיב הליכה לגולף",
|
||||
|
@ -6018,7 +6066,7 @@
|
|||
},
|
||||
"healthcare/physiotherapist": {
|
||||
"name": "פיזיותרפיה",
|
||||
"terms": "פזיווטרפיה"
|
||||
"terms": "פיזיוטרפיה"
|
||||
},
|
||||
"healthcare/podiatrist": {
|
||||
"name": "פודיאטור",
|
||||
|
@ -6026,15 +6074,15 @@
|
|||
},
|
||||
"healthcare/psychotherapist": {
|
||||
"name": "פסיכותרפיסט",
|
||||
"terms": "פסיכותרפיסט"
|
||||
"terms": "פסיכותרפיסטית,בריאות הנפש"
|
||||
},
|
||||
"healthcare/rehabilitation": {
|
||||
"name": "מוסד שיקומי",
|
||||
"terms": "מוסד שיקומי"
|
||||
"terms": "מוסד גמילה"
|
||||
},
|
||||
"healthcare/speech_therapist": {
|
||||
"name": "קלינאית תקשורת",
|
||||
"terms": "קלינאי תקשורת"
|
||||
"terms": "קלינאי תקשורת,קלינאות תקשורת"
|
||||
},
|
||||
"highway": {
|
||||
"name": "כביש בין־עירוני"
|
||||
|
@ -6051,7 +6099,8 @@
|
|||
"name": "תחנת אוטובוס"
|
||||
},
|
||||
"highway/construction": {
|
||||
"name": "כביש סגור"
|
||||
"name": "כביש סגור",
|
||||
"terms": "סגירה,חסימה,מחסום,חסום,סגור"
|
||||
},
|
||||
"highway/corridor": {
|
||||
"name": "מסדרון",
|
||||
|
@ -6094,10 +6143,12 @@
|
|||
"name": "מעבר אופניים"
|
||||
},
|
||||
"highway/cycleway/crossing/marked": {
|
||||
"name": "מעבר דו־גלגליים מסומן"
|
||||
"name": "מעבר דו־גלגליים מסומן",
|
||||
"terms": "מעבר לאופניים,מעבר לאופנועים,מעבר לקורקינט"
|
||||
},
|
||||
"highway/cycleway/crossing/unmarked": {
|
||||
"name": "מעבר דו־גלגליים בלתי מסומן"
|
||||
"name": "מעבר דו־גלגליים בלתי מסומן",
|
||||
"terms": "מעבר לאופניים,מעבר לאופנועים,מעבר לקורקינט"
|
||||
},
|
||||
"highway/elevator": {
|
||||
"name": "מעלית",
|
||||
|
@ -6404,7 +6455,8 @@
|
|||
"name": "חדר"
|
||||
},
|
||||
"indoor/wall": {
|
||||
"name": "קיר פנימי"
|
||||
"name": "קיר פנימי",
|
||||
"terms": "גבול פנימי,תחימה פנימית"
|
||||
},
|
||||
"internet_access/wlan": {
|
||||
"name": "נקודת רשת אלחוטית חמה",
|
||||
|
@ -6762,7 +6814,7 @@
|
|||
},
|
||||
"leisure/pitch": {
|
||||
"name": "מגרש ספורט",
|
||||
"terms": "צגרש,כדורגל,כדורסל,טניס"
|
||||
"terms": "מגרש,כדורגל,כדורסל,טניס"
|
||||
},
|
||||
"leisure/pitch/american_football": {
|
||||
"name": "מגרש פוטבול",
|
||||
|
@ -8334,6 +8386,10 @@
|
|||
"name": "חנות הגברה",
|
||||
"terms": "חנות ציוד הגברה"
|
||||
},
|
||||
"shop/hobby": {
|
||||
"name": "חנות תחביבים",
|
||||
"terms": "חנות פנאי,מנגה,אנימה,דמויות,דגם,בובה,פנאי"
|
||||
},
|
||||
"shop/houseware": {
|
||||
"name": "חנות כלי בית",
|
||||
"terms": "חנות כלי בית"
|
||||
|
@ -8526,6 +8582,10 @@
|
|||
"name": "סופרמרקט",
|
||||
"terms": "סופרמרקט"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "חנות ציוד לבריכות",
|
||||
"terms": "ציוד שחייה,ציוד לבריכות,תחזוקת ג׳קוזי,חנות בריכות,בריכת שחייה,חנות ציוד,ברכת שחייה,חנות להתקנת ברכת שחייה,חנות להתקנת בריכת שחייה,חנות לתחזוקת ברכות,חנות לתחזוקת בריכות,חנות ציוד לברכות"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "חייט",
|
||||
"terms": "חייטת"
|
||||
|
|
401
vendor/assets/iD/iD/locales/hr.json
vendored
401
vendor/assets/iD/iD/locales/hr.json
vendored
|
@ -1302,6 +1302,14 @@
|
|||
"access_simple": {
|
||||
"label": "Dozvoljen pristup"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"options": {
|
||||
"all": "Sve",
|
||||
"alphabetic": "Abecedno",
|
||||
"even": "Parni",
|
||||
"odd": "Neparni"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Adresa",
|
||||
"placeholders": {
|
||||
|
@ -1368,6 +1376,9 @@
|
|||
"aeroway": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"agrarian": {
|
||||
"label": "Proizvodi"
|
||||
},
|
||||
"air_conditioning": {
|
||||
"label": "Klimatizirano"
|
||||
},
|
||||
|
@ -1398,12 +1409,31 @@
|
|||
"atm": {
|
||||
"label": "Bankomat"
|
||||
},
|
||||
"attraction": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"backrest": {
|
||||
"label": "Naslon"
|
||||
},
|
||||
"barrier": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"bath/open_air": {
|
||||
"label": "Vanjsko kupalište"
|
||||
},
|
||||
"bath/sand_bath": {
|
||||
"label": "Pješčano kupalište (Suna Yu)"
|
||||
},
|
||||
"bath/type": {
|
||||
"options": {
|
||||
"foot_bath": "Kupalište za noge (Ashi Yu)",
|
||||
"hot_spring": "Vrući izvor",
|
||||
"onsen": "Japansko Onsen kupalište"
|
||||
}
|
||||
},
|
||||
"beauty": {
|
||||
"label": "Specijalizacija njege"
|
||||
},
|
||||
"bench": {
|
||||
"label": "Klupa"
|
||||
},
|
||||
|
@ -1413,6 +1443,21 @@
|
|||
"bin": {
|
||||
"label": "Kanta za smeće"
|
||||
},
|
||||
"blood_components": {
|
||||
"label": "Krvni sastojci",
|
||||
"options": {
|
||||
"plasma": "plazma",
|
||||
"platelets": "trombociti",
|
||||
"stemcells": "uzorci matičnih stanica",
|
||||
"whole": "puna krv"
|
||||
}
|
||||
},
|
||||
"board_type": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"boules": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"boundary": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
|
@ -1422,15 +1467,29 @@
|
|||
"brewery": {
|
||||
"label": "Točena piva"
|
||||
},
|
||||
"bridge": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"building": {
|
||||
"label": "Zgrada"
|
||||
},
|
||||
"building/levels_building": {
|
||||
"building/levels/underground": {
|
||||
"label": "Podzemnih katova",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Katova zgrade",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/material": {
|
||||
"label": "Materijal"
|
||||
},
|
||||
"building_area": {
|
||||
"label": "Zgrada"
|
||||
},
|
||||
"bunker_type": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"cables": {
|
||||
"label": "Broj kabela",
|
||||
"placeholder": "1, 2, 3..."
|
||||
|
@ -1439,10 +1498,24 @@
|
|||
"label": "Smjer (stupnjeva u smjeru kazaljke na satu)",
|
||||
"placeholder": "45, 90, 180, 270"
|
||||
},
|
||||
"camera/mount": {
|
||||
"label": "Držač kamere"
|
||||
},
|
||||
"camera/type": {
|
||||
"label": "Vrsta kamere",
|
||||
"options": {
|
||||
"dome": "Kupola",
|
||||
"fixed": "Fiksirana",
|
||||
"panning": "Horizontalno okretanje (paniranje)"
|
||||
}
|
||||
},
|
||||
"capacity": {
|
||||
"label": "Kapacitet",
|
||||
"placeholder": "50, 100, 200..."
|
||||
},
|
||||
"clothes": {
|
||||
"label": "Odjeća"
|
||||
},
|
||||
"collection_times": {
|
||||
"label": "Vrijeme preuzimanja"
|
||||
},
|
||||
|
@ -1453,8 +1526,17 @@
|
|||
"label": "Vrsta"
|
||||
},
|
||||
"contact/webcam": {
|
||||
"label": "URL web kamere",
|
||||
"placeholder": "http://primjer.hr/"
|
||||
},
|
||||
"conveying": {
|
||||
"label": "Smjer kretanja",
|
||||
"options": {
|
||||
"backward": "Nazad",
|
||||
"forward": "Naprijed",
|
||||
"reversible": "Izmjenjiv smjer"
|
||||
}
|
||||
},
|
||||
"country": {
|
||||
"label": "Država"
|
||||
},
|
||||
|
@ -1464,12 +1546,29 @@
|
|||
"craft": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"crane/type": {
|
||||
"label": "Vrsta dizalice",
|
||||
"options": {
|
||||
"floor-mounted_crane": "Dizalica montirana na pod",
|
||||
"portal_crane": "Dizalica montirana na portal",
|
||||
"travel_lift": "Pokretna dizalica"
|
||||
}
|
||||
},
|
||||
"crop": {
|
||||
"label": "Usjev"
|
||||
},
|
||||
"crossing": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"cuisine": {
|
||||
"label": "Kuhinja"
|
||||
},
|
||||
"currency_multi": {
|
||||
"label": "Vrste valuta"
|
||||
},
|
||||
"cutting": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"cycle_network": {
|
||||
"label": "Mreža"
|
||||
},
|
||||
|
@ -1511,6 +1610,9 @@
|
|||
"cycleway:right": "Desna strana"
|
||||
}
|
||||
},
|
||||
"dance/style": {
|
||||
"label": "Vrste plesova"
|
||||
},
|
||||
"date": {
|
||||
"label": "Datum"
|
||||
},
|
||||
|
@ -1535,6 +1637,12 @@
|
|||
"description": {
|
||||
"label": "Opis"
|
||||
},
|
||||
"design": {
|
||||
"label": "Dizajn"
|
||||
},
|
||||
"diameter": {
|
||||
"label": "Promjer"
|
||||
},
|
||||
"diaper": {
|
||||
"label": "Omogućeno mijenjanje pelena"
|
||||
},
|
||||
|
@ -1565,6 +1673,13 @@
|
|||
"clockwise": "U smjeru kazaljke na satu"
|
||||
}
|
||||
},
|
||||
"direction_vertex": {
|
||||
"options": {
|
||||
"backward": "Nazad",
|
||||
"both": "Oba smjera",
|
||||
"forward": "Naprijed"
|
||||
}
|
||||
},
|
||||
"dock": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
|
@ -1598,6 +1713,10 @@
|
|||
"elevation": {
|
||||
"label": "Nadmorska visina"
|
||||
},
|
||||
"email": {
|
||||
"label": "Email",
|
||||
"placeholder": "primjer@primjer.hr"
|
||||
},
|
||||
"emergency": {
|
||||
"label": "Hitna pomoć"
|
||||
},
|
||||
|
@ -1651,12 +1770,19 @@
|
|||
"generator/method": {
|
||||
"label": "Metoda"
|
||||
},
|
||||
"generator/output/electricity": {
|
||||
"label": "Izlazna snaga",
|
||||
"placeholder": "50 MW, 100 MW, 200 MW..."
|
||||
},
|
||||
"generator/source": {
|
||||
"label": "Izvor"
|
||||
},
|
||||
"generator/type": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"grape_variety": {
|
||||
"label": "Vrsta grožđa"
|
||||
},
|
||||
"handicap": {
|
||||
"label": "Smetnja",
|
||||
"placeholder": "1-18"
|
||||
|
@ -1667,12 +1793,27 @@
|
|||
"height": {
|
||||
"label": "Visina (u metrima)"
|
||||
},
|
||||
"height_building": {
|
||||
"label": "Visina zgrade"
|
||||
},
|
||||
"highway": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"historic": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
"historic/civilization": {
|
||||
"label": "Povijesna civilizacija"
|
||||
},
|
||||
"historic/wreck/date_sunk": {
|
||||
"label": "Datum potonuća"
|
||||
},
|
||||
"historic/wreck/visible_at_high_tide": {
|
||||
"label": "Vidljivo kod plime"
|
||||
},
|
||||
"historic/wreck/visible_at_low_tide": {
|
||||
"label": "Vidljivo kod oseke"
|
||||
},
|
||||
"hoops": {
|
||||
"label": "Obruči",
|
||||
"placeholder": "1, 2, 4..."
|
||||
|
@ -1689,12 +1830,6 @@
|
|||
"undefined": "Ne"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "Međunarodni IATA kôd zračne luke"
|
||||
},
|
||||
"icao": {
|
||||
"label": "Međunarodni ICAO kôd zračne luke"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Nagib"
|
||||
},
|
||||
|
@ -1929,6 +2064,9 @@
|
|||
"operator": {
|
||||
"label": "Operator"
|
||||
},
|
||||
"outdoor_seating": {
|
||||
"label": "Vanjsko sjedenje"
|
||||
},
|
||||
"par": {
|
||||
"label": "Vrsta rupe (par)",
|
||||
"placeholder": "3, 4, 5..."
|
||||
|
@ -2026,6 +2164,15 @@
|
|||
"religion": {
|
||||
"label": "Religija"
|
||||
},
|
||||
"reservation": {
|
||||
"label": "Rezervacije",
|
||||
"options": {
|
||||
"no": "Ne primaju",
|
||||
"recommended": "Preporučeno",
|
||||
"required": "Obavezne",
|
||||
"yes": "Primaju"
|
||||
}
|
||||
},
|
||||
"restriction": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
|
@ -2035,6 +2182,9 @@
|
|||
"roof/colour": {
|
||||
"label": "Boja krova"
|
||||
},
|
||||
"rooms": {
|
||||
"label": "Sobe"
|
||||
},
|
||||
"route": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
|
@ -2059,9 +2209,28 @@
|
|||
"sanitary_dump_station": {
|
||||
"label": "Odvod toaleta"
|
||||
},
|
||||
"seamark/beacon_lateral/colour": {
|
||||
"label": "Boja",
|
||||
"options": {
|
||||
"green": "Zelena",
|
||||
"grey": "Siva",
|
||||
"red": "Crvena"
|
||||
}
|
||||
},
|
||||
"seamark/beacon_lateral/shape": {
|
||||
"label": "Oblik"
|
||||
},
|
||||
"seamark/buoy_lateral/colour": {
|
||||
"options": {
|
||||
"green": "Zelena"
|
||||
}
|
||||
},
|
||||
"seasonal": {
|
||||
"label": "Sezonski"
|
||||
},
|
||||
"self_service": {
|
||||
"label": "Samoposluga"
|
||||
},
|
||||
"service": {
|
||||
"label": "Vrsta"
|
||||
},
|
||||
|
@ -2115,6 +2284,27 @@
|
|||
"source": {
|
||||
"label": "Izvornici"
|
||||
},
|
||||
"sport": {
|
||||
"label": "Sportovi"
|
||||
},
|
||||
"sport_ice": {
|
||||
"label": "Sportovi"
|
||||
},
|
||||
"sport_racing_motor": {
|
||||
"label": "Sportovi"
|
||||
},
|
||||
"sport_racing_nonmotor": {
|
||||
"label": "Sportovi"
|
||||
},
|
||||
"stars": {
|
||||
"label": "Zvjezdice"
|
||||
},
|
||||
"start_date": {
|
||||
"label": "Datum nastanka"
|
||||
},
|
||||
"step_count": {
|
||||
"label": "Broj stepenica"
|
||||
},
|
||||
"stop": {
|
||||
"options": {
|
||||
"minor": "Mala cesta"
|
||||
|
@ -2314,6 +2504,12 @@
|
|||
"name": "Parkiralište za bicikle",
|
||||
"terms": "parking za bicikle"
|
||||
},
|
||||
"amenity/bicycle_parking/building": {
|
||||
"name": "Garaža za parkiranje bicikla"
|
||||
},
|
||||
"amenity/bicycle_parking/shed": {
|
||||
"name": "Nadstrešnica za bicikle"
|
||||
},
|
||||
"amenity/bicycle_rental": {
|
||||
"name": "Najam bicikla",
|
||||
"terms": "rentanje bicikala,rentanje bicikla,iznajmljivanje bicikala,iznajmljivanje bicikla,najam bicikala,najam bicikla,rent a bike"
|
||||
|
@ -2328,6 +2524,9 @@
|
|||
"amenity/bureau_de_change": {
|
||||
"name": "Mjenjačnica"
|
||||
},
|
||||
"amenity/bus_station": {
|
||||
"name": "Autobusni kolodvor"
|
||||
},
|
||||
"amenity/cafe": {
|
||||
"name": "Kafić",
|
||||
"terms": "kafić,cafe,caffee,kafeterija,caffe bar,kavana"
|
||||
|
@ -2442,6 +2641,10 @@
|
|||
"amenity/nightclub": {
|
||||
"name": "Noćni klub"
|
||||
},
|
||||
"amenity/parking": {
|
||||
"name": "Parkiralište za automobile",
|
||||
"terms": "parking,kamione"
|
||||
},
|
||||
"amenity/parking_entrance": {
|
||||
"name": "Parking garaža Ulaz/Izlaz"
|
||||
},
|
||||
|
@ -2456,6 +2659,15 @@
|
|||
"name": "Budistički hram",
|
||||
"terms": "budistički hram,hram,mjesto za molitvu,bogomolja"
|
||||
},
|
||||
"amenity/place_of_worship/christian": {
|
||||
"name": "Kršćanska crkva"
|
||||
},
|
||||
"amenity/place_of_worship/muslim": {
|
||||
"name": "Muslimanska džamija"
|
||||
},
|
||||
"amenity/planetarium": {
|
||||
"name": "Planetarij"
|
||||
},
|
||||
"amenity/police": {
|
||||
"name": "Policija",
|
||||
"terms": "policija,milicija,gradska policija,državna policija,vojna policija"
|
||||
|
@ -2468,10 +2680,17 @@
|
|||
"name": "Pošta",
|
||||
"terms": "pošta,poštanski ured"
|
||||
},
|
||||
"amenity/prison": {
|
||||
"name": "Zatvorsko zemljište"
|
||||
},
|
||||
"amenity/pub": {
|
||||
"name": "Pivnica",
|
||||
"terms": "pivnica,birtija,birc,bircuz"
|
||||
},
|
||||
"amenity/public_bath": {
|
||||
"name": "Javno kupalište",
|
||||
"terms": "toplice,bazeni,akvapark"
|
||||
},
|
||||
"amenity/public_bookcase": {
|
||||
"name": "Javna knjižnica"
|
||||
},
|
||||
|
@ -2495,18 +2714,42 @@
|
|||
"name": "Restoran",
|
||||
"terms": "restoran,buffet,zdravljak,zalogajnica"
|
||||
},
|
||||
"amenity/restaurant/asian": {
|
||||
"name": "Azijski restoran"
|
||||
},
|
||||
"amenity/restaurant/chinese": {
|
||||
"name": "Kineski restoran"
|
||||
},
|
||||
"amenity/restaurant/french": {
|
||||
"name": "Francuski restoran"
|
||||
},
|
||||
"amenity/restaurant/german": {
|
||||
"name": "Njemački restoran"
|
||||
},
|
||||
"amenity/restaurant/greek": {
|
||||
"name": "Grčki restoran"
|
||||
},
|
||||
"amenity/restaurant/indian": {
|
||||
"name": "Indijski restoran"
|
||||
},
|
||||
"amenity/restaurant/italian": {
|
||||
"name": "Talijanski restoran"
|
||||
},
|
||||
"amenity/restaurant/japanese": {
|
||||
"name": "Japanski restoran"
|
||||
},
|
||||
"amenity/restaurant/mexican": {
|
||||
"name": "Meksički restoran"
|
||||
},
|
||||
"amenity/restaurant/pizza": {
|
||||
"name": "Pizzeria"
|
||||
},
|
||||
"amenity/restaurant/seafood": {
|
||||
"name": "Riblji restoran"
|
||||
},
|
||||
"amenity/restaurant/vietnamese": {
|
||||
"name": "Vijetnamski restoran"
|
||||
},
|
||||
"amenity/sanitary_dump_station": {
|
||||
"name": "Pražnjenje toaleta za kamp kućice"
|
||||
},
|
||||
|
@ -2520,6 +2763,9 @@
|
|||
"amenity/shelter/gazebo": {
|
||||
"name": "Sjenica"
|
||||
},
|
||||
"amenity/shower": {
|
||||
"name": "Tuš"
|
||||
},
|
||||
"amenity/social_facility": {
|
||||
"name": "Socijalna ustanova"
|
||||
},
|
||||
|
@ -2550,6 +2796,9 @@
|
|||
"name": "Kazalište",
|
||||
"terms": "kazalište"
|
||||
},
|
||||
"amenity/theatre/type/amphi": {
|
||||
"name": "Amfiteatar"
|
||||
},
|
||||
"amenity/toilets": {
|
||||
"name": "Toalet",
|
||||
"terms": "WC,toalet,nužnik,sanitarni čvor"
|
||||
|
@ -2564,15 +2813,36 @@
|
|||
"amenity/vehicle_inspection": {
|
||||
"name": "Tehnički pregled vozila"
|
||||
},
|
||||
"amenity/vending_machine": {
|
||||
"name": "Automat za prodaju"
|
||||
},
|
||||
"amenity/vending_machine/cigarettes": {
|
||||
"name": "Automat za cigarete"
|
||||
},
|
||||
"amenity/vending_machine/coffee": {
|
||||
"name": "Automat za prodaju kave"
|
||||
},
|
||||
"amenity/vending_machine/condoms": {
|
||||
"name": "Automat za kondome"
|
||||
},
|
||||
"amenity/vending_machine/drinks": {
|
||||
"name": "Automat za piće"
|
||||
},
|
||||
"amenity/vending_machine/electronics": {
|
||||
"name": "Automat za prodaju elektronike"
|
||||
},
|
||||
"amenity/vending_machine/food": {
|
||||
"name": "Automat za prodaju hrane"
|
||||
},
|
||||
"amenity/vending_machine/fuel": {
|
||||
"name": "Pumpni automat za gorivo"
|
||||
},
|
||||
"amenity/vending_machine/ice_cream": {
|
||||
"name": "Automat za prodaju sladoleda"
|
||||
},
|
||||
"amenity/vending_machine/newspapers": {
|
||||
"name": "Automat za prodaju novina"
|
||||
},
|
||||
"amenity/vending_machine/parking_tickets": {
|
||||
"name": "Automat za parkirališne karte"
|
||||
},
|
||||
|
@ -2605,6 +2875,26 @@
|
|||
"area/highway": {
|
||||
"name": "Površina ceste"
|
||||
},
|
||||
"attraction": {
|
||||
"name": "Atrakcija"
|
||||
},
|
||||
"attraction/animal": {
|
||||
"name": "Životinjska nastamba",
|
||||
"terms": "životinja,kavez,akvarij,terarij,dupinarij,safari,lav,majmun,slon,riba,insekt,zmija,zoološki,zoo"
|
||||
},
|
||||
"attraction/bumper_car": {
|
||||
"name": "Električni autići za sudaranje"
|
||||
},
|
||||
"attraction/bungee_jumping": {
|
||||
"name": "Bungee skokovi"
|
||||
},
|
||||
"attraction/carousel": {
|
||||
"name": "Mehanički vrtuljak",
|
||||
"terms": "Ringišpil"
|
||||
},
|
||||
"attraction/maze": {
|
||||
"name": "Labirint"
|
||||
},
|
||||
"barrier": {
|
||||
"name": "Prepreka"
|
||||
},
|
||||
|
@ -2961,6 +3251,12 @@
|
|||
"highway/bridleway": {
|
||||
"name": "Staza za konje"
|
||||
},
|
||||
"highway/bus_guideway": {
|
||||
"name": "Pruga za autobuse"
|
||||
},
|
||||
"highway/bus_stop": {
|
||||
"name": "Autobusna stanica"
|
||||
},
|
||||
"highway/corridor": {
|
||||
"name": "Hodnik"
|
||||
},
|
||||
|
@ -2976,6 +3272,12 @@
|
|||
"highway/cycleway": {
|
||||
"name": "Biciklistička staza"
|
||||
},
|
||||
"highway/cycleway/bicycle_foot": {
|
||||
"name": "Staza za bicikle i pješake"
|
||||
},
|
||||
"highway/cycleway/crossing": {
|
||||
"name": "Biciklistički prijelaz"
|
||||
},
|
||||
"highway/cycleway/crossing/marked": {
|
||||
"name": "Označeni biciklistički prijelaz"
|
||||
},
|
||||
|
@ -3259,6 +3561,13 @@
|
|||
"leisure/firepit": {
|
||||
"name": "Mjesto za vatru"
|
||||
},
|
||||
"leisure/fitness_centre": {
|
||||
"name": "Zatvoreni prostor za vježbanje",
|
||||
"terms": "teretana,aerobik,pilates"
|
||||
},
|
||||
"leisure/fitness_station": {
|
||||
"name": "Vanjski prostor za vježbanje"
|
||||
},
|
||||
"leisure/garden": {
|
||||
"name": "Vrt",
|
||||
"terms": "vrt,bašća,povrtnjak,cvjetnjak"
|
||||
|
@ -3277,6 +3586,10 @@
|
|||
"leisure/nature_reserve": {
|
||||
"name": "Prirodni rezervat"
|
||||
},
|
||||
"leisure/outdoor_seating": {
|
||||
"name": "Sjedenje vani",
|
||||
"terms": "terasa"
|
||||
},
|
||||
"leisure/park": {
|
||||
"name": "Park"
|
||||
},
|
||||
|
@ -3330,6 +3643,12 @@
|
|||
"name": "Sportski bazen",
|
||||
"terms": "bazen"
|
||||
},
|
||||
"leisure/track/running": {
|
||||
"name": "Staza za trčanje"
|
||||
},
|
||||
"leisure/track/running_point": {
|
||||
"name": "Staza za trčanje"
|
||||
},
|
||||
"leisure/water_park": {
|
||||
"name": "Vodeni park",
|
||||
"terms": "Aquapark, akvapark, bazeni"
|
||||
|
@ -3348,6 +3667,9 @@
|
|||
"name": "Lukobran",
|
||||
"terms": "lukobran,zaštita luke od valova,zaštita luke,umjetna zaštita luke,valolom,utvrda obale,molo"
|
||||
},
|
||||
"man_made/bridge": {
|
||||
"name": "Most"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "Dimnjak"
|
||||
},
|
||||
|
@ -3365,6 +3687,12 @@
|
|||
"name": "Svjetionik",
|
||||
"terms": "svjetionik,svjetlosni signal,toranj za svjetlosnu navigaciju"
|
||||
},
|
||||
"man_made/monitoring_station": {
|
||||
"name": "Stanica za mjerenje"
|
||||
},
|
||||
"man_made/observatory": {
|
||||
"name": "Opservatorij"
|
||||
},
|
||||
"man_made/petroleum_well": {
|
||||
"name": "Izvor nafte"
|
||||
},
|
||||
|
@ -3376,15 +3704,28 @@
|
|||
"name": "Cjevovod",
|
||||
"terms": "cjevovod,sustav cijevi za prijenos materijala,vod u obliku cijevi,protočna struktura,naftovod,plinovod,cjevovodni transport,transport"
|
||||
},
|
||||
"man_made/pipeline/underground": {
|
||||
"name": "Podzemni cjevovod"
|
||||
},
|
||||
"man_made/pumping_station": {
|
||||
"name": "Crpna stanica"
|
||||
},
|
||||
"man_made/silo": {
|
||||
"name": "Silos"
|
||||
},
|
||||
"man_made/storage_tank": {
|
||||
"name": "Spremnik"
|
||||
},
|
||||
"man_made/street_cabinet": {
|
||||
"name": "Vanjski razvodni ormar",
|
||||
"terms": "ulični ormar,telekomunikacijski,semaforski,kabelska televizija"
|
||||
},
|
||||
"man_made/surveillance": {
|
||||
"name": "Nadzor"
|
||||
},
|
||||
"man_made/surveillance/camera": {
|
||||
"name": "Nadzorna kamera"
|
||||
},
|
||||
"man_made/survey_point": {
|
||||
"name": "Geodetska točka",
|
||||
"terms": "geodetska točka,poligonska točka,trigonometrijska točka,trigonometar,poligon,GPS točka,GNSS točka,geodetska oznaka"
|
||||
|
@ -3393,6 +3734,22 @@
|
|||
"name": "Toranj",
|
||||
"terms": "toranj,osmatračnica,kula,odašiljač,vidikovac,zvonik,stupa,obrambeni toranj"
|
||||
},
|
||||
"man_made/tower/bell_tower": {
|
||||
"name": "Toranj zvonika"
|
||||
},
|
||||
"man_made/tower/communication": {
|
||||
"name": "Komunikacijski toranj"
|
||||
},
|
||||
"man_made/tower/defensive": {
|
||||
"name": "Kula",
|
||||
"terms": "Utvrđeni toranj"
|
||||
},
|
||||
"man_made/tower/minaret": {
|
||||
"name": "Minaret"
|
||||
},
|
||||
"man_made/tower/observation": {
|
||||
"name": "Toranj za promatranje"
|
||||
},
|
||||
"man_made/tunnel": {
|
||||
"name": "Tunel"
|
||||
},
|
||||
|
@ -3424,6 +3781,9 @@
|
|||
"manhole": {
|
||||
"name": "Šaht"
|
||||
},
|
||||
"manhole/telecom": {
|
||||
"name": "Šaht za telekomunikacije"
|
||||
},
|
||||
"military/bunker": {
|
||||
"name": "Vojni bunker"
|
||||
},
|
||||
|
@ -3481,6 +3841,9 @@
|
|||
"natural/reef": {
|
||||
"name": "Greben"
|
||||
},
|
||||
"natural/ridge": {
|
||||
"name": "Greben"
|
||||
},
|
||||
"natural/saddle": {
|
||||
"name": "Sedlo",
|
||||
"terms": "prijevoj"
|
||||
|
@ -3496,6 +3859,9 @@
|
|||
"name": "Makija",
|
||||
"terms": "šikara,zaraslo zemljište,gust šibljak,guštara,guštik,šiprag,šipražje,gustiš,šiblje, samoniklo šiblje,šibljar,šibljik,makija"
|
||||
},
|
||||
"natural/shingle": {
|
||||
"name": "Krupan šljunak"
|
||||
},
|
||||
"natural/spring": {
|
||||
"name": "Izvor",
|
||||
"terms": "izvor,vrelo,vrutak,zdenac,studenac"
|
||||
|
@ -3546,16 +3912,28 @@
|
|||
"name": "Prašuma",
|
||||
"terms": "prašuma,prirodna šuma,džungla"
|
||||
},
|
||||
"noexit/yes": {
|
||||
"name": "Bez izlaza"
|
||||
},
|
||||
"office": {
|
||||
"name": "Ured",
|
||||
"terms": "ured,kancelarija"
|
||||
},
|
||||
"office/adoption_agency": {
|
||||
"name": "Agencija za posvajanje"
|
||||
},
|
||||
"office/advertising_agency": {
|
||||
"name": "Reklamna agencija"
|
||||
},
|
||||
"office/architect": {
|
||||
"name": "Arhitektonski ured"
|
||||
},
|
||||
"office/association": {
|
||||
"name": "Ured neprofitne udruge"
|
||||
},
|
||||
"office/company": {
|
||||
"name": "Ured firme"
|
||||
},
|
||||
"office/diplomatic/consulate": {
|
||||
"name": "Konzulat"
|
||||
},
|
||||
|
@ -3665,6 +4043,12 @@
|
|||
"name": "Transformator",
|
||||
"terms": "transformator, transformator el. energije,transformator struje"
|
||||
},
|
||||
"public_transport/platform/bus": {
|
||||
"name": "Autobusno stajalište"
|
||||
},
|
||||
"public_transport/platform/bus_point": {
|
||||
"name": "Autobusno stajalište"
|
||||
},
|
||||
"public_transport/platform/train_point": {
|
||||
"name": "Željezničko stajalište"
|
||||
},
|
||||
|
@ -4068,6 +4452,9 @@
|
|||
"name": "Prodavaonica motocikala",
|
||||
"terms": "trgovina motocikala"
|
||||
},
|
||||
"shop/motorcycle_repair": {
|
||||
"name": "Ormarići za bicikle"
|
||||
},
|
||||
"shop/music": {
|
||||
"name": "Prodavaonica glazbene opreme",
|
||||
"terms": "glazbeni dućan,glazbena trgovina"
|
||||
|
|
854
vendor/assets/iD/iD/locales/hu.json
vendored
854
vendor/assets/iD/iD/locales/hu.json
vendored
File diff suppressed because it is too large
Load diff
6
vendor/assets/iD/iD/locales/is.json
vendored
6
vendor/assets/iD/iD/locales/is.json
vendored
|
@ -2332,12 +2332,6 @@
|
|||
"undefined": "Nei"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Halli"
|
||||
},
|
||||
|
|
9
vendor/assets/iD/iD/locales/it.json
vendored
9
vendor/assets/iD/iD/locales/it.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Usa livelli differenti"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Usa differenti livelli o piani"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Usa livelli differenti"
|
||||
},
|
||||
|
@ -3167,12 +3170,6 @@
|
|||
"undefined": "No"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Pendenza"
|
||||
},
|
||||
|
|
107
vendor/assets/iD/iD/locales/ja.json
vendored
107
vendor/assets/iD/iD/locales/ja.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "別のレイヤを使う"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "違うlayerかlevelを使ってください"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "別の階を使う"
|
||||
},
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
"access_simple": {
|
||||
"label": "アクセス制限"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "補間の種類",
|
||||
"options": {
|
||||
"all": "すべて",
|
||||
"alphabetic": "アルファベット補間",
|
||||
"even": "最初が奇数",
|
||||
"odd": "最初が偶数"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "住所",
|
||||
"placeholders": {
|
||||
|
@ -2650,6 +2662,10 @@
|
|||
"building": {
|
||||
"label": "建物"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "地下階数",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "建物の地上階数",
|
||||
"placeholder": "2, 4, 6..."
|
||||
|
@ -3168,10 +3184,10 @@
|
|||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
"label": "IATA空港コード"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
"label": "ICAO空港コード"
|
||||
},
|
||||
"incline": {
|
||||
"label": "傾斜"
|
||||
|
@ -3673,12 +3689,18 @@
|
|||
"power_supply": {
|
||||
"label": "電源"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "幼児教育"
|
||||
},
|
||||
"produce": {
|
||||
"label": "生産物"
|
||||
},
|
||||
"product": {
|
||||
"label": "製品"
|
||||
},
|
||||
"public_bookcase/type": {
|
||||
"label": "種類"
|
||||
},
|
||||
"railway": {
|
||||
"label": "路線の種類"
|
||||
},
|
||||
|
@ -4337,6 +4359,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "住所補間"
|
||||
},
|
||||
"address": {
|
||||
"name": "住所",
|
||||
"terms": "住所"
|
||||
|
@ -4430,10 +4455,18 @@
|
|||
"name": "ヘリパッド",
|
||||
"terms": "ヘリパッド, ヘリコプター発着所, ヘリポート"
|
||||
},
|
||||
"aeroway/holding_position": {
|
||||
"name": "停止ポイント(空港)",
|
||||
"terms": "停止ポイント, 飛行機, 空港"
|
||||
},
|
||||
"aeroway/jet_bridge": {
|
||||
"name": "ボーディング・ブリッジ",
|
||||
"terms": "ボーディング・ブリッジ, 搭乗橋, 空港, 飛行機"
|
||||
},
|
||||
"aeroway/parking_position": {
|
||||
"name": "駐機ポイント(空港)",
|
||||
"terms": "駐機ポイント, 飛行機, 空港"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "滑走路",
|
||||
"terms": "滑走路"
|
||||
|
@ -4639,6 +4672,10 @@
|
|||
"name": "道場",
|
||||
"terms": "道場, スポーツ, 訓練, 稽古, 練習, 習い事, 教習, トレーニング, 教室, 体操, 運動"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "更衣室",
|
||||
"terms": "更衣室, 着替え, 脱衣所, ロッカールーム, 試着室"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "水飲み場",
|
||||
"terms": "水飲み場, 水道, 飲用水, 飲料水, 飲み水, 蛇口, 公園"
|
||||
|
@ -4795,6 +4832,10 @@
|
|||
"name": "立体駐車場",
|
||||
"terms": "複数階の駐車場, 駐車場, 立体駐車場, 立駐"
|
||||
},
|
||||
"amenity/parking/park_ride": {
|
||||
"name": "パーク&ライド",
|
||||
"terms": "駐車場, 自動車, パーキング, コインパーキング, パーク&ライド, 通勤, 乗り換え, 公共交通機関"
|
||||
},
|
||||
"amenity/parking/underground": {
|
||||
"name": "地下駐車場",
|
||||
"terms": "地下駐車場, 地下, 駐車場"
|
||||
|
@ -5347,7 +5388,7 @@
|
|||
},
|
||||
"barrier/fence": {
|
||||
"name": "フェンス",
|
||||
"terms": "フェンス, 柵, 障害物, バリア"
|
||||
"terms": "フェンス, 柵, 障害物, バリア, 塀, ブロック塀"
|
||||
},
|
||||
"barrier/fence/railing": {
|
||||
"name": "ガードレール(歩行者用)",
|
||||
|
@ -5889,8 +5930,8 @@
|
|||
"name": "行き先に用事がある緊急車両, 救命"
|
||||
},
|
||||
"emergency/fire_alarm": {
|
||||
"name": "火災通報ボックス",
|
||||
"terms": "火災通報ボックス, 火災通報装置"
|
||||
"name": "火災放置機",
|
||||
"terms": "火災通報ボックス, 火災通報装置, 火災放置機, 火事, 消防"
|
||||
},
|
||||
"emergency/fire_extinguisher": {
|
||||
"name": "消火器",
|
||||
|
@ -6998,6 +7039,10 @@
|
|||
"name": "バンカーサイロ",
|
||||
"terms": "バンカーサイロ, サイロ"
|
||||
},
|
||||
"man_made/cairn": {
|
||||
"name": "ケルン",
|
||||
"terms": "ケルン,ケアン, 積み石,石積み, 小石"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "煙突",
|
||||
"terms": "煙突"
|
||||
|
@ -8411,6 +8456,10 @@
|
|||
"name": "音響機器店",
|
||||
"terms": "音響機器店, オーディオ店, 音楽"
|
||||
},
|
||||
"shop/hobby": {
|
||||
"name": "ホビーショップ",
|
||||
"terms": "ホビーショップ, ホビー店, プラモデル, フィギュア, マンガ, ミリタリー, 模型"
|
||||
},
|
||||
"shop/houseware": {
|
||||
"name": "家庭用品店",
|
||||
"terms": "雑貨屋, 家庭用品, 日用雑貨, バス用品, お風呂用品, 台所用品, キッチン用品, 生活雑貨, 料理道具, 調理器具, 食器, クッション, 茶碗, 皿, 包丁, ナイフ, フォーク, 箸"
|
||||
|
@ -8603,6 +8652,10 @@
|
|||
"name": "スーパーマーケット",
|
||||
"terms": "スーパーマーケット, スーパー, 買い物, ショッピング"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "プール用品店",
|
||||
"terms": "プール用品店, スポーツ, 遊泳プール, 店舗, お店"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "仕立屋",
|
||||
"terms": "仕立屋, テイラー, 洋裁店, 衣類, 衣料, 仕立て屋, 縫製, 服, スーツ"
|
||||
|
@ -8745,6 +8798,10 @@
|
|||
"name": "観光地",
|
||||
"terms": "観光名所, 見どころ, アトラクション, 見もの, 名所, 旧跡, 名勝, 観光地"
|
||||
},
|
||||
"tourism/camp_pitch": {
|
||||
"name": "キャンプ区画(キャンプ場内)",
|
||||
"terms": "キャンプ区画, テント, アウトドア"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "キャンプ場",
|
||||
"terms": "キャンプ場, アウトドア"
|
||||
|
@ -9801,6 +9858,10 @@
|
|||
"description": "YouthMappers chapter at University of Nigeria, Enugu Campus",
|
||||
"extendedDescription": "The LionMappersTeam(LMT)Enugu Campus is an affiliate of YouthMappers Network, with the sole aim of providing members the opportunity to learn and improve their skills in the field of Geoinformatics and to create open geographic data and analysis that addresses locally defined challenges globally. It is a team of volunteers for Crowdsourced Mapping and Geographic Information provision using Openstreetmap, Citizen Science and other Geospatial Technology for research, training and response to resilient community challenges. We are involved in Web-Cartography, GIS and Remote Sensing Applications and ResearchWe are passionate about Volunteered Geographic Information.Paticipatory GIS and Citizen Science.Our major activities include online crowdsourced-Cartography, Field Mapping ,Training workshops and outreaches to High School as well as Humanitarian/Disaster Response Mapping."
|
||||
},
|
||||
"osm-africa-telegram": {
|
||||
"name": "OpenStreetMap Africa Telegram",
|
||||
"description": "OpenStreetMap Telegram for Africa"
|
||||
},
|
||||
"ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri": {
|
||||
"name": "YouthMappers at INES Ruhengeri",
|
||||
"description": "YouthMappers chapter at Insititue d' Enseignement Superieur de Ruhengeri",
|
||||
|
@ -9927,6 +9988,10 @@
|
|||
"description": "YouthMappers chapter at University of Zimbabwe",
|
||||
"extendedDescription": "UzMappersTeam Zimbabwe is a team of Volunteers using OpenStreetMap for Open Data Mapping and Humanitarian Disaster response mapping .The team empowers its members with open source geospatial technology skills."
|
||||
},
|
||||
"osm-afghanistan-facebook": {
|
||||
"name": "OpenStreetMap Afghanistan",
|
||||
"description": "Improve OpenStreetMap in Afghanistan"
|
||||
},
|
||||
"OSM-BGD-facebook": {
|
||||
"name": "OpenStreetMap Bangladesh",
|
||||
"description": "Improve OpenStreetMap in Bangladesh",
|
||||
|
@ -10462,6 +10527,10 @@
|
|||
"name": "OpenStreetMap Kosovo on Telegram",
|
||||
"description": "Semi-official all-Kosovo Telegram public group. We welcome all mappers from anywhere in any language."
|
||||
},
|
||||
"lu-mailinglist": {
|
||||
"name": "Talk-lu Mailing List",
|
||||
"description": "Official mailing list for the Luxembourgish OSM community"
|
||||
},
|
||||
"ym-Universit-Mohammed-V-Rabat": {
|
||||
"name": "Brahmapoutre at Rabat",
|
||||
"description": "YouthMappers chapter at Université Mohammed V Rabat",
|
||||
|
@ -10491,6 +10560,14 @@
|
|||
"name": "OpenStreetMap Poland Forum",
|
||||
"description": "Forum of Polish OpenStreetMap community"
|
||||
},
|
||||
"pt-mailinglist": {
|
||||
"name": "Talk-pt Mailing List",
|
||||
"description": "Talk-pt is the official mailing list for the Portuguese OSM community"
|
||||
},
|
||||
"pt-telegram": {
|
||||
"name": "OpenStreetMap Portugal no Telegram",
|
||||
"description": "Telegram Group of the Portuguese OpenStreetMap community {url}"
|
||||
},
|
||||
"si-forum": {
|
||||
"name": "OpenStreetMap Slovenia Forum",
|
||||
"description": "Forum of OpenStreetMap community in Slovenia"
|
||||
|
@ -10980,6 +11057,10 @@
|
|||
"name": "Geography Club",
|
||||
"description": "YouthMappers chapter at Western Michigan University"
|
||||
},
|
||||
"geogeeks_perth_meetup": {
|
||||
"name": "GeoGeeks Perth Meetup",
|
||||
"description": "Perth-based meetup group for people interested in mapping, geospatial data, and open source. We'll be working on anything that involves a sense of place."
|
||||
},
|
||||
"talk-au": {
|
||||
"name": "Talk-au Mailing List",
|
||||
"description": "Place for Aussie mappers to chat"
|
||||
|
@ -11036,6 +11117,10 @@
|
|||
"description": "Join the OpenStreetMap Brasília community on Telegram",
|
||||
"extendedDescription": "Join the community to learn more about OpenStreetMap, ask questions or participate in our meetings. Everyone is welcome!"
|
||||
},
|
||||
"OSM-br-discord": {
|
||||
"name": "OpenStreetMap Brasil Discord",
|
||||
"description": "Join the OpenStreetMap Brasil community on Discord"
|
||||
},
|
||||
"OSM-br-mailinglist": {
|
||||
"name": "Talk-br Mailing List",
|
||||
"description": "A mailing list to discuss OpenStreetMap in Brazil"
|
||||
|
@ -11173,6 +11258,18 @@
|
|||
"name": "Talk-uy Mailing List",
|
||||
"description": "Talk-uy is the official mailing list for the Uruguayan OSM community"
|
||||
},
|
||||
"ve-forum": {
|
||||
"name": "OpenStreetMap VE Forum",
|
||||
"description": "OpenStreetMap Venezuela web forum"
|
||||
},
|
||||
"ve-mailinglist": {
|
||||
"name": "Talk-ve Mailing List",
|
||||
"description": "Talk-ve is the official mailing list for the Venezuelan OSM community"
|
||||
},
|
||||
"ve-telegram": {
|
||||
"name": "OpenStreetMap Venezuela Telegram",
|
||||
"description": "Join the OpenStreetMap Venezuela community on Telegram"
|
||||
},
|
||||
"LATAM-Facebook": {
|
||||
"name": "OpenStreetMap Latam Facebook",
|
||||
"description": "OpenStreetMap Latam on Facebook"
|
||||
|
|
6
vendor/assets/iD/iD/locales/kn.json
vendored
6
vendor/assets/iD/iD/locales/kn.json
vendored
|
@ -995,12 +995,6 @@
|
|||
"hoops": {
|
||||
"placeholder": "1, 2, 4..."
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "ಬಾಗಿಸು"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/ko.json
vendored
6
vendor/assets/iD/iD/locales/ko.json
vendored
|
@ -2571,12 +2571,6 @@
|
|||
"undefined": "아니오"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "경사"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/lt.json
vendored
6
vendor/assets/iD/iD/locales/lt.json
vendored
|
@ -1899,12 +1899,6 @@
|
|||
"undefined": "Ne"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Nuolydis"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/lv.json
vendored
6
vendor/assets/iD/iD/locales/lv.json
vendored
|
@ -1423,12 +1423,6 @@
|
|||
"undefined": "Nē"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Slīpums"
|
||||
},
|
||||
|
|
102
vendor/assets/iD/iD/locales/mk.json
vendored
102
vendor/assets/iD/iD/locales/mk.json
vendored
|
@ -271,6 +271,7 @@
|
|||
"single": "Не може да се оддели бидејќи не е наполно видливо."
|
||||
},
|
||||
"not_connected": "Нема доволно линии/подрачја за одделување.",
|
||||
"not_downloaded": "Не може да се одврзе бидејќи не е наполно преземено.",
|
||||
"connected_to_hidden": "Не може да се оддели бидејќи е поврзано со скриен елемент.",
|
||||
"relation": "Не може да се оддели бидејќи поврзува членови на однос."
|
||||
},
|
||||
|
@ -312,6 +313,10 @@
|
|||
"connected_to_hidden": {
|
||||
"single": "Овој елемент не може да се премести бидејќи е поврзан со скриен елемент.",
|
||||
"multiple": "Овие елементи не можат да се преместат бидејќи се поврзани со скриени елементи."
|
||||
},
|
||||
"not_downloaded": {
|
||||
"single": "Не може да се премести бидејќи не е наполно преземено.",
|
||||
"multiple": "Не можат да се преместат бидејќи не се наполно преземени."
|
||||
}
|
||||
},
|
||||
"reflect": {
|
||||
|
@ -354,6 +359,10 @@
|
|||
"connected_to_hidden": {
|
||||
"single": "Овој елемент не може да се преслика бидејќи не е поврзан со скриен елемент.",
|
||||
"multiple": "Овие елементи не можат да се пресликаат бидејќи се поврзани со скриени елементи."
|
||||
},
|
||||
"not_downloaded": {
|
||||
"single": "Не може да се одрази бидејќи не е наполно преземено.",
|
||||
"multiple": "Не можат да се одразат бидејќи не се наполно преземени."
|
||||
}
|
||||
},
|
||||
"rotate": {
|
||||
|
@ -379,6 +388,10 @@
|
|||
"connected_to_hidden": {
|
||||
"single": "Овој елемент не може да се сврти бидејќи е поврзан со скриен елемент.",
|
||||
"multiple": "Овие елементи не можат да се свртат бидејќи се поврзани со скриени елементи."
|
||||
},
|
||||
"not_downloaded": {
|
||||
"single": "Не може да се сврти бидејќи не е наполно преземено.",
|
||||
"multiple": "Не можат да се свртат бидејќи не се наполно преземени."
|
||||
}
|
||||
},
|
||||
"reverse": {
|
||||
|
@ -412,6 +425,7 @@
|
|||
},
|
||||
"extract": {
|
||||
"title": "Извади",
|
||||
"key": "ИГД",
|
||||
"description": {
|
||||
"vertex": {
|
||||
"single": "Извади ја точкава од нејзините матички линии/подрачја."
|
||||
|
@ -604,6 +618,7 @@
|
|||
},
|
||||
"geocoder": {
|
||||
"search": "Пребарај по светот...",
|
||||
"no_results_visible": "На подрачјево нема видливи исходни ставки",
|
||||
"no_results_worldwide": "Не најдов ништо"
|
||||
},
|
||||
"geolocate": {
|
||||
|
@ -850,6 +865,12 @@
|
|||
}
|
||||
}
|
||||
},
|
||||
"restore": {
|
||||
"heading": "Имате незачувани промени",
|
||||
"description": "Дали сакате да ги повратите незачуваните промени од претходното уредување?",
|
||||
"restore": "Поврати ги промените",
|
||||
"reset": "Отфрли ги промените"
|
||||
},
|
||||
"save": {
|
||||
"title": "Зачувај",
|
||||
"help": "Прегледајте ги направените промени и подигнете ги на OpenStreetMap, со што ќе станат видливи за јавноста.",
|
||||
|
@ -884,10 +905,14 @@
|
|||
}
|
||||
},
|
||||
"success": {
|
||||
"just_edited": "Штотуку го уредивте OpenStreetMap!",
|
||||
"thank_you": "Ви благодариме што ја подобривте картата.",
|
||||
"thank_you_location": "Ви благодариме што ја подобривте картата околу {where}.",
|
||||
"thank_you_where": {
|
||||
"format": "{place}{separator}{region}",
|
||||
"separator": ", "
|
||||
},
|
||||
"help_html": "Вашите промени треба да се појават на OpenStreetMap во рок од неколку минути. Ќе им треба подолго да се појават на други карти.",
|
||||
"help_link_text": "Подробно",
|
||||
"help_link_url": "https://wiki.openstreetmap.org/wiki/FAQ#I_have_just_made_some_changes_to_the_map._How_do_I_get_to_see_my_changes.3F",
|
||||
"view_on_osm": "Погледајте ги промените на OSM",
|
||||
|
@ -903,6 +928,12 @@
|
|||
"okay": "ОК",
|
||||
"cancel": "Откажи"
|
||||
},
|
||||
"splash": {
|
||||
"welcome": "Добре дојдовте на уредникот ID за OpenStreetMap",
|
||||
"text": "iD е достапна, но моќна алатка за учество во најдобрата слободна карта на светот. Ова е верзијата {version}. Повеќе информации ќе најдете на {website}. Грешките пријавувајте ги на {github}.",
|
||||
"walkthrough": "Започнете ја прошетката",
|
||||
"start": "Уреди сега"
|
||||
},
|
||||
"source_switch": {
|
||||
"live": "во живо",
|
||||
"lose_changes": "Имате незачувани промени. Ако се префрлите на друг картог. опслужувач, истите ќе се избришат. Дали сигурно сакате да се префрлите на друг опслужувач?",
|
||||
|
@ -1457,6 +1488,20 @@
|
|||
"message": "{feature} има барање „Поправи ме“",
|
||||
"tip": "Најди елементи со ознаки „поправи ме“"
|
||||
},
|
||||
"invalid_format": {
|
||||
"title": "Неважечко форматирање",
|
||||
"tip": "Најди ознаки со неочекувани формати",
|
||||
"email": {
|
||||
"message": "{feature} има неважечка е-пошта.",
|
||||
"message_multi": "{feature} има повеќе неважечки е-пошти.",
|
||||
"reference": "Е-поштенските адреси треба да бидат од обликот „user@example.com“."
|
||||
},
|
||||
"website": {
|
||||
"message": "{feature} има неважечко мрежно место.",
|
||||
"message_multi": "{feature} има повеќе неважечки мрежни места.",
|
||||
"reference": "Мрежните места мора да почнуваат со „http“ или „https“."
|
||||
}
|
||||
},
|
||||
"missing_tag": {
|
||||
"title": "Отсутни ознаки",
|
||||
"any": {
|
||||
|
@ -1473,6 +1518,10 @@
|
|||
"incomplete": {
|
||||
"message": "{feature} има непотполни ознаки",
|
||||
"reference": "Некои елементи треба да имаат дополнителни ознаки."
|
||||
},
|
||||
"noncanonical_brand": {
|
||||
"message": "{feature} делува како марка со нестандардни ознаки",
|
||||
"reference": "Сите елементи со истата марка треба да се означат на истиот начин."
|
||||
}
|
||||
},
|
||||
"private_data": {
|
||||
|
@ -1592,6 +1641,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Користи различни слоеви"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Користи различни слоеви или степени"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Користи различни нивоа"
|
||||
},
|
||||
|
@ -1931,6 +1983,15 @@
|
|||
"access_simple": {
|
||||
"label": "Дозволен пристап"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Вид",
|
||||
"options": {
|
||||
"all": "Сите",
|
||||
"alphabetic": "Азбучно",
|
||||
"even": "Парни",
|
||||
"odd": "Непарни"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Адреса",
|
||||
"placeholders": {
|
||||
|
@ -2121,6 +2182,10 @@
|
|||
"building": {
|
||||
"label": "Градба"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Подземни катови",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Катови на градбата",
|
||||
"placeholder": "2, 4, 6..."
|
||||
|
@ -2639,10 +2704,10 @@
|
|||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
"label": "Аеродромски код по IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
"label": "Аеродромски код по ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Наклон"
|
||||
|
@ -3144,12 +3209,18 @@
|
|||
"power_supply": {
|
||||
"label": "Напојување"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "Претшколски"
|
||||
},
|
||||
"produce": {
|
||||
"label": "Пилјарска стока"
|
||||
},
|
||||
"product": {
|
||||
"label": "Производи"
|
||||
},
|
||||
"public_bookcase/type": {
|
||||
"label": "Вид"
|
||||
},
|
||||
"railway": {
|
||||
"label": "Вид"
|
||||
},
|
||||
|
@ -3808,6 +3879,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "Вметнување на адреси"
|
||||
},
|
||||
"address": {
|
||||
"name": "Адреса"
|
||||
},
|
||||
|
@ -3880,9 +3954,15 @@
|
|||
"aeroway/helipad": {
|
||||
"name": "Хеликоптерско слетувалиште"
|
||||
},
|
||||
"aeroway/holding_position": {
|
||||
"name": "Чекална положба на леталото"
|
||||
},
|
||||
"aeroway/jet_bridge": {
|
||||
"name": "Авионски пристапен мост"
|
||||
},
|
||||
"aeroway/parking_position": {
|
||||
"name": "Паркирна положба на леталото"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "Писта"
|
||||
},
|
||||
|
@ -4039,6 +4119,9 @@
|
|||
"amenity/dojo": {
|
||||
"name": "Училиште за боречки вештини"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "Соблекувална"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Пивка вода"
|
||||
},
|
||||
|
@ -4159,6 +4242,9 @@
|
|||
"amenity/parking/multi-storey": {
|
||||
"name": "Катна гаража"
|
||||
},
|
||||
"amenity/parking/park_ride": {
|
||||
"name": "Преодно паркиралиште"
|
||||
},
|
||||
"amenity/parking/underground": {
|
||||
"name": "Подземно паркиралиште"
|
||||
},
|
||||
|
@ -5846,6 +5932,9 @@
|
|||
"man_made/bunker_silo": {
|
||||
"name": "Бункерски силос"
|
||||
},
|
||||
"man_made/cairn": {
|
||||
"name": "Могила"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "Оџак"
|
||||
},
|
||||
|
@ -6926,6 +7015,9 @@
|
|||
"shop/hifi": {
|
||||
"name": "Продавница за аудиоопрема"
|
||||
},
|
||||
"shop/hobby": {
|
||||
"name": "Хобистичка продавница"
|
||||
},
|
||||
"shop/houseware": {
|
||||
"name": "Продавница за домот"
|
||||
},
|
||||
|
@ -7071,6 +7163,9 @@
|
|||
"shop/supermarket": {
|
||||
"name": "Супермаркет"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "Базенски залихи"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "Кројач"
|
||||
},
|
||||
|
@ -7179,6 +7274,9 @@
|
|||
"tourism/attraction": {
|
||||
"name": "Знаменитост"
|
||||
},
|
||||
"tourism/camp_pitch": {
|
||||
"name": "Логориште"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "Камп"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/ms.json
vendored
6
vendor/assets/iD/iD/locales/ms.json
vendored
|
@ -1280,12 +1280,6 @@
|
|||
"label": "Gelung",
|
||||
"placeholder": "1, 2, 4..."
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Kecenderungan, Kecondongan"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/nl.json
vendored
6
vendor/assets/iD/iD/locales/nl.json
vendored
|
@ -2806,12 +2806,6 @@
|
|||
"undefined": "Nee"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Helling"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/no.json
vendored
6
vendor/assets/iD/iD/locales/no.json
vendored
|
@ -1517,12 +1517,6 @@
|
|||
"undefined": "Nei"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Stigning"
|
||||
},
|
||||
|
|
266
vendor/assets/iD/iD/locales/pl.json
vendored
266
vendor/assets/iD/iD/locales/pl.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Ustaw różne warstwy (tag layer)"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Ustaw różne warstwy lub kondygnacje"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Ustaw różne kondygnacje"
|
||||
},
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
"access_simple": {
|
||||
"label": "Dozwolony wstęp"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Rodzaj",
|
||||
"options": {
|
||||
"all": "Wszystkie",
|
||||
"alphabetic": "Alfabetycznie",
|
||||
"even": "Parzyste",
|
||||
"odd": "Nieparzyste"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Adres",
|
||||
"placeholders": {
|
||||
|
@ -2650,6 +2662,10 @@
|
|||
"building": {
|
||||
"label": "Budynek"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Kondygnacje podziemne",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Liczba kondygnacji",
|
||||
"placeholder": "2, 4, 6..."
|
||||
|
@ -3168,10 +3184,10 @@
|
|||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
"label": "Kod lotniska - IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
"label": "Kod lotniska - ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Nachylenie"
|
||||
|
@ -3497,10 +3513,10 @@
|
|||
"placeholder": "24/7, sunrise-sunset, Mo-Sa 08:00-20:00"
|
||||
},
|
||||
"operator": {
|
||||
"label": "Operator"
|
||||
"label": "Zarządca"
|
||||
},
|
||||
"operator/type": {
|
||||
"label": "Operator (rodzaj)"
|
||||
"label": "Zarządca (rodzaj)"
|
||||
},
|
||||
"outdoor_seating": {
|
||||
"label": "Ogródek restauracyjny"
|
||||
|
@ -3673,12 +3689,18 @@
|
|||
"power_supply": {
|
||||
"label": "Zasilacz"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "Przedszkole"
|
||||
},
|
||||
"produce": {
|
||||
"label": "Produkt rolny"
|
||||
},
|
||||
"product": {
|
||||
"label": "Produkty"
|
||||
},
|
||||
"public_bookcase/type": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"railway": {
|
||||
"label": "Rodzaj"
|
||||
},
|
||||
|
@ -4337,6 +4359,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "Interpolacja adresów"
|
||||
},
|
||||
"address": {
|
||||
"name": "Adres",
|
||||
"terms": "namiar, numer"
|
||||
|
@ -4430,10 +4455,18 @@
|
|||
"name": "Lądowisko dla helikopterów",
|
||||
"terms": "lądowisko dla helikopterów, lądowisko dla śmigłowców, śmigłowiec, lotnisko"
|
||||
},
|
||||
"aeroway/holding_position": {
|
||||
"name": "Punkt oczekiwania dla samolotu",
|
||||
"terms": "punkt oczekiwania dla samolotu, pozycja oczekiwania dla samolotu, holding position"
|
||||
},
|
||||
"aeroway/jet_bridge": {
|
||||
"name": "Rękaw lotniczy",
|
||||
"terms": "rękaw lotniczy, pomost lotniczy"
|
||||
},
|
||||
"aeroway/parking_position": {
|
||||
"name": "Miejsce postoju samolotu",
|
||||
"terms": "miejsce postoju samolotu, miejsce postoju dla samolotu, pozycja parkowania dla samolotu, pozycja parkowania samolotu"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "Pas startowy",
|
||||
"terms": "droga startowa, pas startowy, rozbieg"
|
||||
|
@ -4639,6 +4672,10 @@
|
|||
"name": "Dojo/szkoła sztuk walki",
|
||||
"terms": "Dojo, szkoła walki"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "Przebieralnia",
|
||||
"terms": "przebieralnia, szatnia"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Woda pitna",
|
||||
"terms": "wodotrysk,woda pitna,poidło"
|
||||
|
@ -4795,6 +4832,10 @@
|
|||
"name": "Parking wielopoziomowy",
|
||||
"terms": "parking wielopiętrowy,samochód,parking wewnętrzny,parking wielopoziomowy,budynek parkingu,pokład parkingowy,garaż parkingowy,rampa parkingowa,struktura parkingowa"
|
||||
},
|
||||
"amenity/parking/park_ride": {
|
||||
"name": "Parking \"parkuj i jedź\"",
|
||||
"terms": "parking parkuj i jedź, park & ride, p&r"
|
||||
},
|
||||
"amenity/parking/underground": {
|
||||
"name": "Parking podziemny",
|
||||
"terms": "parking podziemny, parking samochodowy"
|
||||
|
@ -5074,7 +5115,7 @@
|
|||
},
|
||||
"amenity/social_facility/homeless_shelter": {
|
||||
"name": "Schronisko dla bezdomnych",
|
||||
"terms": "przytułek dla bezdomnych"
|
||||
"terms": "schronisko dla bezdomnych, przytułek dla bezdomnych, noclegownia"
|
||||
},
|
||||
"amenity/social_facility/nursing_home": {
|
||||
"name": "Dom opieki",
|
||||
|
@ -5125,7 +5166,7 @@
|
|||
},
|
||||
"amenity/university": {
|
||||
"name": "Teren uczelni",
|
||||
"terms": "teren uniwersytetu,teren akademii,teren politechniki"
|
||||
"terms": "teren uniwersytetu, teren akademii, teren politechniki, uniwersytet, akademia, politechnika, uczelnia, wydział, instytut"
|
||||
},
|
||||
"amenity/vehicle_inspection": {
|
||||
"name": "Stacja kontroli pojazdów",
|
||||
|
@ -5591,7 +5632,7 @@
|
|||
"terms": "ruiny,wyburzony"
|
||||
},
|
||||
"building/school": {
|
||||
"name": "Budynek wyglądający jak szkoła",
|
||||
"name": "Budynek szkolny",
|
||||
"terms": "budynek szkolny"
|
||||
},
|
||||
"building/semidetached_house": {
|
||||
|
@ -5880,7 +5921,7 @@
|
|||
},
|
||||
"emergency/defibrillator": {
|
||||
"name": "Defibrylator",
|
||||
"terms": "defibrylator"
|
||||
"terms": "defibrylator aed"
|
||||
},
|
||||
"emergency/designated": {
|
||||
"name": "Wyznaczony dojazd dla służb ratowniczych"
|
||||
|
@ -6637,7 +6678,7 @@
|
|||
},
|
||||
"leisure/amusement_arcade": {
|
||||
"name": "Salon gier",
|
||||
"terms": "salon gier,automaty wrzutowe,gry wideo,symulatory jazdy,pinball"
|
||||
"terms": "salon gier, automaty wrzutowe, gry wideo, gry video, symulatory jazdy, symulatory jazdy, symulator lotu, pinball, wirtualna rzeczywistość, rzeczywistość wirtualna"
|
||||
},
|
||||
"leisure/bandstand": {
|
||||
"name": "Estrada",
|
||||
|
@ -6877,7 +6918,7 @@
|
|||
},
|
||||
"leisure/pitch/table_tennis": {
|
||||
"name": "Stół do tenisa stołowego",
|
||||
"terms": "stół do ping ponga"
|
||||
"terms": "stół do tenisa stołowego, stół do ping ponga, stół do ping-ponga, stół do pingponga, tenis stołowy"
|
||||
},
|
||||
"leisure/pitch/tennis": {
|
||||
"name": "Kort tenisowy",
|
||||
|
@ -6998,6 +7039,10 @@
|
|||
"name": "Silos",
|
||||
"terms": "silos,zbiornik,magazyn"
|
||||
},
|
||||
"man_made/cairn": {
|
||||
"name": "Kopiec",
|
||||
"terms": "kopiec kamieni"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "Komin",
|
||||
"terms": "kominek"
|
||||
|
@ -8411,6 +8456,10 @@
|
|||
"name": "Sklep ze sprzętem hi-fi",
|
||||
"terms": "hi-fi, hifi, audio, stereo, wieże, głośniki, wzmacniacze, amplitunery"
|
||||
},
|
||||
"shop/hobby": {
|
||||
"name": "Sklep hobbystyczny",
|
||||
"terms": "sklep hobbystyczny"
|
||||
},
|
||||
"shop/houseware": {
|
||||
"name": "Sklep z małymi artykułami gospodarstwa domowego",
|
||||
"terms": "sztućce, garnki, artykuły kuchenne, małe agd"
|
||||
|
@ -8603,6 +8652,10 @@
|
|||
"name": "Supermarket",
|
||||
"terms": "supermarket,biedronka,netto,dino"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "Sklep z akcesoriami do basenów",
|
||||
"terms": "Sklep z akcesoriami do basenów, akcesoria do basenów, materiały do basenów, baseny"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "Krawiec",
|
||||
"terms": "krawiec, krawcowa, szycie na miarę, odzież na miarę, rzemiosło, rzemieślnik, rzemieślnicy"
|
||||
|
@ -8656,11 +8709,11 @@
|
|||
},
|
||||
"shop/video": {
|
||||
"name": "Sklep/wypożyczalnia z filmami wideo/dvd",
|
||||
"terms": "filmy wideo, filmy dvd, filmy bluray"
|
||||
"terms": "sklep z filmami, wypożyczalnia filmów, filmy wideo, filmy video, filmy dvd, filmy blu-ray, vhs"
|
||||
},
|
||||
"shop/video_games": {
|
||||
"name": "Sklep z grami wideo",
|
||||
"terms": "gry wideo"
|
||||
"terms": "sklep z grami wideo, gry wideo, gry video, gry komputerowe, gry konsolowe, gry na konsole"
|
||||
},
|
||||
"shop/watches": {
|
||||
"name": "Sklep z zegarkami",
|
||||
|
@ -8707,7 +8760,7 @@
|
|||
},
|
||||
"tourism/apartment": {
|
||||
"name": "Mieszkanie na wynajem",
|
||||
"terms": "aparatament na wynajem, apartamenty na wynajem, mieszkanie na wynajem, mieszkania na wynajem, apartament, apartamenty, do wynajęcia"
|
||||
"terms": "mieszkanie na wynajem, mieszkania na wynajem, apartament na wynajem, apartamenty na wynajem, apartament, apartamenty, do wynajęcia, nocleg"
|
||||
},
|
||||
"tourism/aquarium": {
|
||||
"name": "Akwarium",
|
||||
|
@ -8745,6 +8798,10 @@
|
|||
"name": "Atrakcja turystyczna",
|
||||
"terms": "atrakcja turystyczna"
|
||||
},
|
||||
"tourism/camp_pitch": {
|
||||
"name": "Miejsce na kempingu",
|
||||
"terms": "miejsce na kempingu, miejsce na rozbicie namiotu, miejsce na namiot, miejsce na kampera"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "Kemping",
|
||||
"terms": "kemping, pole kempingowe, pole namiotowe"
|
||||
|
@ -9626,7 +9683,8 @@
|
|||
"name": "Eco-Club"
|
||||
},
|
||||
"ym-University-of-Ghana": {
|
||||
"name": "YouthMappers z Uniwersytetu w Ghanie"
|
||||
"name": "YouthMappers z Uniwersytetu w Ghanie",
|
||||
"description": "Oddział YouthMappers na Uniwersytecie w Ghanie"
|
||||
},
|
||||
"ym-University-of-Mines-and-Technology": {
|
||||
"name": "YouthMappers UMaT"
|
||||
|
@ -9640,6 +9698,9 @@
|
|||
"ym-Dedan-Kimathi-University-of-Technology": {
|
||||
"name": "GDEV"
|
||||
},
|
||||
"ym-University-of-Nairobi": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie w Nairobi"
|
||||
},
|
||||
"ym-African-Methodist-Episcopal-University": {
|
||||
"name": "YouthMappers-AMEU"
|
||||
},
|
||||
|
@ -9654,6 +9715,9 @@
|
|||
"name": "Lista dyskusyjna Talk-mg",
|
||||
"description": "Miejsce rozmów twórców, społeczności i użytkowników OpenStreetMap na Madagaskarze."
|
||||
},
|
||||
"ym-University-of-Malawi": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie w Malawi"
|
||||
},
|
||||
"ym-Ignatius-Ajuru-University-of-Education": {
|
||||
"name": "IgnatiusMappersTeam (IMT)"
|
||||
},
|
||||
|
@ -9666,6 +9730,10 @@
|
|||
"ym-University-of-Nigeria-Enugu-Campus": {
|
||||
"name": "LionMappersTeam (LMT) Enugu"
|
||||
},
|
||||
"osm-africa-telegram": {
|
||||
"name": "OpenStreetMap Afryka na Telegramie",
|
||||
"description": "Kanał OpenStreetMap Afryka na Telegramie"
|
||||
},
|
||||
"ym-Insititue-d-Enseignement-Superieur-de-Ruhengeri": {
|
||||
"name": "YouthMappers z INES Ruhengeri"
|
||||
},
|
||||
|
@ -9678,17 +9746,34 @@
|
|||
"ym-Njala-University-Njala-Campus": {
|
||||
"name": "YouthMappers Njala University, Njala Campus"
|
||||
},
|
||||
"ym-University-of-Pretoria": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie w Pretorii"
|
||||
},
|
||||
"ym-Sokoine-University-of-Agriculture": {
|
||||
"name": "SMCoSE YouthMappers"
|
||||
},
|
||||
"ym-University-of-Dar-es-Salaam": {
|
||||
"name": "YouthMappers na Uniwersytecie Dar es Salaam"
|
||||
},
|
||||
"ym-The-University-of-Zambia": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie w Zambii"
|
||||
},
|
||||
"ym-University-of-Zimbabwe": {
|
||||
"name": "UZMappers",
|
||||
"description": "Oddział YouthMappers na Uniwersytecie w Zimbabwe"
|
||||
},
|
||||
"osm-afghanistan-facebook": {
|
||||
"name": "OpenStreetMap Afganistan",
|
||||
"description": "Ulepsz OpenStreetMap w Afganistanie"
|
||||
},
|
||||
"OSM-BGD-facebook": {
|
||||
"name": "OpenStreetMap Bangladesz",
|
||||
"description": "Ulepsz OpenStreetMap w Bangladeszu",
|
||||
"extendedDescription": "Mapujesz w Bangladeszu? Masz pytania lub chcesz dołączyć do naszej społeczności? Wejdź na {url}. Zapraszamy wszystkich!"
|
||||
},
|
||||
"ym-Khulna-University": {
|
||||
"name": "OpenStreetMap"
|
||||
},
|
||||
"OSM-India-facebook": {
|
||||
"name": "OpenStreetMap Indie – Uczestniczący w mapowaniu sąsiedztwa",
|
||||
"description": "Ulepsz OpenStreetMap w Indiach",
|
||||
|
@ -9753,6 +9838,12 @@
|
|||
"description": "Ulepsz OpenStreetMap w Indonezji",
|
||||
"extendedDescription": "Mapujesz w Indonezji? Masz pytania lub chcesz dołączyć do naszej społeczności? Wejdź na {url}. Zapraszamy wszystkich!"
|
||||
},
|
||||
"ym-Universitas-Negeri-Makassar": {
|
||||
"name": "Kontur Geografi"
|
||||
},
|
||||
"ym-University-Muhammadiyah-Surakarta": {
|
||||
"name": "SpaceTime"
|
||||
},
|
||||
"osm-iran-aparat": {
|
||||
"name": "OpenStreetMap Iran Aparat",
|
||||
"description": "Subskrybuj nasz kanał: {url}",
|
||||
|
@ -9810,6 +9901,9 @@
|
|||
"description": "Ulepsz OpenStreetMap w Nepalu",
|
||||
"extendedDescription": "Mapujesz w Nepalu? Masz pytania lub chcesz dołączyć do naszej społeczności? Wejdź na {url}. Zapraszamy wszystkich!"
|
||||
},
|
||||
"ym-Kathmandu-University": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie w Katmandu"
|
||||
},
|
||||
"OSM-Asia-mailinglist": {
|
||||
"name": "Lista dyskusyjna OpenStreetMap Azja",
|
||||
"description": "Talk-asia to oficjalna lista dyskusyjna azjatyckiej społeczności"
|
||||
|
@ -9923,8 +10017,8 @@
|
|||
},
|
||||
"be-irc": {
|
||||
"name": "OpenStreetMap Belgia na IRC",
|
||||
"description": "Dołącz do #osmbe na irc.oftc.net (port 6667)",
|
||||
"extendedDescription": "Dołącz do #osmbe na irc.oftc.net (port 6667), który jest połączony z kanałem Matrixa"
|
||||
"description": "Wejdź na kanał #osmbe na irc.oftc.net (port 6667)",
|
||||
"extendedDescription": "Wejdź na kanał #osmbe na irc.oftc.net (port 6667), który jest połączony z kanałem Matrixa"
|
||||
},
|
||||
"be-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-be",
|
||||
|
@ -9950,7 +10044,7 @@
|
|||
},
|
||||
"hr-irc": {
|
||||
"name": "OpenStreetMap Chorwacja na IRC",
|
||||
"description": "Dołącz do #osm-hr na irc.freenode.org (port 6667)"
|
||||
"description": "Wejdź na kanał do #osm-hr na irc.freenode.org (port 6667)"
|
||||
},
|
||||
"hr-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-hr",
|
||||
|
@ -9978,19 +10072,22 @@
|
|||
},
|
||||
"dk-irc": {
|
||||
"name": "OpenStreetMap Dania na IRC",
|
||||
"description": "Dołącz do #osm-dk na irc.oftc.net (port 6667)"
|
||||
"description": "Wejdź na kanał #osm-dk na irc.oftc.net (port 6667)"
|
||||
},
|
||||
"dk-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-dk",
|
||||
"description": "Lista dyskusyjna OpenStreetMap w Danii"
|
||||
},
|
||||
"ym-Queen-Mary-University-of-London": {
|
||||
"description": "Oddział YouthMappers na Queen Mary University of London"
|
||||
},
|
||||
"fi-forum": {
|
||||
"name": "Forum OpenStreetMap FI",
|
||||
"description": "Forum www OpenStreetMap Finlandia"
|
||||
},
|
||||
"fi-irc": {
|
||||
"name": "OpenStreetMap Finlandia na IRC",
|
||||
"description": "Dołącz do #osm-fi na irc.oftc.net (port 6667)"
|
||||
"description": "Wejdź na kanał #osm-fi na irc.oftc.net (port 6667)"
|
||||
},
|
||||
"fi-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-fi",
|
||||
|
@ -10006,7 +10103,7 @@
|
|||
},
|
||||
"fr-irc": {
|
||||
"name": "OpenStreetMap Francja na IRC",
|
||||
"description": "Dołącz do #osm-fr na irc.oftc.net (port 6667)"
|
||||
"description": "Wejdź na kanał #osm-fr na irc.oftc.net (port 6667)"
|
||||
},
|
||||
"fr-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-fr",
|
||||
|
@ -10038,7 +10135,7 @@
|
|||
},
|
||||
"de-irc": {
|
||||
"name": "OpenStreetMap Niemcy na IRC",
|
||||
"description": "Dołącza do #osm-de na irc.oftc.net (port 6667)"
|
||||
"description": "Wejdź na kanał #osm-de na irc.oftc.net (port 6667)"
|
||||
},
|
||||
"de-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-de",
|
||||
|
@ -10056,6 +10153,9 @@
|
|||
"name": "OpenStreetMap Niemcy",
|
||||
"description": "Platofrma z informacjami o OpenStreetMap w Niemczech"
|
||||
},
|
||||
"ym-Heidelberg-University": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie w Heidelbergu"
|
||||
},
|
||||
"hu-facebook": {
|
||||
"name": "OpenStreetMap HU na Facebooku",
|
||||
"description": "Mapujący i OpenStreetMap Węgry na Facebooku"
|
||||
|
@ -10074,7 +10174,7 @@
|
|||
},
|
||||
"is-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-is",
|
||||
"description": "Talk-be to oficjalna lista dyskusyjna islandzkiej społeczności OSM"
|
||||
"description": "Talk-is to oficjalna lista dyskusyjna islandzkiej społeczności OSM"
|
||||
},
|
||||
"is-twitter": {
|
||||
"name": "OSM Islandia na Twitterze",
|
||||
|
@ -10086,11 +10186,11 @@
|
|||
},
|
||||
"it-irc": {
|
||||
"name": "OpenStreetMap Włochy na IRC",
|
||||
"description": "Dołącz do #osm-it na irc.oftc.net (port 6667)"
|
||||
"description": "Wejdź na kanał #osm-it na irc.oftc.net (port 6667)"
|
||||
},
|
||||
"it-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-it",
|
||||
"description": "Talk-at to oficjalna lista dyskusyjna włoskiej społeczności OSM"
|
||||
"description": "Talk-it to oficjalna lista dyskusyjna włoskiej społeczności OSM"
|
||||
},
|
||||
"it-telegram": {
|
||||
"name": "@OpenStreetMapItalia na Telegramie",
|
||||
|
@ -10118,10 +10218,18 @@
|
|||
"name": "Lista dyskusyjna OpenStreetMap dla Trydentu",
|
||||
"description": "Regionalna lista dyskusyjna OpenStreetMap Włochy dla Trydentu"
|
||||
},
|
||||
"ym-Politecnico-di-Milano": {
|
||||
"name": "PoliMappers",
|
||||
"description": "Oddział YouthMappers na Politechnice w Milanie"
|
||||
},
|
||||
"kosovo-telegram": {
|
||||
"name": "OpenStreetMap Kosowa na Telegramie",
|
||||
"name": "OpenStreetMap Kosowo na Telegramie",
|
||||
"description": "Półoficjalna grupa publiczna na Telegramie dla Kosowa i okolic. Zapraszamy wszystkich mapujących z dowolnego kraju i z dowolnym językiem."
|
||||
},
|
||||
"lu-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-lu",
|
||||
"description": "Oficjalna lista dyskusyjna luksemburskiej społeczności OSM"
|
||||
},
|
||||
"no-forum": {
|
||||
"name": "Forum www OpenStreetMap Norwegia",
|
||||
"description": "Forum www OpenStreetMap Norwegia"
|
||||
|
@ -10146,6 +10254,14 @@
|
|||
"name": "Forum OpenStreetMap Polska",
|
||||
"description": "Forum dyskusyjne polskiej społeczności OpenStreetMap"
|
||||
},
|
||||
"pt-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-pt",
|
||||
"description": "Talk-pt to oficjalna lista dyskusyjna portugalskiej społeczności OSM"
|
||||
},
|
||||
"pt-telegram": {
|
||||
"name": "OpenStreetMap Portugalia na Telegramie",
|
||||
"description": "Grupa na Telegramie portugalskiej społeczności OpenStreetMap {url}"
|
||||
},
|
||||
"si-forum": {
|
||||
"name": "Forum OpenStreetMap Słowenia",
|
||||
"description": "Forum społeczności OpenStreetMap w Słowenii"
|
||||
|
@ -10166,6 +10282,9 @@
|
|||
"name": "@OSMes na Telegramie",
|
||||
"description": "Kanał OpenStreetMap Hiszpania na Telegramie"
|
||||
},
|
||||
"ym-Universidad-Politcnica-de-Madrid": {
|
||||
"description": "Oddział YouthMappers na Politechnice w Madrycie"
|
||||
},
|
||||
"osm-se": {
|
||||
"name": "OpenStreetMap.se",
|
||||
"description": "Zapewniaj usługi OSM i informacje dla lokalnej społeczności w Szwecji"
|
||||
|
@ -10180,7 +10299,7 @@
|
|||
},
|
||||
"se-irc": {
|
||||
"name": "OpenStreetMap Szwecja na IRC",
|
||||
"description": "Dołącz do #osm.se na irc.oftc.net (port 6667)"
|
||||
"description": "Wejdź na kanał #osm.se na irc.oftc.net (port 6667)"
|
||||
},
|
||||
"se-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-se",
|
||||
|
@ -10206,8 +10325,14 @@
|
|||
},
|
||||
"gb-irc": {
|
||||
"name": "OpenStreetMap Zjednoczone Królestwo na IRC",
|
||||
"description": "Dołącz do #osm-gb na irc.oftc.net (port 6667)",
|
||||
"extendedDescription": "Dołącz do #osm-gb na irc.oftc.net (port 6667), prosimy o cierpliwość i chwilę oczekiwania po zadaniu pytania"
|
||||
"description": "Wejdź na kanał #osm-gb na irc.oftc.net (port 6667)",
|
||||
"extendedDescription": "Wejdź na kanał #osm-gb na irc.oftc.net (port 6667), prosimy o cierpliwość i chwilę oczekiwania po zadaniu pytania"
|
||||
},
|
||||
"ym-University-of-Exeter": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie w Exeter"
|
||||
},
|
||||
"ym-University-of-Warwick": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie w Warwick"
|
||||
},
|
||||
"OSM-CA-Slack": {
|
||||
"name": "OSM-CA na Slacku",
|
||||
|
@ -10228,6 +10353,9 @@
|
|||
"ym-Universidad-Nacional-de-Ingenieria": {
|
||||
"name": "Yeka Street MGA"
|
||||
},
|
||||
"ym-University-of-Panama": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie w Panamie"
|
||||
},
|
||||
"Bay-Area-OpenStreetMappers": {
|
||||
"name": "Mapujący OpenStreetMap z Bay Area",
|
||||
"description": "Ulepsz OpenStreetMap w Bay Area",
|
||||
|
@ -10376,19 +10504,59 @@
|
|||
"description": "Mapujący i użytkownicy OpenStreetMap z okolic Grand Junction",
|
||||
"extendedDescription": "Celem tej grupy jest przedstawienie OpenStreetMap społeczności, utworzenie wspólnoty mapujących, stworzenie najbardziej niesamowitych danych geograficznych używając wszystkich dostępnych metod, które znamy i ostatecznie zintegrowanie tego wszystkiego, aby przedstawić nasze osiągnięcia. Wyobraź sobie dokładne oznakowania szlaków! Wyobraź sobie dalszy rozwój ścieżek rowerowych! Wyobraź sobie cokolwiek chcesz! To jest właśnie radość z OpenStreetMap!"
|
||||
},
|
||||
"ym-George-Mason-University": {
|
||||
"name": "Mason Mappers",
|
||||
"description": "Oddział YouthMappers na George Mason University"
|
||||
},
|
||||
"ym-Kansas-State-University": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie Stanowym Kansas"
|
||||
},
|
||||
"ym-Miami-University": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie Miami w Oxford, Ohio"
|
||||
},
|
||||
"ym-Montgomery-College": {
|
||||
"name": "GeoMC"
|
||||
},
|
||||
"ym-New-York-University": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie Nowojorskim"
|
||||
},
|
||||
"ym-State-University-of-New-York-Geneseo": {
|
||||
"name": "Stowarzyszenie SUNY Geneseo GIS"
|
||||
},
|
||||
"ym-SUNY-at-Fredonia": {
|
||||
"name": "Geoventurers"
|
||||
},
|
||||
"ym-The-Pennsylvania-State-University": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie Stanowym Pensylwanii"
|
||||
},
|
||||
"ym-University-of-California-Davis": {
|
||||
"name": "Mapping Club"
|
||||
},
|
||||
"ym-University-of-Chicago": {
|
||||
"description": "Oddział YouthMappers na Uniwersytecie Chicagowskim"
|
||||
},
|
||||
"ym-University-of-Southern-California": {
|
||||
"name": "SC Mappers"
|
||||
},
|
||||
"ym-UW-Madison": {
|
||||
"name": "BadgerMaps"
|
||||
},
|
||||
"ym-Vassar-College": {
|
||||
"name": "Hudson Valley Mappers"
|
||||
},
|
||||
"ym-Western-Michigan-University": {
|
||||
"name": "Geography Club"
|
||||
},
|
||||
"geogeeks_perth_meetup": {
|
||||
"name": "Spotkania GeoGeeks Perth"
|
||||
},
|
||||
"talk-au": {
|
||||
"name": "Lista dyskusyjna Talk-au",
|
||||
"description": "Miejsce rozmów mapujących z Aussie"
|
||||
},
|
||||
"talk-nz": {
|
||||
"name": "Lista dyskusyjna Talk-nz"
|
||||
},
|
||||
"OSM-AR-facebook": {
|
||||
"name": "OpenStreetMap Argentyna na Facebooku",
|
||||
"description": "Dołącz do społeczności OpenStreetMap Argentyna na Facebooku",
|
||||
|
@ -10401,7 +10569,7 @@
|
|||
},
|
||||
"OSM-AR-irc": {
|
||||
"name": "OpenStreetMap Argentyna na IRC",
|
||||
"description": "Dołącz do #osm-ar na irc.oftc.net (port 6667)",
|
||||
"description": "Wejdź na kanał #osm-ar na irc.oftc.net (port 6667)",
|
||||
"extendedDescription": "Możesz znaleźć największego geeka w społeczności."
|
||||
},
|
||||
"OSM-AR-mailinglist": {
|
||||
|
@ -10433,6 +10601,10 @@
|
|||
"description": "Dołącz do społeczności OpenStreetMap Brazylia na Telegramie",
|
||||
"extendedDescription": "Dołącz do społeczności, aby dowiedzieć się więcej o OpenStreetMap, zadawać pytania i brać udział w naszych spotkaniach. Zapraszamy wszystkich!"
|
||||
},
|
||||
"OSM-br-discord": {
|
||||
"name": "OpenStreetMap Brazylia na Discord",
|
||||
"description": "Dołącz do społeczności OpenStreetMap Brazylia na Discord"
|
||||
},
|
||||
"OSM-br-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-br",
|
||||
"description": "Lista dyskusyjna OpenStreetMap w Brazylii"
|
||||
|
@ -10495,6 +10667,15 @@
|
|||
"name": "OpenStreetMap Kolumbia",
|
||||
"description": "Wiadomości z kolumbijskiej społeczności OpenStreetMap i fundacji OSMCo"
|
||||
},
|
||||
"ym-Universidad-de-Antioquia": {
|
||||
"name": "Geomatica UDEA"
|
||||
},
|
||||
"ym-Universidad-de-La-Guajira": {
|
||||
"name": "Grupo Mesh"
|
||||
},
|
||||
"ym-Universidad-Nacional-de-Colombia": {
|
||||
"name": "Grupo UN"
|
||||
},
|
||||
"OSM-EC-telegram": {
|
||||
"name": "OSM Ekwador na Telegramie",
|
||||
"description": "Kanał OpenStreetMap Ekwador na Telegramie"
|
||||
|
@ -10527,6 +10708,31 @@
|
|||
"name": "OpenStreetMap Peru",
|
||||
"description": "Wiadomości i zasoby z peruwiańskiej społeczności OpenStreetMap"
|
||||
},
|
||||
"uy-forum": {
|
||||
"name": "Forum OpenStreetMap UY",
|
||||
"description": "Forum OpenStreetMap Urugwaj"
|
||||
},
|
||||
"uy-irc": {
|
||||
"name": "OpenStreetMap Urugwaj na IRC",
|
||||
"description": "Wejdź na kanał #osmuruguay na irc.freenode.org (port 6667)",
|
||||
"extendedDescription": "Wejdź na kanał #osmuruguay na irc.freenode.org"
|
||||
},
|
||||
"uy-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-uy",
|
||||
"description": "Talk-uy to oficjalna lista dyskusyjna urugwajskiej społeczności OSM"
|
||||
},
|
||||
"ve-forum": {
|
||||
"name": "Forum OpenStreetMap VE",
|
||||
"description": "Forum www OpenStreetMap Wenezuela"
|
||||
},
|
||||
"ve-mailinglist": {
|
||||
"name": "Lista dyskusyjna Talk-ve",
|
||||
"description": "Talk-ve to oficjalna lista dyskusyjna wenezuelskiej społeczności OSM"
|
||||
},
|
||||
"ve-telegram": {
|
||||
"name": "OSM Wenezuela na Telegramie",
|
||||
"description": "Dołącz do społeczności OpenStreetMap Wenezuela na Telegramie"
|
||||
},
|
||||
"LATAM-Facebook": {
|
||||
"name": "OpenStreetMap Latam na Facebooku",
|
||||
"description": "OpenStreetMap Latam na Facebooku"
|
||||
|
@ -10565,7 +10771,7 @@
|
|||
},
|
||||
"OSM-IRC": {
|
||||
"name": "IRC OpenStreetMap",
|
||||
"description": "Dołącz do #osm na serwerze irc.oftc.net (port 6667)"
|
||||
"description": "Wejdź na kanał #osm na irc.oftc.net (port 6667)"
|
||||
},
|
||||
"OSM-Reddit": {
|
||||
"name": "OpenStreetMap na Reddit",
|
||||
|
|
75
vendor/assets/iD/iD/locales/pt-BR.json
vendored
75
vendor/assets/iD/iD/locales/pt-BR.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Use camadas diferentes"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Use camadas ou níveis diferentes"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Use níveis diferentes"
|
||||
},
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
"access_simple": {
|
||||
"label": "Acesso permitido"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Tipo",
|
||||
"options": {
|
||||
"all": "Tudo",
|
||||
"alphabetic": "Alfabético",
|
||||
"even": "Par",
|
||||
"odd": "Ímpar"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Endereço",
|
||||
"placeholders": {
|
||||
|
@ -2650,6 +2662,10 @@
|
|||
"building": {
|
||||
"label": "Edifício"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Níveis subterrâneos",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Níveis do edifício ",
|
||||
"placeholder": "2, 4, 6..."
|
||||
|
@ -3168,10 +3184,10 @@
|
|||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "Código IATA"
|
||||
"label": "Código do aeroporto IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "Código ICAO"
|
||||
"label": "Código do aeroporto da ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Declividade"
|
||||
|
@ -3673,12 +3689,18 @@
|
|||
"power_supply": {
|
||||
"label": "Fonte de Energia"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "Educação infantil"
|
||||
},
|
||||
"produce": {
|
||||
"label": "Tipo de Produção"
|
||||
},
|
||||
"product": {
|
||||
"label": "Produtos"
|
||||
},
|
||||
"public_bookcase/type": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
"railway": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
|
@ -4337,6 +4359,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "Interpolação de endereços"
|
||||
},
|
||||
"address": {
|
||||
"name": "Endereço",
|
||||
"terms": "Endereço"
|
||||
|
@ -4429,10 +4454,18 @@
|
|||
"name": "Heliponto",
|
||||
"terms": "Heliponto, ponto de pouso de helicópteros, Heliporto"
|
||||
},
|
||||
"aeroway/holding_position": {
|
||||
"name": "Posição de retenção de aeronaves",
|
||||
"terms": "Posição de retenção de aeronaves"
|
||||
},
|
||||
"aeroway/jet_bridge": {
|
||||
"name": "Ponte telescópica",
|
||||
"terms": "Ponte telescópica"
|
||||
},
|
||||
"aeroway/parking_position": {
|
||||
"name": "Posição de estacionamento de aeronaves",
|
||||
"terms": "Posição de estacionamento de aeronaves"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "Pista de Pouso e Decolagem",
|
||||
"terms": "Pista de pouso e decolagem"
|
||||
|
@ -4572,7 +4605,7 @@
|
|||
},
|
||||
"amenity/clinic": {
|
||||
"name": "Clínica ou Posto de Saúde",
|
||||
"terms": "Clínica, Consultório, Posto de Saúde, Médico, Atendimento médico especializado, hospital"
|
||||
"terms": "clínica, consultório, posto de saúde, unidade de saúde, unidade básica de saúde, ubs, pronto atendimento, enfermaria, doutor, médico, atendimento médico especializado, hospital"
|
||||
},
|
||||
"amenity/clinic/abortion": {
|
||||
"name": "Clínica de Aborto",
|
||||
|
@ -4637,6 +4670,10 @@
|
|||
"name": "Academia de Artes Marciais",
|
||||
"terms": "Judô, Karatê, hapkidô, jiu-jítsu, ju-jitsu boxe, savate, ninjitsu, esgrima, luta olímpica, krav magá, capoeira, artes marciais, luta, taekwondo, kickboxing"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "Vestiário",
|
||||
"terms": "provador, vestiário, cabine de trocar de roupa"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Bebedouro",
|
||||
"terms": "Água Potável, Bebedouro, fonte"
|
||||
|
@ -4735,8 +4772,8 @@
|
|||
"terms": "Cyber Café"
|
||||
},
|
||||
"amenity/karaoke": {
|
||||
"name": "Karaoke Box",
|
||||
"terms": "Karaoke Box"
|
||||
"name": "Caixa de Karaokê",
|
||||
"terms": "Caixa de Karaokê"
|
||||
},
|
||||
"amenity/kindergarten": {
|
||||
"name": "Pré-escola",
|
||||
|
@ -4792,6 +4829,10 @@
|
|||
"name": "Estacionamento de carros multinível",
|
||||
"terms": "Estacionamento de carros multinível"
|
||||
},
|
||||
"amenity/parking/park_ride": {
|
||||
"name": "Estacionamento Pare e Siga",
|
||||
"terms": "Parque de estacionamento integrado,parque de estacionamento de incentivo,parque de estacionamento de metro,parque de estacionamento dissuasor,P&R,Park & Ride"
|
||||
},
|
||||
"amenity/parking/underground": {
|
||||
"name": "Estacionamento subterrâneo",
|
||||
"terms": "Estacionamento subterrâneo"
|
||||
|
@ -5078,7 +5119,7 @@
|
|||
},
|
||||
"amenity/studio": {
|
||||
"name": "Estúdio de rádio/TV ou de gravação",
|
||||
"terms": "Estúdio, rádio, ensaio, música, banda, gravação, TV, cinema, produtora,"
|
||||
"terms": "Estúdio, rádio, ensaio, música, banda, gravação, TV, televisão, filmes, cinema, produtora,"
|
||||
},
|
||||
"amenity/swimming_pool": {
|
||||
"name": "Piscina"
|
||||
|
@ -6990,6 +7031,10 @@
|
|||
"name": "Silo Bunker",
|
||||
"terms": "Bunker de silo"
|
||||
},
|
||||
"man_made/cairn": {
|
||||
"name": "Moledros",
|
||||
"terms": "Moledros,Moledos,Melédros"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "Chaminé",
|
||||
"terms": "Lareira, Forno, Fábrica, Indústria, Gás"
|
||||
|
@ -8287,7 +8332,7 @@
|
|||
},
|
||||
"shop/electronics": {
|
||||
"name": "Loja de Eletrônicos",
|
||||
"terms": "Loja de Eletrônicos, Equipamentos Eletrônicos, TV, Eletrodomésticos"
|
||||
"terms": "loja de eletrônicos, equipamentos eletrônicos, TV, eletrodomésticos, televisão, bluray, câmera, celular, smartphone, vídeo, computador, áudio, som, rádio"
|
||||
},
|
||||
"shop/erotic": {
|
||||
"name": "Sex Shop",
|
||||
|
@ -8402,6 +8447,10 @@
|
|||
"name": "Loja de Aparelhos Hi-Fi",
|
||||
"terms": "Loja de Equipamentos de Áudio, Loja de Aparelhos de Alta Fidelidade"
|
||||
},
|
||||
"shop/hobby": {
|
||||
"name": "Loja de passatempo",
|
||||
"terms": "Loja de passatempo,Loja de hobbies"
|
||||
},
|
||||
"shop/houseware": {
|
||||
"name": "Loja de Utensílios Domésticos",
|
||||
"terms": "Loja de utensílios, Loja de acessórios para casa"
|
||||
|
@ -8594,6 +8643,10 @@
|
|||
"name": "Supermercado",
|
||||
"terms": "Supermercado"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "Loja de suprimentos para piscinas",
|
||||
"terms": "Loja de suprimentos para piscinas"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "Alfaiataria",
|
||||
"terms": "Alfaiataria"
|
||||
|
@ -8736,6 +8789,10 @@
|
|||
"name": "Atração Turística",
|
||||
"terms": "ponto turístico, atração turística, parque turístico, turismo"
|
||||
},
|
||||
"tourism/camp_pitch": {
|
||||
"name": "Acampamento de arremesso",
|
||||
"terms": "Acampamento de arremesso"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "Local de Acampamento",
|
||||
"terms": "Área de Acampamento, Acampamento, Camping"
|
||||
|
@ -10170,6 +10227,10 @@
|
|||
"description": "Junte-se à comunidade OpenStreetMap Brasília no Telegram",
|
||||
"extendedDescription": "Entre na comunidade para aprender mais sobre o OpenStreetMap, fazer perguntas ou participar dos nossos encontros. Todos são bem-vindos!"
|
||||
},
|
||||
"OSM-br-discord": {
|
||||
"name": "Discord do OpenStreetMap Brasil",
|
||||
"description": "Junte-se à comunidade do OpenStreetMap Brasil no Discord"
|
||||
},
|
||||
"OSM-br-mailinglist": {
|
||||
"name": "Lista de Discussão Talk-br",
|
||||
"description": "Uma lista de discussão para falar sobre o OpenStreetMap no Brasil"
|
||||
|
|
99
vendor/assets/iD/iD/locales/pt.json
vendored
99
vendor/assets/iD/iD/locales/pt.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Usar camadas diferentes"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Usar camadas ou níveis diferentes "
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Usar níveis diferentes"
|
||||
},
|
||||
|
@ -2424,11 +2427,11 @@
|
|||
"title": "Destino"
|
||||
},
|
||||
"dismount": {
|
||||
"description": "Acesso permitido mas o cavaleiro deve desmontar",
|
||||
"description": "Acesso permitido, mas o cavaleiro deve desmontar",
|
||||
"title": "Desmontar"
|
||||
},
|
||||
"no": {
|
||||
"description": "Acesso não permitido para o público geral",
|
||||
"description": "Acesso não permitido ao público em geral",
|
||||
"title": "Proibido"
|
||||
},
|
||||
"permissive": {
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
"access_simple": {
|
||||
"label": "Acesso permitido"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Tipo",
|
||||
"options": {
|
||||
"all": "Tudo",
|
||||
"alphabetic": "Alfabética",
|
||||
"even": "Par",
|
||||
"odd": "Ímpar"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Morada",
|
||||
"placeholders": {
|
||||
|
@ -2650,6 +2662,10 @@
|
|||
"building": {
|
||||
"label": "Edifício"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Níveis no subsolo",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Pisos do edifício",
|
||||
"placeholder": "2, 4, 6..."
|
||||
|
@ -3168,10 +3184,10 @@
|
|||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
"label": "Código aeroportuário IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
"label": "Código aeroportuário ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Inclinação"
|
||||
|
@ -3499,6 +3515,9 @@
|
|||
"operator": {
|
||||
"label": "Organismo operador"
|
||||
},
|
||||
"operator/type": {
|
||||
"label": "Tipo de operador"
|
||||
},
|
||||
"outdoor_seating": {
|
||||
"label": "Cadeiras exteriores"
|
||||
},
|
||||
|
@ -3670,12 +3689,18 @@
|
|||
"power_supply": {
|
||||
"label": "Fonte de energia"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "Pré-escola"
|
||||
},
|
||||
"produce": {
|
||||
"label": "produz"
|
||||
},
|
||||
"product": {
|
||||
"label": "Produtos"
|
||||
},
|
||||
"public_bookcase/type": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
"railway": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
|
@ -4334,6 +4359,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "Interpolação de endereço"
|
||||
},
|
||||
"address": {
|
||||
"name": "Morada / nº de porta",
|
||||
"terms": "endereço, morada, endereçamento, código postal, localização, número de porta, nº de porta, n.º de porta, número de polícia, nº de polícia, n.º de polícia, número"
|
||||
|
@ -4427,10 +4455,18 @@
|
|||
"name": "Heliporto / heliponto",
|
||||
"terms": "Helicóptero"
|
||||
},
|
||||
"aeroway/holding_position": {
|
||||
"name": "Ponto de espera de avião",
|
||||
"terms": "aircraft holding position, ponto de espera de avião, posição de espera de avião"
|
||||
},
|
||||
"aeroway/jet_bridge": {
|
||||
"name": "Ponte de embarque",
|
||||
"terms": "jet bridge, jetway, finger, aerobridge, ponte de embarque, ponte telescópica, manga, manga de embarque, ponte de aeroporto"
|
||||
},
|
||||
"aeroway/parking_position": {
|
||||
"name": "Área de estacionamento de avião",
|
||||
"terms": "aircraft parking position, área de estacionamento de avião, ponto de estacionamento de avião, lugar de estacionamento de avião"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "Pista de aterragem e descolagem",
|
||||
"terms": "Faixa de Aterragem, Pista, Pista de Aeroporto, Pista de Aeródromo, Pista de Aterragem, Pista de Descolagem"
|
||||
|
@ -4636,6 +4672,10 @@
|
|||
"name": "Centro de artes marciais",
|
||||
"terms": "Dojo, Karaté, Taekwondo, Judo, Jiu-jitsu, Jiu-jitsu Brasileiro, Kung Fu, Capoeira, Eskrima, Escrima, Escryma, Muay Thai, Krav Magá, Jeet Kune Do"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "Cabine de provas",
|
||||
"terms": "changing room, cabine de provas, sala de provas, troca de roupa, trocar de roupa, mudar de roupa"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Água potável",
|
||||
"terms": "fonte de água, água potável, água, bebedouro, bebedoiro, fontanário, fontenário, beber"
|
||||
|
@ -4733,6 +4773,10 @@
|
|||
"name": "Cibercafé",
|
||||
"terms": "cyber café, cyber cafe, cyber-café, cyber-cafe, ciber café, ciber cafe, ciber-café, ciber-cafe, cybercafe, cibercafe, cibercafé, cybercafé, internet café, internet cafe, internet, acesso à internet, wi-fi"
|
||||
},
|
||||
"amenity/karaoke": {
|
||||
"name": "Sala de karaoke",
|
||||
"terms": "karaoke box, karaoke, caraoque, karaoque, caraoke, noraebang"
|
||||
},
|
||||
"amenity/kindergarten": {
|
||||
"name": "Jardim infantil / infantário",
|
||||
"terms": "preschool, kindergarten, grounds, pré-escola, pré escola, creche, jardim de infância, jardim-de-infância, jardim infantil, pré-escola, pré-escolar, infantário"
|
||||
|
@ -4788,6 +4832,10 @@
|
|||
"name": "Garagem de estacionamento multi nível",
|
||||
"terms": "Garagem de estacionamento de vários níveis, silo"
|
||||
},
|
||||
"amenity/parking/park_ride": {
|
||||
"name": "Estacionamento Pare e Siga",
|
||||
"terms": "Parque de estacionamento integrado,parque de estacionamento de incentivo,parque de estacionamento de metro,parque de estacionamento dissuasor,P&R,Park & Ride"
|
||||
},
|
||||
"amenity/parking/underground": {
|
||||
"name": "Estacionamento subterrâneo",
|
||||
"terms": "underground parking, estacionamento subterrâneo, parque de estacionamento subterrâneo, parque subterrâneo, parque de estacionamento, subterrâneo, estacionamento, estacionar"
|
||||
|
@ -5941,6 +5989,9 @@
|
|||
"name": "Vau (ponto de passagem num curso de água baixo)",
|
||||
"terms": "Baixio, Banco, Parel"
|
||||
},
|
||||
"ford_line": {
|
||||
"name": "Vau / almegue"
|
||||
},
|
||||
"golf/bunker": {
|
||||
"name": "Banco de areia",
|
||||
"terms": "Sand Trap"
|
||||
|
@ -6009,6 +6060,10 @@
|
|||
"name": "Banco de sangue ",
|
||||
"terms": "Centro de Doação de Sangue, doação de sangue, transfusão de sangue, blood donor center"
|
||||
},
|
||||
"healthcare/counselling": {
|
||||
"name": "Centro de aconselhamento",
|
||||
"terms": "counselling center, centro de aconselhamento, aconselhamento, aconcelhamento"
|
||||
},
|
||||
"healthcare/hospice": {
|
||||
"name": "Unidade de cuidados paliativos",
|
||||
"terms": "hospice, cuidados paliativos, paliativos"
|
||||
|
@ -6984,6 +7039,10 @@
|
|||
"name": "Silo tipo búnquer",
|
||||
"terms": "silo-corredor, funil, silo, búnquer, bunquer, búnker, bunker, armazenamento"
|
||||
},
|
||||
"man_made/cairn": {
|
||||
"name": "Moledros / mariolas",
|
||||
"terms": "cairn, moledros, moledos, melédros, mariolas, moledro, moledo, melédro, mariola"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "Chaminé",
|
||||
"terms": "Chimney"
|
||||
|
@ -7080,6 +7139,10 @@
|
|||
"name": "Tubagem no subsolo",
|
||||
"terms": "tubo, tubos, pipeline, tubagem, gasoduto, oleoduto, canalização"
|
||||
},
|
||||
"man_made/pipeline/valve": {
|
||||
"name": "Válvula de pipeline",
|
||||
"terms": "pipeline valve, válvula de pipeline, válvula, torneira, pipeline, oleoduto, gasoduto, tubo, tubagem, canalização"
|
||||
},
|
||||
"man_made/pumping_station": {
|
||||
"name": "Estação de bombeamento",
|
||||
"terms": "Pumping Station"
|
||||
|
@ -7112,6 +7175,10 @@
|
|||
"name": "Vértice geodésico / talefe",
|
||||
"terms": "Survey Point"
|
||||
},
|
||||
"man_made/torii": {
|
||||
"name": "Torii",
|
||||
"terms": "torii, tori, tóri"
|
||||
},
|
||||
"man_made/tower": {
|
||||
"name": "Torre",
|
||||
"terms": "Torre, Alto, Tower"
|
||||
|
@ -8295,6 +8362,10 @@
|
|||
"shop/fashion": {
|
||||
"name": "Loja de moda"
|
||||
},
|
||||
"shop/fashion_accessories": {
|
||||
"name": "Loja de acessórios de moda",
|
||||
"terms": "fashion accessories store, loja de acessórios de moda, acessórios de moda, acessórios, bijuteria, mala, bolsa, chapéu, joalharia, joalheria, óculos de sol, carteira"
|
||||
},
|
||||
"shop/fireplace": {
|
||||
"name": "Loja de lareiras",
|
||||
"terms": "Lareira, fogo, lenha"
|
||||
|
@ -8385,6 +8456,10 @@
|
|||
"name": "Loja de alta fidelidade",
|
||||
"terms": "Hifi Store, Som"
|
||||
},
|
||||
"shop/hobby": {
|
||||
"name": "Loja de passatempos",
|
||||
"terms": "hobby shop, loja de passatempos, loja de hobbys, passatempo, passa-tempo, hobby, hoby, hobi, obby, oby, hobie, obie"
|
||||
},
|
||||
"shop/houseware": {
|
||||
"name": "Loja de utensílios",
|
||||
"terms": "Houseware Store, Utensílios Domésticos, Artigos para o Lar, Artigos para Casa, Panelas, Panela, Talheres, Utensílios, Cozinha"
|
||||
|
@ -8577,6 +8652,10 @@
|
|||
"name": "Supermercado / hipermercado",
|
||||
"terms": "Hiper-mercado, Hiper mercado, Super-mercado, Super mercado, Compras, Loja, Alimentar, Alimentos"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "Loja de artigos para piscinas",
|
||||
"terms": "pool supply store, artigos para piscinas, piscina, picina, pissina, pisina"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "Alfaiate",
|
||||
"terms": "Tailor, Vestido, Fato, Roupa"
|
||||
|
@ -8719,6 +8798,10 @@
|
|||
"name": "Atração turística",
|
||||
"terms": "ponto turístico, turismo, atração turística, atração, atracção"
|
||||
},
|
||||
"tourism/camp_pitch": {
|
||||
"name": "Alvéolo de parque de campismo",
|
||||
"terms": "camp pitch, alvéolo, talhão, secção, parte, parque de campismo"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "Parque de campismo",
|
||||
"terms": "acampamento, parque, campismo, campistas, acampar"
|
||||
|
@ -10069,6 +10152,14 @@
|
|||
"name": "Fórum OpenStreetMap Polónia",
|
||||
"description": "Fórum da comunidade polaca OpenStreetMap"
|
||||
},
|
||||
"pt-mailinglist": {
|
||||
"name": "Mailing List Talk-pt",
|
||||
"description": "Talk-pt faz parte da mailing list oficial para a comunidade portuguesa do OSM"
|
||||
},
|
||||
"pt-telegram": {
|
||||
"name": "OpenStreetMap Portugal no Telegram",
|
||||
"description": "Grupo do Telegram da comunidade Portuguesa do OpenStreetMap {url}"
|
||||
},
|
||||
"si-forum": {
|
||||
"name": "Fórum do OpenStreetMap Eslovénia",
|
||||
"description": "Fórum da comunidade OpenStreetMap na Eslovénia"
|
||||
|
|
6
vendor/assets/iD/iD/locales/ro.json
vendored
6
vendor/assets/iD/iD/locales/ro.json
vendored
|
@ -1110,12 +1110,6 @@
|
|||
"undefined": "Nu"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Înclinare"
|
||||
},
|
||||
|
|
150
vendor/assets/iD/iD/locales/ru.json
vendored
150
vendor/assets/iD/iD/locales/ru.json
vendored
|
@ -205,6 +205,11 @@
|
|||
},
|
||||
"downgrade": {
|
||||
"title": "Понизить",
|
||||
"description": {
|
||||
"building_address": "Удалить все тэги, кроме адреса и здания.",
|
||||
"building": "Удалить все тэги, кроме здания.",
|
||||
"address": "Удалить все тэги, кроме адреса."
|
||||
},
|
||||
"annotation": {
|
||||
"building": {
|
||||
"single": "Понизить объект до обычного здания.",
|
||||
|
@ -276,7 +281,8 @@
|
|||
"restriction": "Эти объекты нельзя объединить, потому что это повредит отношение \"{relation}\".",
|
||||
"relation": "Эти объекты нельзя объединить, потому что их роли в отношении конфликтуют друг с другом.",
|
||||
"incomplete_relation": "Эти объекты нельзя объединить, так как хотя бы один из них не был загружен целиком.",
|
||||
"conflicting_tags": "Эти объекты нельзя объединить, так как некоторые из их тегов содержат конфликтующие значения."
|
||||
"conflicting_tags": "Эти объекты нельзя объединить, так как некоторые из их тегов содержат конфликтующие значения.",
|
||||
"paths_intersect": "Объекты нельзя объединить, так как результирующий контур будет пересекаться сам с собой."
|
||||
},
|
||||
"move": {
|
||||
"title": "Переместить",
|
||||
|
@ -303,6 +309,10 @@
|
|||
"connected_to_hidden": {
|
||||
"single": "Этот объект нельзя переместить, так как он соединён со скрытым объектом.",
|
||||
"multiple": "Эти объекты нельзя переместить, так как они соединёны со скрытыми объектами."
|
||||
},
|
||||
"not_downloaded": {
|
||||
"single": "Объект нельзя передвинуть, так как его части еще не были загружены.",
|
||||
"multiple": "Объекты нельзя передвинуть, так как их части еще не были загружены."
|
||||
}
|
||||
},
|
||||
"reflect": {
|
||||
|
@ -345,6 +355,10 @@
|
|||
"connected_to_hidden": {
|
||||
"single": "Этот объект нельзя отразить, так как он соединён со скрытым объектом.",
|
||||
"multiple": "Эти объекты нельзя отразить, так как они соединёны со скрытыми объектами."
|
||||
},
|
||||
"not_downloaded": {
|
||||
"single": "Объект нельзя отразить, так как его части еще не были загружены.",
|
||||
"multiple": "Объекты нельзя отразить, так как их части еще не были загружены."
|
||||
}
|
||||
},
|
||||
"rotate": {
|
||||
|
@ -370,6 +384,10 @@
|
|||
"connected_to_hidden": {
|
||||
"single": "Этот объект нельзя повернуть, так как он соединён со скрытым объектом.",
|
||||
"multiple": "Эти объекты нельзя повернуть, так как они соединёны со скрытыми объектами."
|
||||
},
|
||||
"not_downloaded": {
|
||||
"single": "Объект нельзя повернуть, так как его части еще не были загружены.",
|
||||
"multiple": "Объекты нельзя повернуть, так как их части еще не были загружены."
|
||||
}
|
||||
},
|
||||
"reverse": {
|
||||
|
@ -761,6 +779,7 @@
|
|||
"tooltip": "Здания, укрытия, гаражи и т.д."
|
||||
},
|
||||
"building_parts": {
|
||||
"description": "Части зданий",
|
||||
"tooltip": "3D здания и компоненты крыши"
|
||||
},
|
||||
"indoor": {
|
||||
|
@ -908,7 +927,8 @@
|
|||
"splash": {
|
||||
"welcome": "Вас приветствует iD — редактор карт OpenStreetMap",
|
||||
"text": "Редактор iD — простой, но мощный инструмент для редактирования лучшей в мире бесплатной открытой карты. Версия программы: {version}. Дополнительную информацию смотрите на {website}, об ошибках сообщайте на {github}.",
|
||||
"walkthrough": "Начать обучение"
|
||||
"walkthrough": "Начать обучение",
|
||||
"start": "Начать редактировать"
|
||||
},
|
||||
"source_switch": {
|
||||
"live": "основной",
|
||||
|
@ -948,13 +968,21 @@
|
|||
"west": "запад"
|
||||
},
|
||||
"error_types": {
|
||||
"ow": {
|
||||
"title": "Пропущено односторонее движение"
|
||||
},
|
||||
"mr": {
|
||||
"title": "Пропущена геометрия"
|
||||
},
|
||||
"tr": {
|
||||
"title": "Отсутствует запрет манёвра"
|
||||
}
|
||||
}
|
||||
},
|
||||
"keepRight": {
|
||||
"title": "Ошибка KeepRight",
|
||||
"detail_title": "Ошибка",
|
||||
"detail_description": "Описание",
|
||||
"comment": "Комментарий",
|
||||
"comment_placeholder": "Введите комментарий для других пользователей",
|
||||
"close": "Закрыть (ошибка исправлена)",
|
||||
|
@ -963,12 +991,69 @@
|
|||
"close_comment": "Закрыть с комментарием",
|
||||
"ignore_comment": "Игнорировать с комментарием",
|
||||
"error_parts": {
|
||||
"this_node": "эту точку",
|
||||
"this_way": "эту линию",
|
||||
"this_relation": "это отношение",
|
||||
"this_oneway": "это односторонее движение",
|
||||
"this_highway": "эту дорогу",
|
||||
"this_railway": "эту железную дорогу",
|
||||
"this_waterway": "этот водный путь",
|
||||
"this_cycleway": "эту велодорожку",
|
||||
"this_cycleway_footpath": "эту велопешеходную дорожку",
|
||||
"this_riverbank": "этот берег реки",
|
||||
"this_crossing": "этот пешеходный переход",
|
||||
"this_railway_crossing": "этот железнодородный переезд",
|
||||
"this_bridge": "этот мост",
|
||||
"this_tunnel": "этот туннель",
|
||||
"this_boundary": "эту границу",
|
||||
"this_turn_restriction": "этот запрет манёвра",
|
||||
"this_roundabout": "эту кольцевую развязку",
|
||||
"this_mini_roundabout": "этот миникруг",
|
||||
"this_track": "эту грунтовую дорогу",
|
||||
"this_feature": "этот объект",
|
||||
"highway": "дорога",
|
||||
"railway": "железная дорога",
|
||||
"waterway": "водный путь",
|
||||
"cycleway": "велосипедная дорожка",
|
||||
"cycleway_footpath": "велопешеходная дорожка",
|
||||
"riverbank": "берег реки",
|
||||
"place_of_worship": "храм",
|
||||
"pub": "паб",
|
||||
"restaurant": "ресторан",
|
||||
"pharmacy": "аптека"
|
||||
"school": "школа",
|
||||
"university": "университет",
|
||||
"hospital": "больница",
|
||||
"library": "библиотека",
|
||||
"theatre": "театр",
|
||||
"courthouse": "суд",
|
||||
"bank": "банк",
|
||||
"cinema": "кинотеатр",
|
||||
"pharmacy": "аптека",
|
||||
"cafe": "кафе",
|
||||
"fast_food": "фаст-фуд",
|
||||
"fuel": "топливо",
|
||||
"left_hand": "левосторонний",
|
||||
"right_hand": "правосторонний"
|
||||
},
|
||||
"errorTypes": {
|
||||
"30": {
|
||||
"title": "Незаконченный полигон"
|
||||
},
|
||||
"40": {
|
||||
"title": "Некорректное указание односторонней дороги"
|
||||
"title": "Некорректное указание односторонней дороги",
|
||||
"description": "Первая точка {var1} из {var2} не соединена ни с одной линией."
|
||||
},
|
||||
"41": {
|
||||
"description": "Последняя точка {var1} из {var2} не соединена ни с одной линией. "
|
||||
},
|
||||
"42": {
|
||||
"description": "{var1} не досигаема, так как все линии ведущие сюда однонаправленные."
|
||||
},
|
||||
"43": {
|
||||
"description": "{var1} не может быть покинута, так как все линии ведущие сюда однонаправленные. "
|
||||
},
|
||||
"50": {
|
||||
"title": "Почти пересечение"
|
||||
},
|
||||
"60": {
|
||||
"title": "Устаревший тег",
|
||||
|
@ -1837,6 +1922,12 @@
|
|||
"access_simple": {
|
||||
"label": "Доступ для всех"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Тип",
|
||||
"options": {
|
||||
"all": "Все"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Адресная информация",
|
||||
"placeholders": {
|
||||
|
@ -2027,6 +2118,9 @@
|
|||
"building": {
|
||||
"label": "Тип здания / конструкция"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Число этажей",
|
||||
"placeholder": "2, 4, 6…"
|
||||
|
@ -2232,6 +2326,10 @@
|
|||
"label": "Устройства",
|
||||
"placeholder": "1, 2, 3…"
|
||||
},
|
||||
"diameter": {
|
||||
"label": "Диаметр",
|
||||
"placeholder": "5 мм, 10 см, 15 дюймов..."
|
||||
},
|
||||
"diaper": {
|
||||
"label": "Доступно пеленание"
|
||||
},
|
||||
|
@ -2538,12 +2636,6 @@
|
|||
"undefined": "Нет"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Перепад высоты вдоль пути"
|
||||
},
|
||||
|
@ -3133,6 +3225,9 @@
|
|||
"sanitary_dump_station": {
|
||||
"label": "Ассенизационная сливная станция"
|
||||
},
|
||||
"screen": {
|
||||
"placeholder": "1, 4, 8..."
|
||||
},
|
||||
"seamark/beacon_isolated_danger/shape": {
|
||||
"label": "Форма"
|
||||
},
|
||||
|
@ -3213,6 +3308,9 @@
|
|||
"seasonal": {
|
||||
"label": "Сезонный объект"
|
||||
},
|
||||
"seats": {
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"second_hand": {
|
||||
"label": "Продажа подержанного товара",
|
||||
"options": {
|
||||
|
@ -3746,6 +3844,9 @@
|
|||
"name": "Бар",
|
||||
"terms": "Бар, рюмочная"
|
||||
},
|
||||
"amenity/bar/lgbtq": {
|
||||
"name": "ЛГБТ+ Бар"
|
||||
},
|
||||
"amenity/bbq": {
|
||||
"name": "Барбекю/Гриль",
|
||||
"terms": "барбекю, гриль, мангал, шашлык, еда, огонь, блюда, кухня"
|
||||
|
@ -3882,6 +3983,9 @@
|
|||
"name": "Фаст-фуд",
|
||||
"terms": "фастфуд, фаст-фуд, быстрое питание, ресторан быстрого питания, столовая, бистро, кафетерий"
|
||||
},
|
||||
"amenity/fast_food/chicken": {
|
||||
"name": "Куриный Фаст-Фуд"
|
||||
},
|
||||
"amenity/ferry_terminal": {
|
||||
"name": "Пристань/терминал для парома"
|
||||
},
|
||||
|
@ -6171,6 +6275,9 @@
|
|||
"name": "Энергетические агрегаты",
|
||||
"terms": "энергетический агрегат, устройство преобразования, турбина, котёл, котел, ветряк, солнечная панель, гидротурбина, ветрогенератор"
|
||||
},
|
||||
"power/generator/method/photovoltaic": {
|
||||
"name": "Солнечная Панель"
|
||||
},
|
||||
"power/line": {
|
||||
"name": "Высоковольтная ЛЭП",
|
||||
"terms": "линия электропередачи, ЛЭП"
|
||||
|
@ -7299,6 +7406,16 @@
|
|||
"description": "Спутниковые и аэрофотоснимки.",
|
||||
"name": "Спутниковые снимки Mapbox"
|
||||
},
|
||||
"Maxar-Premium": {
|
||||
"attribution": {
|
||||
"text": "Условия и обратная связь"
|
||||
}
|
||||
},
|
||||
"Maxar-Standard": {
|
||||
"attribution": {
|
||||
"text": "Условия и обратная связь"
|
||||
}
|
||||
},
|
||||
"OSM_Inspector-Addresses": {
|
||||
"attribution": {
|
||||
"text": "© Geofabrik GmbH, участники OpenStreetMap, CC-BY-SA"
|
||||
|
@ -7349,6 +7466,9 @@
|
|||
"description": "Жёлтым = общедоступные картографические данные от US Census. Красным = данные, отсутствующие в OpenStreetMap",
|
||||
"name": "Дороги TIGER 2017"
|
||||
},
|
||||
"US-TIGER-Roads-2018": {
|
||||
"description": "Жёлтым = общедоступные картографические данные от US Census. Красным = данные, отсутствующие в OpenStreetMap"
|
||||
},
|
||||
"US_Forest_Service_roads_overlay": {
|
||||
"description": "Дороги: зелёный контур = без классификации; коричневый = просёлочные. Покрытие: гравий = светло-коричневый цвет; асфальт = чёрный; другое покрытие = серый; земля = белый; бетон = синий; трава = зелёный. Сезонные дороги = белые штрихи",
|
||||
"name": "Лесные дороги США"
|
||||
|
@ -7397,6 +7517,16 @@
|
|||
"description": "Слой Orthofoto предоставлен basemap.at. «Преемник» geoimage.at.",
|
||||
"name": "basemap.at Orthofoto"
|
||||
},
|
||||
"basemap.at-surface": {
|
||||
"attribution": {
|
||||
"text": "basemap.at"
|
||||
}
|
||||
},
|
||||
"basemap.at-terrain": {
|
||||
"attribution": {
|
||||
"text": "basemap.at"
|
||||
}
|
||||
},
|
||||
"mapbox_locator_overlay": {
|
||||
"attribution": {
|
||||
"text": "Условия и обратная связь"
|
||||
|
|
6
vendor/assets/iD/iD/locales/sk.json
vendored
6
vendor/assets/iD/iD/locales/sk.json
vendored
|
@ -1493,12 +1493,6 @@
|
|||
"undefined": "Nie"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Sklon"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/sl.json
vendored
6
vendor/assets/iD/iD/locales/sl.json
vendored
|
@ -1589,12 +1589,6 @@
|
|||
"label": "Obroči",
|
||||
"placeholder": "1, 2, 4..."
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Naklon"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/sr.json
vendored
6
vendor/assets/iD/iD/locales/sr.json
vendored
|
@ -1310,12 +1310,6 @@
|
|||
"label": "Обручи",
|
||||
"placeholder": "1, 2, 4..."
|
||||
},
|
||||
"iata": {
|
||||
"label": "ИАТА"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ИЦАО"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Успон"
|
||||
},
|
||||
|
|
42
vendor/assets/iD/iD/locales/sv.json
vendored
42
vendor/assets/iD/iD/locales/sv.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Använd olika lager"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Använd olika lager eller våningar"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Använd olika våningar"
|
||||
},
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
"access_simple": {
|
||||
"label": "Tillåten åtkomst"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Typ",
|
||||
"options": {
|
||||
"all": "Alla",
|
||||
"alphabetic": "Alfabetisk",
|
||||
"even": "Jämna",
|
||||
"odd": "Udda"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Adress",
|
||||
"placeholders": {
|
||||
|
@ -2650,6 +2662,10 @@
|
|||
"building": {
|
||||
"label": "Byggnad"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Underjordiska våningar",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Byggnadsvåning",
|
||||
"placeholder": "2, 4, 6..."
|
||||
|
@ -3167,12 +3183,6 @@
|
|||
"undefined": "Nej"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Lutning"
|
||||
},
|
||||
|
@ -3499,6 +3509,9 @@
|
|||
"operator": {
|
||||
"label": "Operatör"
|
||||
},
|
||||
"operator/type": {
|
||||
"label": "Typ av operatör"
|
||||
},
|
||||
"outdoor_seating": {
|
||||
"label": "Utomhusplatser"
|
||||
},
|
||||
|
@ -3658,6 +3671,9 @@
|
|||
"playground/min_age": {
|
||||
"label": "Lägsta ålder"
|
||||
},
|
||||
"polling_station": {
|
||||
"label": "Vallokal"
|
||||
},
|
||||
"population": {
|
||||
"label": "Folkmängd"
|
||||
},
|
||||
|
@ -3667,6 +3683,9 @@
|
|||
"power_supply": {
|
||||
"label": "Strömförsörjning"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "Förskola"
|
||||
},
|
||||
"produce": {
|
||||
"label": "Naturprodukt"
|
||||
},
|
||||
|
@ -4331,6 +4350,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "Adressinterpolering"
|
||||
},
|
||||
"address": {
|
||||
"name": "Adress",
|
||||
"terms": "Adress, husnummer, destination, gatuadress, postnummer, postort, postadress"
|
||||
|
@ -4814,6 +4836,10 @@
|
|||
"name": "Polis",
|
||||
"terms": "Polis, ordningsmakt, polisväsende, polismyndighet, polismakt, polisstation, snut, konstapel, poliskonstapel, polisman, pass, kriminalare, lag"
|
||||
},
|
||||
"amenity/polling_station": {
|
||||
"name": "Permanent vallokal",
|
||||
"terms": "vallokal, valurna, valsedel, val, rösta, röstning, folkomröstning, omröstning, röstmaskin, valmaskin, omröstningsapparat, valbås"
|
||||
},
|
||||
"amenity/post_box": {
|
||||
"name": "Postlåda",
|
||||
"terms": "Brevlåda, postlåda, brevinkast, brev, post"
|
||||
|
@ -7342,6 +7368,10 @@
|
|||
"name": "Punkt",
|
||||
"terms": "Punkt, fläck, läge, ställe, plats"
|
||||
},
|
||||
"polling_station": {
|
||||
"name": "Tillfällig vallokal",
|
||||
"terms": "vallokal, valurna, valsedel, val, rösta, röstning, folkomröstning, omröstning, röstmaskin, valmaskin, omröstningsapparat, valbås"
|
||||
},
|
||||
"power": {
|
||||
"name": "Elförsörjning"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/ta.json
vendored
6
vendor/assets/iD/iD/locales/ta.json
vendored
|
@ -971,12 +971,6 @@
|
|||
"undefined": "இல்லை"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "சாய்வு தளம்"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/tl.json
vendored
6
vendor/assets/iD/iD/locales/tl.json
vendored
|
@ -955,12 +955,6 @@
|
|||
"hoops": {
|
||||
"placeholder": "1, 2, 4..."
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline_steps": {
|
||||
"options": {
|
||||
"down": "Baba",
|
||||
|
|
6
vendor/assets/iD/iD/locales/tr.json
vendored
6
vendor/assets/iD/iD/locales/tr.json
vendored
|
@ -1690,12 +1690,6 @@
|
|||
"undefined": "Hayır"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Meyil"
|
||||
},
|
||||
|
|
73
vendor/assets/iD/iD/locales/uk.json
vendored
73
vendor/assets/iD/iD/locales/uk.json
vendored
|
@ -699,7 +699,7 @@
|
|||
"imagery_source_faq": "Про фонове зображення/Повідомити про проблему",
|
||||
"reset": "скинути",
|
||||
"reset_all": "Скинути все",
|
||||
"display_options": "Параметри відображення",
|
||||
"display_options": "Параметри зображення",
|
||||
"brightness": "Яскравість",
|
||||
"contrast": "Контрастність",
|
||||
"saturation": "Насиченість",
|
||||
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "Використовуйте різні шари"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "Використовуйте відмінні параметри для layer або level"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "Використовуйте різні рівні"
|
||||
},
|
||||
|
@ -2253,7 +2256,7 @@
|
|||
"keyboard": "Покзати комбінації клавіш"
|
||||
},
|
||||
"display_options": {
|
||||
"title": "Параметри відображення",
|
||||
"title": "Параметри екрану",
|
||||
"background": "Налаштування тла",
|
||||
"background_switch": "Перейти до останнього фонового зображення",
|
||||
"map_data": "Налаштування даних мапи",
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
"access_simple": {
|
||||
"label": "Доступ"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "Тип",
|
||||
"options": {
|
||||
"all": "Всі",
|
||||
"alphabetic": "Алфавітний",
|
||||
"even": "Парні",
|
||||
"odd": "Непарні"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Адреса",
|
||||
"placeholders": {
|
||||
|
@ -2650,6 +2662,10 @@
|
|||
"building": {
|
||||
"label": "Будівля"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "Підземні поверхи",
|
||||
"placeholder": "2, 4, 6…"
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "Кількість поверхів",
|
||||
"placeholder": "2, 4, 6…"
|
||||
|
@ -3167,12 +3183,6 @@
|
|||
"undefined": "Ні"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Нахил"
|
||||
},
|
||||
|
@ -3662,7 +3672,7 @@
|
|||
"label": "Мінімальний вік"
|
||||
},
|
||||
"polling_station": {
|
||||
"label": "Виборча дільниця"
|
||||
"label": "Місце для голосування"
|
||||
},
|
||||
"population": {
|
||||
"label": "Населення"
|
||||
|
@ -3673,6 +3683,9 @@
|
|||
"power_supply": {
|
||||
"label": "Розетка"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "Дошкільний заклад"
|
||||
},
|
||||
"produce": {
|
||||
"label": "Вирощується"
|
||||
},
|
||||
|
@ -4337,6 +4350,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "Інтерполяція адрес"
|
||||
},
|
||||
"address": {
|
||||
"name": "Адреса",
|
||||
"terms": "address,адреса,місце,квартира,будинок,корпус,flhtcf,vscwt,rdfhnbhf,elbyjr,rjhgec"
|
||||
|
@ -4639,6 +4655,10 @@
|
|||
"name": "Додзьо / Школа бойових мистецтв",
|
||||
"terms": "додзьо, бій, навчання, бойові мистецтва"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "Роздягальня",
|
||||
"terms": "перевдягальня,примірочна"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "Питна вода",
|
||||
"terms": "Drinking Water, gbnyf djlf, бювет, питна вода, вода"
|
||||
|
@ -4879,6 +4899,10 @@
|
|||
"name": "Міліція/Поліція",
|
||||
"terms": "Police, vskswsz, gjkswsz, міліція, поліція, охорона порядку"
|
||||
},
|
||||
"amenity/polling_station": {
|
||||
"name": "Виборча дільниця",
|
||||
"terms": "вибори,голос,дільниця,виборці,бюлетень,кабінка,машина,голосування,кандидат"
|
||||
},
|
||||
"amenity/post_box": {
|
||||
"name": "Поштова скриня",
|
||||
"terms": "Mailbox, gjinjdf crhbyz, поштова скринька, пошта, лист"
|
||||
|
@ -5940,6 +5964,9 @@
|
|||
"name": "Брід",
|
||||
"terms": "брід, переправа"
|
||||
},
|
||||
"ford_line": {
|
||||
"name": "Брід"
|
||||
},
|
||||
"golf/bunker": {
|
||||
"name": "Піщана пастка",
|
||||
"terms": "піщана пастка, гольф"
|
||||
|
@ -6008,6 +6035,10 @@
|
|||
"name": "Банк крові",
|
||||
"terms": "донор,кров,банк,плазма,переливання,плазмаферез"
|
||||
},
|
||||
"healthcare/counselling": {
|
||||
"name": "Консультаційний центр",
|
||||
"terms": "здоров'я,хвороба,лікар,консультація,діагноз,пацієнт"
|
||||
},
|
||||
"healthcare/hospice": {
|
||||
"name": "Хоспіс",
|
||||
"terms": "хвороба,хоспіс,невіліковна,допомога"
|
||||
|
@ -6893,7 +6924,8 @@
|
|||
"terms": "зал,спортивний центр,спорт"
|
||||
},
|
||||
"leisure/sports_centre/climbing": {
|
||||
"name": "Скеледром"
|
||||
"name": "Скеледром",
|
||||
"terms": "скелі,спорт,розваги,стіна,каміння"
|
||||
},
|
||||
"leisure/sports_centre/swimming": {
|
||||
"name": "Плавальний басейн",
|
||||
|
@ -6966,6 +6998,10 @@
|
|||
"name": "Силосна яма",
|
||||
"terms": "силос,яма,бункер,корм,сховище"
|
||||
},
|
||||
"man_made/cairn": {
|
||||
"name": "Тур",
|
||||
"terms": "гурій,каїрн,пірамідка,каміння,гірка"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "Димохід",
|
||||
"terms": "труба,дим,димохід,викиди"
|
||||
|
@ -7095,7 +7131,8 @@
|
|||
"terms": "Survey Point, utjltpbxybq geyrn, місце спостереження"
|
||||
},
|
||||
"man_made/torii": {
|
||||
"name": "Торії"
|
||||
"name": "Торії",
|
||||
"terms": "ворота,храм,сінто"
|
||||
},
|
||||
"man_made/tower": {
|
||||
"name": "Вежа",
|
||||
|
@ -7166,7 +7203,8 @@
|
|||
"terms": "люк,колодязь,кабель,зв'язок,телефон,інтернет,діра,дріт"
|
||||
},
|
||||
"military/nuclear_explosion_site": {
|
||||
"name": "Місце ядерного вибуху"
|
||||
"name": "Місце ядерного вибуху",
|
||||
"terms": "атом,бомба,вибух,випробування,радиація,полігон"
|
||||
},
|
||||
"natural": {
|
||||
"name": "Природа"
|
||||
|
@ -7307,6 +7345,10 @@
|
|||
"name": "Струмок",
|
||||
"terms": "вода,потік,берег"
|
||||
},
|
||||
"natural/water/wastewater": {
|
||||
"name": "Накопичувач стоків",
|
||||
"terms": "стоки,відстійник,відходи"
|
||||
},
|
||||
"natural/wetland": {
|
||||
"name": "Заболочені землі",
|
||||
"terms": "Wetland, pfjkjxtys ptvks, болото, торф, плавні, мангрові зарості"
|
||||
|
@ -7624,6 +7666,10 @@
|
|||
"name": "Точка",
|
||||
"terms": "Point, njxrf, точка"
|
||||
},
|
||||
"polling_station": {
|
||||
"name": "Тимчасова виборча дільниця",
|
||||
"terms": "вибори,голос,дільниця,виборці,бюлетень,кабінка,машина,голосування,кандидат"
|
||||
},
|
||||
"power": {
|
||||
"name": "Енергетика"
|
||||
},
|
||||
|
@ -8839,7 +8885,8 @@
|
|||
"terms": "легкорейковий,транспорт,електричка,міська,колії,трамвай"
|
||||
},
|
||||
"type/route/monorail": {
|
||||
"name": "Монорейковий маршрут"
|
||||
"name": "Маршрут монорейки",
|
||||
"terms": "монорейка,траснспорт,потяг,пасажир,станція,вокзал,колія,маршрут"
|
||||
},
|
||||
"type/route/pipeline": {
|
||||
"name": "Трубопровід",
|
||||
|
|
6
vendor/assets/iD/iD/locales/vi.json
vendored
6
vendor/assets/iD/iD/locales/vi.json
vendored
|
@ -2481,12 +2481,6 @@
|
|||
"undefined": "Không"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Độ dốc"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/yue.json
vendored
6
vendor/assets/iD/iD/locales/yue.json
vendored
|
@ -1012,12 +1012,6 @@
|
|||
"label": "藍框數",
|
||||
"placeholder": "1, 2, 4..."
|
||||
},
|
||||
"iata": {
|
||||
"label": "萬國航空運輸協會(IATA)"
|
||||
},
|
||||
"icao": {
|
||||
"label": "萬國民航組織(ICAO)"
|
||||
},
|
||||
"incline": {
|
||||
"label": "斜"
|
||||
},
|
||||
|
|
9
vendor/assets/iD/iD/locales/zh-CN.json
vendored
9
vendor/assets/iD/iD/locales/zh-CN.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "使用不同图层"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "使用不同图层或楼层"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "使用不同楼层数"
|
||||
},
|
||||
|
@ -3157,12 +3160,6 @@
|
|||
"undefined": "否"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA (国际航空运输协会)"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO(国际民航组织)"
|
||||
},
|
||||
"incline": {
|
||||
"label": "斜度"
|
||||
},
|
||||
|
|
6
vendor/assets/iD/iD/locales/zh-HK.json
vendored
6
vendor/assets/iD/iD/locales/zh-HK.json
vendored
|
@ -1780,12 +1780,6 @@
|
|||
"undefined": "否"
|
||||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "萬國航空運輸協會(IATA)"
|
||||
},
|
||||
"icao": {
|
||||
"label": "萬國民航組織(ICAO)"
|
||||
},
|
||||
"incline": {
|
||||
"label": "斜"
|
||||
},
|
||||
|
|
53
vendor/assets/iD/iD/locales/zh-TW.json
vendored
53
vendor/assets/iD/iD/locales/zh-TW.json
vendored
|
@ -1952,6 +1952,9 @@
|
|||
"use_different_layers": {
|
||||
"title": "使用不同階層"
|
||||
},
|
||||
"use_different_layers_or_levels": {
|
||||
"title": "使用不同階層或樓層"
|
||||
},
|
||||
"use_different_levels": {
|
||||
"title": "使用不同樓層"
|
||||
},
|
||||
|
@ -2460,6 +2463,15 @@
|
|||
"access_simple": {
|
||||
"label": "允許通行"
|
||||
},
|
||||
"addr/interpolation": {
|
||||
"label": "類型",
|
||||
"options": {
|
||||
"all": "全部",
|
||||
"alphabetic": "字母",
|
||||
"even": "偶數",
|
||||
"odd": "奇數"
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "地址",
|
||||
"placeholders": {
|
||||
|
@ -2650,6 +2662,10 @@
|
|||
"building": {
|
||||
"label": "建築物"
|
||||
},
|
||||
"building/levels/underground": {
|
||||
"label": "地下樓層數",
|
||||
"placeholder": "2, 4, 6..."
|
||||
},
|
||||
"building/levels_building": {
|
||||
"label": "建築物樓層",
|
||||
"placeholder": "2, 4, 6..."
|
||||
|
@ -3168,10 +3184,10 @@
|
|||
}
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
"label": "IATA 機場代碼"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
"label": "ICAO 機場代碼"
|
||||
},
|
||||
"incline": {
|
||||
"label": "斜度"
|
||||
|
@ -3673,12 +3689,18 @@
|
|||
"power_supply": {
|
||||
"label": "電源供應器"
|
||||
},
|
||||
"preschool": {
|
||||
"label": "育幼院"
|
||||
},
|
||||
"produce": {
|
||||
"label": "生產產品"
|
||||
},
|
||||
"product": {
|
||||
"label": "產品"
|
||||
},
|
||||
"public_bookcase/type": {
|
||||
"label": "類型"
|
||||
},
|
||||
"railway": {
|
||||
"label": "種類"
|
||||
},
|
||||
|
@ -4337,6 +4359,9 @@
|
|||
}
|
||||
},
|
||||
"presets": {
|
||||
"addr/interpolation": {
|
||||
"name": "地址插補"
|
||||
},
|
||||
"address": {
|
||||
"name": "地址",
|
||||
"terms": "地址,位置,位址"
|
||||
|
@ -4637,6 +4662,10 @@
|
|||
"name": "道場/武術研習班",
|
||||
"terms": "道場/武術學院,道場/武藝研習班"
|
||||
},
|
||||
"amenity/dressing_room": {
|
||||
"name": "更衣室",
|
||||
"terms": "更衣室"
|
||||
},
|
||||
"amenity/drinking_water": {
|
||||
"name": "飲水機",
|
||||
"terms": "飲水,水源,活水,飲處,取水處"
|
||||
|
@ -4793,6 +4822,10 @@
|
|||
"name": "立體停車場",
|
||||
"terms": "多層停車場,停車塔"
|
||||
},
|
||||
"amenity/parking/park_ride": {
|
||||
"name": "轉乘停車場",
|
||||
"terms": "泊車轉乘"
|
||||
},
|
||||
"amenity/parking/underground": {
|
||||
"name": "地下停車場"
|
||||
},
|
||||
|
@ -6984,6 +7017,10 @@
|
|||
"name": "地面筒倉",
|
||||
"terms": "地面筒倉;筒倉"
|
||||
},
|
||||
"man_made/cairn": {
|
||||
"name": "石標",
|
||||
"terms": "石標"
|
||||
},
|
||||
"man_made/chimney": {
|
||||
"name": "煙囪",
|
||||
"terms": "煙筒"
|
||||
|
@ -8387,6 +8424,10 @@
|
|||
"name": "音響店",
|
||||
"terms": "音響店"
|
||||
},
|
||||
"shop/hobby": {
|
||||
"name": "嗜好商店",
|
||||
"terms": "嗜好商店"
|
||||
},
|
||||
"shop/houseware": {
|
||||
"name": "家庭用品店",
|
||||
"terms": "家居用品店"
|
||||
|
@ -8579,6 +8620,10 @@
|
|||
"name": "超級市場",
|
||||
"terms": "超市"
|
||||
},
|
||||
"shop/swimming_pool": {
|
||||
"name": "泳池用品商店",
|
||||
"terms": "泳池用品商店"
|
||||
},
|
||||
"shop/tailor": {
|
||||
"name": "裁縫",
|
||||
"terms": "裁縫師,成衣訂作,成衣匠"
|
||||
|
@ -8721,6 +8766,10 @@
|
|||
"name": "觀光景點",
|
||||
"terms": "觀光點"
|
||||
},
|
||||
"tourism/camp_pitch": {
|
||||
"name": "營地",
|
||||
"terms": "營地"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "露營地",
|
||||
"terms": "營地"
|
||||
|
|
6
vendor/assets/iD/iD/locales/zh.json
vendored
6
vendor/assets/iD/iD/locales/zh.json
vendored
|
@ -360,12 +360,6 @@
|
|||
"historic": {
|
||||
"label": "类型"
|
||||
},
|
||||
"iata": {
|
||||
"label": "国际航空运输协会IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "国际民航组织ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "斜度"
|
||||
},
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue