From eb76b7713dc1f40673b80092a9f87b442e8f03ea Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stephan=20B=C3=B6sch-Plepelits?= Date: Mon, 31 Jul 2017 22:22:07 +0200 Subject: [PATCH] Move category names to category file --- administrative.json | 16 +++++ agriculture.json | 17 ++++++ alternative_amenities.json | 14 +++++ alternative_routes.json | 14 +++++ car_amenities.json | 14 +++++ car_furniture.json | 15 +++++ children.json | 4 ++ communication.json | 17 ++++++ construction.json | 13 ++++ culture.json | 21 +++++++ cycle_routes.json | 4 ++ education.json | 16 +++++ emergency.json | 19 ++++++ financial.json | 17 ++++++ gastro.json | 16 +++++ health.json | 17 ++++++ historic.json | 19 ++++++ index.json | 121 +++++++++++++++++++++++++++++++++++-- internet.json | 14 +++++ landfill.json | 13 ++++ lang/ast.json | 46 -------------- lang/ca.json | 8 --- lang/cs.json | 46 -------------- lang/de.json | 48 --------------- lang/el.json | 29 --------- lang/en.json | 49 --------------- lang/es.json | 8 --- lang/et.json | 26 -------- lang/fr.json | 43 ------------- lang/hu.json | 29 --------- lang/it.json | 42 ------------- lang/ja.json | 43 ------------- lang/nl.json | 45 -------------- lang/pl.json | 20 ------ lang/ro.json | 32 ---------- lang/ru.json | 42 ------------- lang/template.json | 49 --------------- lang/tr.json | 3 - lang/uk.json | 34 ----------- leisure.json | 14 +++++ military.json | 16 +++++ natural.json | 16 +++++ other.json | 17 ++++++ phone.json | 13 ++++ places.json | 17 ++++++ playgrounds.json | 11 ++++ post.json | 11 ++++ power.json | 14 +++++ pt_amenities.json | 15 +++++ pt_stops.json | 18 ++++++ public.json | 15 +++++ railway.json | 15 +++++ religion.json | 18 ++++++ residential.json | 18 ++++++ resources.json | 12 ++++ shop.json | 17 ++++++ sport.json | 16 +++++ tourism.json | 19 ++++++ transport_alternative.json | 16 +++++ works.json | 11 ++++ 60 files changed, 714 insertions(+), 648 deletions(-) create mode 100644 administrative.json create mode 100644 agriculture.json create mode 100644 alternative_amenities.json create mode 100644 alternative_routes.json create mode 100644 car_amenities.json create mode 100644 car_furniture.json create mode 100644 construction.json create mode 100644 culture.json create mode 100644 emergency.json create mode 100644 financial.json create mode 100644 health.json create mode 100644 historic.json create mode 100644 internet.json create mode 100644 landfill.json delete mode 100644 lang/ast.json delete mode 100644 lang/ca.json delete mode 100644 lang/cs.json delete mode 100644 lang/de.json delete mode 100644 lang/el.json delete mode 100644 lang/en.json delete mode 100644 lang/es.json delete mode 100644 lang/et.json delete mode 100644 lang/fr.json delete mode 100644 lang/hu.json delete mode 100644 lang/it.json delete mode 100644 lang/ja.json delete mode 100644 lang/nl.json delete mode 100644 lang/pl.json delete mode 100644 lang/ro.json delete mode 100644 lang/ru.json delete mode 100755 lang/template.json delete mode 100644 lang/tr.json delete mode 100644 lang/uk.json create mode 100644 military.json create mode 100644 natural.json create mode 100644 other.json create mode 100644 phone.json create mode 100644 playgrounds.json create mode 100644 post.json create mode 100644 pt_amenities.json create mode 100644 pt_stops.json create mode 100644 railway.json create mode 100644 religion.json create mode 100644 residential.json create mode 100644 resources.json create mode 100644 sport.json create mode 100644 tourism.json create mode 100644 transport_alternative.json diff --git a/administrative.json b/administrative.json new file mode 100644 index 0000000..607e90f --- /dev/null +++ b/administrative.json @@ -0,0 +1,16 @@ +{ + "name": { + "ast": "Divisiones Alministratives", + "cs": "Administrativní oblasti", + "de": "Administrative Gebiete", + "el": "Διοικητικά Όρια", + "en": "Administrative Areas", + "et": "Administratiivalad", + "fr": "Zones administratives", + "hu": "Adminisztratív határok", + "it": "Suddivisioni amministrative", + "nl": "Administratieve gebieden", + "ro": "Zona administrativa", + "ru": "Административные границы" + } +} diff --git a/agriculture.json b/agriculture.json new file mode 100644 index 0000000..3a81c7e --- /dev/null +++ b/agriculture.json @@ -0,0 +1,17 @@ +{ + "name": { + "ast": "Agricultura", + "cs": "Zemědělství", + "de": "Landwirtschaft", + "el": "Γεωργία", + "en": "Agriculture", + "et": "Põllumajandus", + "fr": "Agriculture", + "hu": "Mezőgazdaság", + "it": "Agricoltura", + "ja": "農業", + "nl": "Landbouw", + "ro": "Agricultura", + "ru": "Сельское хозяйство" + } +} diff --git a/alternative_amenities.json b/alternative_amenities.json new file mode 100644 index 0000000..b7cbe83 --- /dev/null +++ b/alternative_amenities.json @@ -0,0 +1,14 @@ +{ + "name": { + "ast": "Infraestructures", + "cs": "Občanská vybavenost", + "de": "Einrichtungen", + "en": "Amenities", + "fr": "Équipement", + "it": "Infrastrutture", + "ja": "生活環境", + "nl": "Voorzieningen", + "ru": "Полезные места", + "uk": "Amenities" + } +} diff --git a/alternative_routes.json b/alternative_routes.json new file mode 100644 index 0000000..1e65963 --- /dev/null +++ b/alternative_routes.json @@ -0,0 +1,14 @@ +{ + "name": { + "ast": "Rutes", + "cs": "Trasy cest", + "de": "(ausgeschilderte) Routen", + "en": "Routes", + "fr": "Routes", + "it": "Itinerari segnalati", + "ja": "ルート", + "nl": "Alternatieve routes", + "ru": "Маршруты", + "uk": "Маршрути" + } +} diff --git a/car_amenities.json b/car_amenities.json new file mode 100644 index 0000000..2b7bbca --- /dev/null +++ b/car_amenities.json @@ -0,0 +1,14 @@ +{ + "name": { + "ast": "Infraestructures", + "cs": "Občasnká vybavenost", + "de": "Einrichtungen", + "en": "Amenities", + "fr": "Infrastructures routières", + "it": "Infrastrutture", + "ja": "生活環境", + "nl": "Voorzieningen", + "ru": "Обслуживание транспорта", + "uk": "Amenities" + } +} diff --git a/car_furniture.json b/car_furniture.json new file mode 100644 index 0000000..c74d6b9 --- /dev/null +++ b/car_furniture.json @@ -0,0 +1,15 @@ +{ + "name": { + "ast": "Acondicionamientu urbanu", + "cs": "Pouliční přislušenství", + "de": "Straßenausstattung", + "en": "Street Furniture", + "fr": "Infrastrucutures résidentielles", + "it": "Dotazioni stradali", + "ja": "街路設置公共物", + "nl": "Straatmeubilair", + "pl": "Elementy drogowe", + "ru": "Элементы дороги", + "uk": "Street Furniture" + } +} diff --git a/children.json b/children.json index 5ba1b21..4bdeada 100644 --- a/children.json +++ b/children.json @@ -1,4 +1,8 @@ { + "name": { + "de": "Einrichtungen für Kinder", + "en": "Children amenities" + }, "type": "overpass", "query": "(node[leisure~'^(playground|summer_camp|indoor_play)$'];way[leisure~'^(playground|summer_camp|indoor_play)$'];relation[leisure~'^(playground|summer_camp|indoor_play)$'];node[shop~'^(baby_goods|toys)$'];way[shop~'^(baby_goods|toys)$'];relation[shop~'^(baby_goods|toys)$'];node[amenity=toilets][diaper];way[amenity=toilets][diaper];relation[amenity=toilets][diaper];node[kids_area];way[kids_area];relation[kids_area];);", "minZoom": 15, diff --git a/communication.json b/communication.json index de06866..f5b0718 100644 --- a/communication.json +++ b/communication.json @@ -1,4 +1,21 @@ { + "name": { + "ast": "Comunicaciones", + "ca": "Comunicacions", + "cs": "Komunikace", + "de": "Kommunikation", + "el": "Επικοινωνίες", + "en": "Communication", + "et": "Kommunikatsioon", + "fr": "Communication", + "hu": "Kommunikácó", + "it": "Communicazioni", + "ja": "交流", + "nl": "Communicatie", + "ro": "Comunicatii", + "ru": "Услуги связи", + "uk": "Телекомунікації" + }, "type": "overpass", "query": { "13": "(node[amenity~'^(post_office|internet_cafe)$'];way[amenity~'^(post_office|internet_cafe)$'];relation[amenity~'^(post_office|internet_cafe)$'];);", diff --git a/construction.json b/construction.json new file mode 100644 index 0000000..f120f91 --- /dev/null +++ b/construction.json @@ -0,0 +1,13 @@ +{ + "name": { + "ast": "Sitios d'obres", + "cs": "Staveniště", + "de": "Baustellen", + "en": "Construction Sites", + "fr": "Sites en construction", + "it": "Cantieri", + "ja": "工事中", + "nl": "Bouwterrein", + "ru": "Места строительства" + } +} diff --git a/culture.json b/culture.json new file mode 100644 index 0000000..848064a --- /dev/null +++ b/culture.json @@ -0,0 +1,21 @@ +{ + "name": { + "ast": "Cultura", + "ca": "Cultura i religió", + "cs": "Kultura", + "de": "Kultur", + "el": "Πολιτισμός", + "en": "Culture", + "es": "Cultura y religión", + "et": "Kultuur ja religioon", + "fr": "Culture", + "hu": "Kultúra", + "it": "Cultura", + "ja": "文化", + "nl": "Cultuur", + "pl": "Kultura", + "ro": "Cultura", + "ru": "Культура", + "uk": "Культура " + } +} diff --git a/cycle_routes.json b/cycle_routes.json index a6c55dc..ad0be82 100644 --- a/cycle_routes.json +++ b/cycle_routes.json @@ -1,4 +1,8 @@ { + "name": { + "de": "Radrouten", + "en": "Cycle Routes" + }, "type": "overpass", "query": { "6": "relation[type=route][route=bicycle][network~'^(icn)$']", diff --git a/education.json b/education.json index 6f7dc84..7278bbc 100644 --- a/education.json +++ b/education.json @@ -1,4 +1,20 @@ { + "name": { + "ast": "Servicios educativos", + "cs": "Vzdělávací služby", + "de": "Bildungseinrichtungen", + "el": "Υπηρεσίες Εκπαίδευσης", + "en": "Educational Services", + "et": "Haridusteenused", + "fr": "Service d'Éducation", + "it": "Istruzione", + "ja": "教育サービス", + "nl": "Onderwijs", + "pl": "Edukacyjne", + "ro": "Servicii educatie", + "ru": "Образование", + "uk": "Освіта" + }, "type": "overpass", "query": { "11": "(node[amenity~'^(college|university|library)$'];way[amenity~'^(college|university|library)$'];relation[amenity~'^(college|university|library)$'];)", diff --git a/emergency.json b/emergency.json new file mode 100644 index 0000000..31e82be --- /dev/null +++ b/emergency.json @@ -0,0 +1,19 @@ +{ + "name": { + "ast": "Servicios d'emerxencia", + "ca": "Serveis d'emergència", + "cs": "Pohotovostní služby", + "de": "Notfalldienste", + "el": "Υπηρεσίες Έκτακτης Ανάγκης", + "en": "Emergency Services", + "es": "Servicios de emergencia", + "et": "Hädaabi teenused", + "fr": "Service d'urgence", + "it": "Servizi d'emergenza", + "ja": "緊急サービス", + "nl": "Hulpdiensten", + "ro": "Servicii urgenta", + "ru": "Экстренные службы", + "uk": "Швидка допомога" + } +} diff --git a/financial.json b/financial.json new file mode 100644 index 0000000..d5b213c --- /dev/null +++ b/financial.json @@ -0,0 +1,17 @@ +{ + "name": { + "ast": "Dineru", + "cs": "Finanční služby", + "de": "Finanzen", + "el": "Χρήμα", + "en": "Financial", + "fr": "Finance", + "it": "Finanze", + "ja": "金融", + "nl": "Financieel", + "pl": "Finasowe", + "ro": "Financiar", + "ru": "Финансы", + "uk": "Фінанси" + } +} diff --git a/gastro.json b/gastro.json index a9629db..708b1d6 100644 --- a/gastro.json +++ b/gastro.json @@ -1,4 +1,20 @@ { + "name": { + "ast": "Gastronomía", + "cs": "Stravování", + "de": "Gastronomie", + "el": "Γαστρονομία", + "en": "Gastronomy", + "fr": "Gastronomie", + "hu": "Gasztronómia", + "it": "Gastronomia", + "ja": "食べ物", + "nl": "Gastronomie", + "pl": "Gastronomia", + "ro": "Gastronomie", + "ru": "Общепит", + "uk": "Гастрономія" + }, "type": "overpass", "query": "(node[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];way[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];relation[amenity~'^(bar|biergarten|cafe|fast_food|ice_cream|pub|restaurant)$'];);", "minZoom": 16, diff --git a/health.json b/health.json new file mode 100644 index 0000000..2ed60e3 --- /dev/null +++ b/health.json @@ -0,0 +1,17 @@ +{ + "name": { + "ast": "Salú", + "cs": "Zdravotnictví", + "de": "Gesundheitsdienste", + "el": "Υγεία", + "en": "Health", + "fr": "Santé", + "it": "Sanità", + "ja": "健康", + "nl": "Gezondheid", + "pl": "Zdrowie", + "ro": "Sanatate", + "ru": "Медицина", + "uk": "Здоров'я" + } +} diff --git a/historic.json b/historic.json new file mode 100644 index 0000000..f7c0ae2 --- /dev/null +++ b/historic.json @@ -0,0 +1,19 @@ +{ + "name": { + "ast": "Hestoria", + "cs": "Historické", + "de": "Geschichte", + "el": "Ιστορικά", + "en": "Historic", + "et": "Ajalooline", + "fr": "Histoire", + "hu": "Historikus", + "it": "Storia", + "ja": "記念", + "nl": "Historisch", + "pl": "Miejsca Historyczne", + "ro": "Istoric", + "ru": "Историческое", + "uk": "Історія" + } +} diff --git a/index.json b/index.json index 2cce7f4..10da8aa 100644 --- a/index.json +++ b/index.json @@ -2,6 +2,25 @@ "type": "index", "subCategories": [ { + "name": { + "ast": "Recréu, deportes y compres", + "ca": "Oci, esport i compres", + "cs": "Volný čas, sporty a nákupy", + "de": "Freizeit, Sport und Einkauf", + "el": "Αναψυχή, Αθλητισμός και Αγορές", + "en": "Leisure, Sport and Shopping", + "es": "Ocio, deporte y compras", + "et": "Vaba aeg, sport ja ostmine", + "fr": "Loisirs", + "hu": "Szabadidő", + "it": "Tempo libero, sport e shopping", + "ja": "レジャー", + "nl": "Vrije tijd, Sport en Winkelen", + "pl": "Wypoczynek, Sport i Zakupy", + "ro": "Timp liber, Sport si Cumparaturi", + "ru": "Досуг", + "uk": "Дозвілля" + }, "id": "leisure_sport_shopping", "type": "index", "subCategories": [ @@ -20,6 +39,25 @@ ] }, { + "name": { + "ast": "Servicios", + "ca": "Serveis", + "cs": "Služby", + "de": "Dienste", + "el": "Υπηρεσίες", + "en": "Services", + "es": "Servicios", + "et": "Teenused", + "fr": "Services", + "hu": "Szolgáltatás", + "it": "Servizi", + "ja": "サービス", + "nl": "Dienstverlening", + "pl": "Usługi", + "ro": "Servicii", + "ru": "Услуги", + "uk": "Послуги" + }, "id": "services", "type": "index", "subCategories": [ @@ -35,16 +73,41 @@ ] }, { + "name": { + "ast": "Tresporte", + "cs": "Doprava", + "de": "Transport", + "el": "Μεταφορές", + "en": "Transportation", + "et": "Transport", + "fr": "Transport", + "hu": "Közlekedés", + "it": "Trasporti", + "ja": "輸送", + "nl": "Vervoer", + "pl": "Transport", + "ro": "Transport", + "ru": "Транспорт", + "tr": "Toplu Taşıma", + "uk": "Транспорт" + }, "id": "transport", "type": "index", "subCategories": [ { + "name": { + "de": "Zu Fuß gehen", + "en": "Walking" + }, "id": "transport_walk", "type": "index", - "subCategories": [ - ] + "subCategories": [] }, { + "name": { + "de": "Radfahren", + "en": "Cycling" + }, "id": "transport_cycle", "type": "index", "subCategories": [ @@ -54,20 +117,66 @@ ] }, { + "name": { + "ast": "Tresporte Públicu", + "cs": "Veřejná doprava", + "de": "Öffentlicher Verkehr", + "el": "Δημόσιες Μεταφορές", + "en": "Public Transportation", + "et": "Ühistransport", + "fr": "Transport public", + "hu": "Tömegközlekedés", + "it": "Trasporti pubblici", + "ja": "公共輸送", + "nl": "Openbaar vervoer", + "pl": "Transport Publiczny", + "ro": "Transport public", + "ru": "Общественный транспорт", + "uk": "Громадський транспорт" + }, "id": "transport_pt", "type": "index", - "subCategories": [ - ] + "subCategories": [] }, { + "name": { + "ast": "Tráficu individual", + "cs": "Individuální doprava", + "de": "Motorisierter Individualverkehr", + "en": "Individual Traffic", + "fr": "Transport automobile", + "it": "Trasporti individuali", + "ja": "個人輸送機関", + "nl": "Gemotoriseerd individueel verkeer", + "pl": "Transport Indywidualny", + "ro": "Trafic individual", + "ru": "Частный транспорт", + "uk": "Приватний транспорт" + }, "id": "transport_car", "type": "index", - "subCategories": [ - ] + "subCategories": [] } ] }, { + "name": { + "ast": "Agricultura ya industria", + "cs": "Průmysl a zemědělství", + "de": "Landwirtschaft und Industrie", + "el": "Γεωργία και Βιομηχανία", + "en": "Agriculture and Industry", + "et": "Põllumajandus ja tööstus", + "fr": "Agriculture et industrie", + "hu": "Mezőgazdaság és ipar", + "it": "Agricoltura e industria", + "ja": "農業と工業", + "nl": "Landbouw en Industrie", + "pl": "Rolnictwo i Przemysł", + "ro": "Agricultura si industrie", + "ru": "Сельское хозяйство и промышленность", + "uk": "Сільське господартво та промисловість" + }, "id": "agriculture_industry", "type": "index", "subCategories": [ diff --git a/internet.json b/internet.json new file mode 100644 index 0000000..8fb70cc --- /dev/null +++ b/internet.json @@ -0,0 +1,14 @@ +{ + "name": { + "ast": "Accesu a Internet", + "ca": "Accés a Internet", + "cs": "Přístup k internetu", + "de": "Internetzugang", + "en": "Internet access", + "es": "Acceso a Internet", + "hu": "Internethozzáférés", + "ja": "インターネット接続", + "nl": "Internettoegang", + "ro": "Acces internet" + } +} diff --git a/landfill.json b/landfill.json new file mode 100644 index 0000000..a8f315c --- /dev/null +++ b/landfill.json @@ -0,0 +1,13 @@ +{ + "name": { + "ast": "Basures", + "cs": "Nakládání s odpady", + "de": "Entsorgung", + "en": "Disposal", + "fr": "Rebuts", + "it": "Smaltimento", + "ja": "処理場", + "nl": "Afvalverwijdering", + "ru": "Переработка отходов" + } +} diff --git a/lang/ast.json b/lang/ast.json deleted file mode 100644 index af069b6..0000000 --- a/lang/ast.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "category:administrative": "Divisiones Alministratives", - "category:agriculture": "Agricultura", - "category:agriculture_industry": "Agricultura ya industria", - "category:alternative_amenities": "Infraestructures", - "category:alternative_routes": "Rutes", - "category:car_amenities": "Infraestructures", - "category:car_furniture": "Acondicionamientu urbanu", - "category:communication": "Comunicaciones", - "category:construction": "Sitios d'obres", - "category:culture": "Cultura", - "category:education": "Servicios educativos", - "category:emergency": "Servicios d'emerxencia", - "category:financial": "Dineru", - "category:gastro": "Gastronomía", - "category:health": "Salú", - "category:historic": "Hestoria", - "category:internet": "Accesu a Internet", - "category:landfill": "Basures", - "category:leisure": "Recréu", - "category:leisure_sport_shopping": "Recréu, deportes y compres", - "category:military": "Militar", - "category:natural": "Formaciones naturales", - "category:other": "Otres", - "category:phone": "Teléfonos", - "category:places": "Llugares", - "category:playgrounds": "Xuegos infantiles", - "category:post": "Corréu", - "category:power": "Enerxía", - "category:pt_amenities": "Infraestructures", - "category:pt_stops": "Paraes y estaciones", - "category:public": "Serviciu Públicu", - "category:railway": "Ferrocarril", - "category:religion": "Relixón", - "category:residential": "Zones residenciales", - "category:resources": "Estraición de recursos", - "category:services": "Servicios", - "category:shop": "Compres", - "category:sport": "Deportes", - "category:tourism": "Turismu", - "category:transport": "Tresporte", - "category:transport_alternative": "Alternativu (Ciclismu, senderismu, ...)", - "category:transport_car": "Tráficu individual", - "category:transport_pt": "Tresporte Públicu", - "category:works": "Fábriques" -} diff --git a/lang/ca.json b/lang/ca.json deleted file mode 100644 index d3059d5..0000000 --- a/lang/ca.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "category:communication": "Comunicacions", - "category:culture": "Cultura i religió", - "category:emergency": "Serveis d'emergència", - "category:internet": "Accés a Internet", - "category:leisure_sport_shopping": "Oci, esport i compres", - "category:services": "Serveis" -} diff --git a/lang/cs.json b/lang/cs.json deleted file mode 100644 index 4f1f41a..0000000 --- a/lang/cs.json +++ /dev/null @@ -1,46 +0,0 @@ -{ - "category:administrative": "Administrativní oblasti", - "category:agriculture": "Zemědělství", - "category:agriculture_industry": "Průmysl a zemědělství", - "category:alternative_amenities": "Občanská vybavenost", - "category:alternative_routes": "Trasy cest", - "category:car_amenities": "Občasnká vybavenost", - "category:car_furniture": "Pouliční přislušenství", - "category:communication": "Komunikace", - "category:construction": "Staveniště", - "category:culture": "Kultura", - "category:education": "Vzdělávací služby", - "category:emergency": "Pohotovostní služby", - "category:financial": "Finanční služby", - "category:gastro": "Stravování", - "category:health": "Zdravotnictví", - "category:historic": "Historické", - "category:internet": "Přístup k internetu", - "category:landfill": "Nakládání s odpady", - "category:leisure": "Volný čas", - "category:leisure_sport_shopping": "Volný čas, sporty a nákupy", - "category:military": "Vojenské", - "category:natural": "Přírodní úkazy", - "category:other": "Jiné", - "category:phone": "Telefony", - "category:places": "Sídla", - "category:playgrounds": "Hřiště", - "category:post": "Poštovní služby", - "category:power": "Elektřina", - "category:pt_amenities": "Občanská vybavenost", - "category:pt_stops": "Zastávky & Stanice", - "category:public": "Veřejné služby", - "category:railway": "Železnice", - "category:religion": "Religion", - "category:residential": "Obytné oblasti", - "category:resources": "Těžba surovin", - "category:services": "Služby", - "category:shop": "Obchody", - "category:sport": "Sport", - "category:tourism": "Turistika", - "category:transport": "Doprava", - "category:transport_alternative": "Alternativní (Cyklistika, Pěší turistika, ...)", - "category:transport_car": "Individuální doprava", - "category:transport_pt": "Veřejná doprava", - "category:works": "Továrny" -} diff --git a/lang/de.json b/lang/de.json deleted file mode 100644 index 2041c0d..0000000 --- a/lang/de.json +++ /dev/null @@ -1,48 +0,0 @@ -{ - "category:administrative": "Administrative Gebiete", - "category:agriculture": "Landwirtschaft", - "category:agriculture_industry": "Landwirtschaft und Industrie", - "category:alternative_amenities": "Einrichtungen", - "category:alternative_routes": "(ausgeschilderte) Routen", - "category:car_amenities": "Einrichtungen", - "category:car_furniture": "Straßenausstattung", - "category:children": "Einrichtungen für Kinder", - "category:cycle_routes": "Radrouten", - "category:communication": "Kommunikation", - "category:construction": "Baustellen", - "category:culture": "Kultur", - "category:education": "Bildungseinrichtungen", - "category:emergency": "Notfalldienste", - "category:financial": "Finanzen", - "category:gastro": "Gastronomie", - "category:health": "Gesundheitsdienste", - "category:historic": "Geschichte", - "category:internet": "Internetzugang", - "category:landfill": "Entsorgung", - "category:leisure": "Freizeit", - "category:leisure_sport_shopping": "Freizeit, Sport und Einkauf", - "category:military": "Militär", - "category:natural": "Geographische Objekte", - "category:other": "Andere", - "category:phone": "Telekommunikation", - "category:places": "Orte", - "category:post": "Post", - "category:power": "Energie", - "category:pt_amenities": "Einrichtungen", - "category:pt_stops": "Haltestellen", - "category:public": "Öffentliche Dienste", - "category:railway": "Eisenbahn", - "category:religion": "Religion", - "category:residential": "Wohngebiete", - "category:resources": "Ressourcengewinnung", - "category:services": "Dienste", - "category:shop": "Einkauf", - "category:sport": "anderer Sport", - "category:tourism": "Tourismus", - "category:transport": "Transport", - "category:transport_car": "Motorisierter Individualverkehr", - "category:transport_cycle": "Radfahren", - "category:transport_pt": "Öffentlicher Verkehr", - "category:transport_walk": "Zu Fuß gehen", - "category:works": "Fabriken" -} diff --git a/lang/el.json b/lang/el.json deleted file mode 100644 index 938afc2..0000000 --- a/lang/el.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "category:administrative": "Διοικητικά Όρια", - "category:agriculture": "Γεωργία", - "category:agriculture_industry": "Γεωργία και Βιομηχανία", - "category:communication": "Επικοινωνίες", - "category:culture": "Πολιτισμός", - "category:education": "Υπηρεσίες Εκπαίδευσης", - "category:emergency": "Υπηρεσίες Έκτακτης Ανάγκης", - "category:financial": "Χρήμα", - "category:gastro": "Γαστρονομία", - "category:health": "Υγεία", - "category:historic": "Ιστορικά", - "category:leisure": "Αναψυχή", - "category:leisure_sport_shopping": "Αναψυχή, Αθλητισμός και Αγορές", - "category:military": "Στρατιωτικό", - "category:natural": "Φυσικοί Σχηματισμοί", - "category:places": "Μέρη", - "category:pt_stops": "Στάσεις & Σταθμοί", - "category:public": "Δημόσιες Υπηρεσίες", - "category:religion": "Θρησκεία", - "category:residential": "Περιοχές Κατοικίας", - "category:services": "Υπηρεσίες", - "category:shop": "Αγορές", - "category:sport": "Άθληση", - "category:tourism": "Τουρισμός", - "category:transport": "Μεταφορές", - "category:transport_alternative": "Εναλλακτικά (ποδηλασία, ορειβασία,...)", - "category:transport_pt": "Δημόσιες Μεταφορές" -} diff --git a/lang/en.json b/lang/en.json deleted file mode 100644 index 7054a12..0000000 --- a/lang/en.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "category:administrative": "Administrative Areas", - "category:agriculture": "Agriculture", - "category:agriculture_industry": "Agriculture and Industry", - "category:alternative_amenities": "Amenities", - "category:alternative_routes": "Routes", - "category:car_amenities": "Amenities", - "category:car_furniture": "Street Furniture", - "category:children": "Children amenities", - "category:cycle_routes": "Cycle Routes", - "category:communication": "Communication", - "category:construction": "Construction Sites", - "category:culture": "Culture", - "category:education": "Educational Services", - "category:emergency": "Emergency Services", - "category:financial": "Financial", - "category:gastro": "Gastronomy", - "category:health": "Health", - "category:historic": "Historic", - "category:internet": "Internet access", - "category:landfill": "Disposal", - "category:leisure": "Leisure", - "category:leisure_sport_shopping": "Leisure, Sport and Shopping", - "category:military": "Military", - "category:natural": "Natural Formations", - "category:other": "Other", - "category:phone": "Phone", - "category:places": "Places", - "category:playgrounds": "Playground", - "category:post": "Post", - "category:power": "Power", - "category:pt_amenities": "Amenities", - "category:pt_stops": "Stops & Stations", - "category:public": "Public Services", - "category:railway": "Railway", - "category:religion": "Religion", - "category:residential": "Residential Areas", - "category:resources": "Resource Extraction", - "category:services": "Services", - "category:shop": "Shopping", - "category:sport": "Sport", - "category:tourism": "Tourism", - "category:transport": "Transportation", - "category:transport_car": "Individual Traffic", - "category:transport_cycle": "Cycling", - "category:transport_pt": "Public Transportation", - "category:transport_walk": "Walking", - "category:works": "Works" -} diff --git a/lang/es.json b/lang/es.json deleted file mode 100644 index 4882cca..0000000 --- a/lang/es.json +++ /dev/null @@ -1,8 +0,0 @@ -{ - "category:culture": "Cultura y religión", - "category:emergency": "Servicios de emergencia", - "category:internet": "Acceso a Internet", - "category:leisure_sport_shopping": "Ocio, deporte y compras", - "category:pt_stops": "Paradas y estaciones", - "category:services": "Servicios" -} diff --git a/lang/et.json b/lang/et.json deleted file mode 100644 index 077d67d..0000000 --- a/lang/et.json +++ /dev/null @@ -1,26 +0,0 @@ -{ - "category:administrative": "Administratiivalad", - "category:agriculture": "Põllumajandus", - "category:agriculture_industry": "Põllumajandus ja tööstus", - "category:communication": "Kommunikatsioon", - "category:culture": "Kultuur ja religioon", - "category:education": "Haridusteenused", - "category:emergency": "Hädaabi teenused", - "category:historic": "Ajalooline", - "category:leisure_sport_shopping": "Vaba aeg, sport ja ostmine", - "category:other": "Ülejäänud", - "category:phone": "Telefon", - "category:places": "Kohad", - "category:playgrounds": "Mänguväljak", - "category:power": "Elekter", - "category:public": "Kommunaalteenused", - "category:railway": "Raudtee", - "category:religion": "Religioon", - "category:residential": "Elamupiirkonnad", - "category:services": "Teenused", - "category:shop": "Ostmine", - "category:tourism": "Turism", - "category:transport": "Transport", - "category:transport_alternative": "Alternatiivne (jalgrattasõit, matkamine, ...)", - "category:transport_pt": "Ühistransport" -} diff --git a/lang/fr.json b/lang/fr.json deleted file mode 100644 index 2cb6d41..0000000 --- a/lang/fr.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "category:administrative": "Zones administratives", - "category:agriculture": "Agriculture", - "category:agriculture_industry": "Agriculture et industrie", - "category:alternative_amenities": "Équipement", - "category:alternative_routes": "Routes", - "category:car_amenities": "Infrastructures routières", - "category:car_furniture": "Infrastrucutures résidentielles", - "category:communication": "Communication", - "category:construction": "Sites en construction", - "category:culture": "Culture", - "category:education": "Service d'Éducation", - "category:emergency": "Service d'urgence", - "category:financial": "Finance", - "category:gastro": "Gastronomie", - "category:health": "Santé", - "category:historic": "Histoire", - "category:landfill": "Rebuts", - "category:leisure": "Loisirs", - "category:leisure_sport_shopping": "Loisirs", - "category:military": "Militaire", - "category:natural": "Formation Naturelle", - "category:other": "Autre", - "category:places": "Place", - "category:playgrounds": "Jeux pour enfants", - "category:power": "Énergie", - "category:pt_amenities": "Équipements", - "category:pt_stops": "Arrêts/Stops, Stations", - "category:public": "Services Publics", - "category:railway": "Chemins de fer", - "category:religion": "Religion", - "category:residential": "Zone Résidentielle", - "category:resources": "Extraction des ressources", - "category:services": "Services", - "category:shop": "Magasinage/Shopping", - "category:sport": "Other Sport", - "category:tourism": "Tourisme", - "category:transport": "Transport", - "category:transport_alternative": "Alternatif (Cyclisme, Randonnée, ...)", - "category:transport_car": "Transport automobile", - "category:transport_pt": "Transport public", - "category:works": "Construction" -} diff --git a/lang/hu.json b/lang/hu.json deleted file mode 100644 index 96b3b29..0000000 --- a/lang/hu.json +++ /dev/null @@ -1,29 +0,0 @@ -{ - "category:administrative": "Adminisztratív határok", - "category:agriculture": "Mezőgazdaság", - "category:agriculture_industry": "Mezőgazdaság és ipar", - "category:communication": "Kommunikácó", - "category:culture": "Kultúra", - "category:gastro": "Gasztronómia", - "category:historic": "Historikus", - "category:internet": "Internethozzáférés", - "category:leisure_sport_shopping": "Szabadidő", - "category:military": "Katonai", - "category:natural": "Természeti képződmények", - "category:other": "Egyéb", - "category:phone": "Telefon", - "category:places": "Helyek", - "category:post": "Posta", - "category:power": "Áramellátás", - "category:pt_stops": "Megállók és állomások", - "category:railway": "Vasút", - "category:religion": "Vallás", - "category:residential": "Lakóövezetek", - "category:services": "Szolgáltatás", - "category:shop": "Vásárlás", - "category:sport": "Sport", - "category:tourism": "Túrizmus", - "category:transport": "Közlekedés", - "category:transport_alternative": "Alternatív (Krékpár, Túra)", - "category:transport_pt": "Tömegközlekedés" -} diff --git a/lang/it.json b/lang/it.json deleted file mode 100644 index 646c313..0000000 --- a/lang/it.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "category:administrative": "Suddivisioni amministrative", - "category:agriculture": "Agricoltura", - "category:agriculture_industry": "Agricoltura e industria", - "category:alternative_amenities": "Infrastrutture", - "category:alternative_routes": "Itinerari segnalati", - "category:car_amenities": "Infrastrutture", - "category:car_furniture": "Dotazioni stradali", - "category:communication": "Communicazioni", - "category:construction": "Cantieri", - "category:culture": "Cultura", - "category:education": "Istruzione", - "category:emergency": "Servizi d'emergenza", - "category:financial": "Finanze", - "category:gastro": "Gastronomia", - "category:health": "Sanità", - "category:historic": "Storia", - "category:landfill": "Smaltimento", - "category:leisure": "Tempo libero", - "category:leisure_sport_shopping": "Tempo libero, sport e shopping", - "category:military": "Militare", - "category:natural": "Natura", - "category:other": "Altri", - "category:places": "Luoghi", - "category:power": "Energia", - "category:pt_amenities": "Infrastrutture", - "category:pt_stops": "Stazioni e fermate", - "category:public": "Servizi pubblici", - "category:railway": "Ferrovie", - "category:religion": "Religione", - "category:residential": "Aree residenziali", - "category:resources": "Areee estrattive", - "category:services": "Servizi", - "category:shop": "Acquisti", - "category:sport": "Altri sport", - "category:tourism": "Turismo", - "category:transport": "Trasporti", - "category:transport_alternative": "Alternativi (bicicletta, camminate, ...)", - "category:transport_car": "Trasporti individuali", - "category:transport_pt": "Trasporti pubblici", - "category:works": "Fabbriche" -} diff --git a/lang/ja.json b/lang/ja.json deleted file mode 100644 index 1b199e6..0000000 --- a/lang/ja.json +++ /dev/null @@ -1,43 +0,0 @@ -{ - "category:agriculture": "農業", - "category:agriculture_industry": "農業と工業", - "category:alternative_amenities": "生活環境", - "category:alternative_routes": "ルート", - "category:car_amenities": "生活環境", - "category:car_furniture": "街路設置公共物", - "category:communication": "交流", - "category:construction": "工事中", - "category:culture": "文化", - "category:education": "教育サービス", - "category:emergency": "緊急サービス", - "category:financial": "金融", - "category:gastro": "食べ物", - "category:health": "健康", - "category:historic": "記念", - "category:internet": "インターネット接続", - "category:landfill": "処理場", - "category:leisure": "レジャー", - "category:leisure_sport_shopping": "レジャー", - "category:military": "軍事", - "category:natural": "自然地層", - "category:other": "その他", - "category:phone": "電話", - "category:places": "場所", - "category:post": "郵便", - "category:power": "電力", - "category:pt_amenities": "生活環境", - "category:pt_stops": "停留所と駅", - "category:public": "公共サービス", - "category:railway": "鉄道", - "category:religion": "宗教", - "category:residential": "住居エリア", - "category:services": "サービス", - "category:shop": "ショッピング", - "category:sport": "スポーツ", - "category:tourism": "観光", - "category:transport": "輸送", - "category:transport_alternative": "その他交通 (サイクリング、ハイキング、...)", - "category:transport_car": "個人輸送機関", - "category:transport_pt": "公共輸送", - "category:works": "工場" -} diff --git a/lang/nl.json b/lang/nl.json deleted file mode 100644 index 8895b44..0000000 --- a/lang/nl.json +++ /dev/null @@ -1,45 +0,0 @@ -{ - "category:administrative": "Administratieve gebieden", - "category:agriculture": "Landbouw", - "category:agriculture_industry": "Landbouw en Industrie", - "category:alternative_amenities": "Voorzieningen", - "category:alternative_routes": "Alternatieve routes", - "category:car_amenities": "Voorzieningen", - "category:car_furniture": "Straatmeubilair", - "category:communication": "Communicatie", - "category:construction": "Bouwterrein", - "category:culture": "Cultuur", - "category:education": "Onderwijs", - "category:emergency": "Hulpdiensten", - "category:financial": "Financieel", - "category:gastro": "Gastronomie", - "category:health": "Gezondheid", - "category:historic": "Historisch", - "category:internet": "Internettoegang", - "category:landfill": "Afvalverwijdering", - "category:leisure": "Vrije tijd", - "category:leisure_sport_shopping": "Vrije tijd, Sport en Winkelen", - "category:military": "Militair", - "category:natural": "Natuurlijke Formaties", - "category:other": "Andere", - "category:phone": "Telefonie", - "category:places": "Plaatsen", - "category:post": "Post", - "category:power": "Stroomvoorziening", - "category:pt_amenities": "Voorzieningen", - "category:pt_stops": "Haltes en Stations", - "category:public": "Openbare diensten", - "category:railway": "Spoorwegen", - "category:religion": "Religie", - "category:residential": "Woongebieden", - "category:resources": "Grondstoffenwinning", - "category:services": "Dienstverlening", - "category:shop": "Winkelen", - "category:sport": "Sport", - "category:tourism": "Toerisme", - "category:transport": "Vervoer", - "category:transport_alternative": "Alternatief (Fiets, Wandel, ...)", - "category:transport_car": "Gemotoriseerd individueel verkeer", - "category:transport_pt": "Openbaar vervoer", - "category:works": "Fabrieken" -} diff --git a/lang/pl.json b/lang/pl.json deleted file mode 100644 index 2850481..0000000 --- a/lang/pl.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "category:agriculture_industry": "Rolnictwo i Przemysł", - "category:car_furniture": "Elementy drogowe", - "category:culture": "Kultura", - "category:education": "Edukacyjne", - "category:financial": "Finasowe", - "category:gastro": "Gastronomia", - "category:health": "Zdrowie", - "category:historic": "Miejsca Historyczne", - "category:leisure_sport_shopping": "Wypoczynek, Sport i Zakupy", - "category:places": "Miejsca", - "category:pt_amenities": "", - "category:pt_stops": "Przystanki i Stacje", - "category:services": "Usługi", - "category:shop": "Zakupy", - "category:tourism": "Turystyka", - "category:transport": "Transport", - "category:transport_car": "Transport Indywidualny", - "category:transport_pt": "Transport Publiczny" -} diff --git a/lang/ro.json b/lang/ro.json deleted file mode 100644 index 492e394..0000000 --- a/lang/ro.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "category:administrative": "Zona administrativa", - "category:agriculture": "Agricultura", - "category:agriculture_industry": "Agricultura si industrie", - "category:communication": "Comunicatii", - "category:culture": "Cultura", - "category:education": "Servicii educatie", - "category:emergency": "Servicii urgenta", - "category:financial": "Financiar", - "category:gastro": "Gastronomie", - "category:health": "Sanatate", - "category:historic": "Istoric", - "category:internet": "Acces internet", - "category:leisure": "Timp liber", - "category:leisure_sport_shopping": "Timp liber, Sport si Cumparaturi", - "category:military": "Militar", - "category:other": "Altele", - "category:phone": "Telefon", - "category:places": "Locuri", - "category:playgrounds": "Loc de joaca", - "category:power": "Energie", - "category:public": "Servicii publice", - "category:religion": "Religie", - "category:residential": "Zona rezidentiala", - "category:services": "Servicii", - "category:shop": "Cumpărături", - "category:tourism": "Turism", - "category:transport": "Transport", - "category:transport_alternative": "Alternativ(Bicicleta,Drumetii)", - "category:transport_car": "Trafic individual", - "category:transport_pt": "Transport public" -} diff --git a/lang/ru.json b/lang/ru.json deleted file mode 100644 index 0510ede..0000000 --- a/lang/ru.json +++ /dev/null @@ -1,42 +0,0 @@ -{ - "category:administrative": "Административные границы", - "category:agriculture": "Сельское хозяйство", - "category:agriculture_industry": "Сельское хозяйство и промышленность", - "category:alternative_amenities": "Полезные места", - "category:alternative_routes": "Маршруты", - "category:car_amenities": "Обслуживание транспорта", - "category:car_furniture": "Элементы дороги", - "category:communication": "Услуги связи", - "category:construction": "Места строительства", - "category:culture": "Культура", - "category:education": "Образование", - "category:emergency": "Экстренные службы", - "category:financial": "Финансы", - "category:gastro": "Общепит", - "category:health": "Медицина", - "category:historic": "Историческое", - "category:landfill": "Переработка отходов", - "category:leisure": "Досуг", - "category:leisure_sport_shopping": "Досуг", - "category:military": "Вооружённые силы", - "category:natural": "Природные образования", - "category:other": "Прочее", - "category:places": "Места", - "category:power": "Энергетика", - "category:pt_amenities": "Транспортные принадлежности", - "category:pt_stops": "Остановки и станции", - "category:public": "Общественные места", - "category:railway": "Железные дороги", - "category:religion": "Религия", - "category:residential": "Жилые районы", - "category:resources": "Добыча ресурсов", - "category:services": "Услуги", - "category:shop": "Покупки", - "category:sport": "Спорт", - "category:tourism": "Туризм", - "category:transport": "Транспорт", - "category:transport_alternative": "Альтернативное передвижение (Велоспорт, Пешие прогулки, ...)", - "category:transport_car": "Частный транспорт", - "category:transport_pt": "Общественный транспорт", - "category:works": "Промышленность" -} diff --git a/lang/template.json b/lang/template.json deleted file mode 100755 index 867149b..0000000 --- a/lang/template.json +++ /dev/null @@ -1,49 +0,0 @@ -{ - "category:administrative": "", - "category:agriculture": "", - "category:agriculture_industry": "", - "category:alternative_amenities": "", - "category:alternative_routes": "", - "category:car_amenities": "", - "category:car_furniture": "", - "category:children": "", - "category:cycle_routes": "", - "category:communication": "", - "category:construction": "", - "category:culture": "", - "category:education": "", - "category:emergency": "", - "category:financial": "", - "category:gastro": "", - "category:health": "", - "category:historic": "", - "category:internet": "", - "category:landfill": "", - "category:leisure": "", - "category:leisure_sport_shopping": "", - "category:military": "", - "category:natural": "", - "category:other": "", - "category:phone": "", - "category:places": "", - "category:playgrounds": "", - "category:post": "", - "category:power": "", - "category:pt_amenities": "", - "category:pt_stops": "", - "category:public": "", - "category:railway": "", - "category:religion": "", - "category:residential": "", - "category:resources": "", - "category:services": "", - "category:shop": "", - "category:sport": "", - "category:tourism": "", - "category:transport": "", - "category:transport_car": "", - "category:transport_cycle": "", - "category:transport_pt": "", - "category:transport_walk": "", - "category:works": "" -} diff --git a/lang/tr.json b/lang/tr.json deleted file mode 100644 index 2324df8..0000000 --- a/lang/tr.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "category:transport": "Toplu Taşıma" -} diff --git a/lang/uk.json b/lang/uk.json deleted file mode 100644 index b8d5411..0000000 --- a/lang/uk.json +++ /dev/null @@ -1,34 +0,0 @@ -{ - "category:agriculture_industry": "Сільське господартво та промисловість", - "category:alternative_amenities": "Amenities", - "category:alternative_routes": "Маршрути", - "category:car_amenities": "Amenities", - "category:car_furniture": "Street Furniture", - "category:communication": "Телекомунікації", - "category:culture": "Культура ", - "category:education": "Освіта", - "category:emergency": "Швидка допомога", - "category:financial": "Фінанси", - "category:gastro": "Гастрономія", - "category:health": "Здоров'я", - "category:historic": "Історія", - "category:leisure": "Дозвілля", - "category:leisure_sport_shopping": "Дозвілля", - "category:natural": "Природне середовище", - "category:other": "Інше", - "category:places": "Місцевість", - "category:playgrounds": "Дитячий майданчик", - "category:pt_amenities": "Amenities", - "category:pt_stops": "Зупинки та станції", - "category:public": "Громадські місця", - "category:religion": "Релігія", - "category:residential": "Житлова зона", - "category:services": "Послуги", - "category:shop": "Торгівля", - "category:sport": "Спорт. Інше.", - "category:tourism": "Туризм", - "category:transport": "Транспорт", - "category:transport_alternative": "Інші (Велосипедні, піші, ...)", - "category:transport_car": "Приватний транспорт", - "category:transport_pt": "Громадський транспорт" -} diff --git a/leisure.json b/leisure.json index fc93d56..9944fc5 100644 --- a/leisure.json +++ b/leisure.json @@ -1,4 +1,18 @@ { + "name": { + "ast": "Recréu", + "cs": "Volný čas", + "de": "Freizeit", + "el": "Αναψυχή", + "en": "Leisure", + "fr": "Loisirs", + "it": "Tempo libero", + "ja": "レジャー", + "nl": "Vrije tijd", + "ro": "Timp liber", + "ru": "Досуг", + "uk": "Дозвілля" + }, "type": "overpass", "query": { "14": "(way[leisure~'^(park|common)$'];relation[leisure='^(park|common)$'];)", diff --git a/military.json b/military.json new file mode 100644 index 0000000..1be7da7 --- /dev/null +++ b/military.json @@ -0,0 +1,16 @@ +{ + "name": { + "ast": "Militar", + "cs": "Vojenské", + "de": "Militär", + "el": "Στρατιωτικό", + "en": "Military", + "fr": "Militaire", + "hu": "Katonai", + "it": "Militare", + "ja": "軍事", + "nl": "Militair", + "ro": "Militar", + "ru": "Вооружённые силы" + } +} diff --git a/natural.json b/natural.json new file mode 100644 index 0000000..3676b76 --- /dev/null +++ b/natural.json @@ -0,0 +1,16 @@ +{ + "name": { + "ast": "Formaciones naturales", + "cs": "Přírodní úkazy", + "de": "Geographische Objekte", + "el": "Φυσικοί Σχηματισμοί", + "en": "Natural Formations", + "fr": "Formation Naturelle", + "hu": "Természeti képződmények", + "it": "Natura", + "ja": "自然地層", + "nl": "Natuurlijke Formaties", + "ru": "Природные образования", + "uk": "Природне середовище" + } +} diff --git a/other.json b/other.json new file mode 100644 index 0000000..13e8412 --- /dev/null +++ b/other.json @@ -0,0 +1,17 @@ +{ + "name": { + "ast": "Otres", + "cs": "Jiné", + "de": "Andere", + "en": "Other", + "et": "Ülejäänud", + "fr": "Autre", + "hu": "Egyéb", + "it": "Altri", + "ja": "その他", + "nl": "Andere", + "ro": "Altele", + "ru": "Прочее", + "uk": "Інше" + } +} diff --git a/phone.json b/phone.json new file mode 100644 index 0000000..549680e --- /dev/null +++ b/phone.json @@ -0,0 +1,13 @@ +{ + "name": { + "ast": "Teléfonos", + "cs": "Telefony", + "de": "Telekommunikation", + "en": "Phone", + "et": "Telefon", + "hu": "Telefon", + "ja": "電話", + "nl": "Telefonie", + "ro": "Telefon" + } +} diff --git a/places.json b/places.json index 8bd2492..c692eba 100644 --- a/places.json +++ b/places.json @@ -1,4 +1,21 @@ { + "name": { + "ast": "Llugares", + "cs": "Sídla", + "de": "Orte", + "el": "Μέρη", + "en": "Places", + "et": "Kohad", + "fr": "Place", + "hu": "Helyek", + "it": "Luoghi", + "ja": "場所", + "nl": "Plaatsen", + "pl": "Miejsca", + "ro": "Locuri", + "ru": "Места", + "uk": "Місцевість" + }, "type": "overpass", "query": { "0": "node[place~'^(continent)$']", diff --git a/playgrounds.json b/playgrounds.json new file mode 100644 index 0000000..aea8a8e --- /dev/null +++ b/playgrounds.json @@ -0,0 +1,11 @@ +{ + "name": { + "ast": "Xuegos infantiles", + "cs": "Hřiště", + "en": "Playground", + "et": "Mänguväljak", + "fr": "Jeux pour enfants", + "ro": "Loc de joaca", + "uk": "Дитячий майданчик" + } +} diff --git a/post.json b/post.json new file mode 100644 index 0000000..1e1b1a9 --- /dev/null +++ b/post.json @@ -0,0 +1,11 @@ +{ + "name": { + "ast": "Corréu", + "cs": "Poštovní služby", + "de": "Post", + "en": "Post", + "hu": "Posta", + "ja": "郵便", + "nl": "Post" + } +} diff --git a/power.json b/power.json index bd045a7..3447660 100644 --- a/power.json +++ b/power.json @@ -1,4 +1,18 @@ { + "name": { + "ast": "Enerxía", + "cs": "Elektřina", + "de": "Energie", + "en": "Power", + "et": "Elekter", + "fr": "Énergie", + "hu": "Áramellátás", + "it": "Energia", + "ja": "電力", + "nl": "Stroomvoorziening", + "ro": "Energie", + "ru": "Энергетика" + }, "type": "overpass", "query": { "11": "(node[power~'^(plant)$'];way[power~'^(plant|line)$'];relation[power~'^(plant)$'];)", diff --git a/pt_amenities.json b/pt_amenities.json new file mode 100644 index 0000000..c9e6833 --- /dev/null +++ b/pt_amenities.json @@ -0,0 +1,15 @@ +{ + "name": { + "ast": "Infraestructures", + "cs": "Občanská vybavenost", + "de": "Einrichtungen", + "en": "Amenities", + "fr": "Équipements", + "it": "Infrastrutture", + "ja": "生活環境", + "nl": "Voorzieningen", + "pl": "", + "ru": "Транспортные принадлежности", + "uk": "Amenities" + } +} diff --git a/pt_stops.json b/pt_stops.json new file mode 100644 index 0000000..12bb605 --- /dev/null +++ b/pt_stops.json @@ -0,0 +1,18 @@ +{ + "name": { + "ast": "Paraes y estaciones", + "cs": "Zastávky & Stanice", + "de": "Haltestellen", + "el": "Στάσεις & Σταθμοί", + "en": "Stops & Stations", + "es": "Paradas y estaciones", + "fr": "Arrêts/Stops, Stations", + "hu": "Megállók és állomások", + "it": "Stazioni e fermate", + "ja": "停留所と駅", + "nl": "Haltes en Stations", + "pl": "Przystanki i Stacje", + "ru": "Остановки и станции", + "uk": "Зупинки та станції" + } +} diff --git a/public.json b/public.json index 8d20812..e25e732 100644 --- a/public.json +++ b/public.json @@ -1,4 +1,19 @@ { + "name": { + "ast": "Serviciu Públicu", + "cs": "Veřejné služby", + "de": "Öffentliche Dienste", + "el": "Δημόσιες Υπηρεσίες", + "en": "Public Services", + "et": "Kommunaalteenused", + "fr": "Services Publics", + "it": "Servizi pubblici", + "ja": "公共サービス", + "nl": "Openbare diensten", + "ro": "Servicii publice", + "ru": "Общественные места", + "uk": "Громадські місця" + }, "type": "overpass", "query": { "12": "(node[amenity~'^(court_house|embassy|public_building|townhall)$'];way[amenity~'^(court_house|embassy|public_building|townhall)$'];relation[amenity~'^(court_house|embassy|public_building|townhall)$'];node[amenity=recycling][recyling_type=centre];way[amenity=recycling][recyling_type=centre];relation[amenity=recycling][recyling_type=centre];);", diff --git a/railway.json b/railway.json new file mode 100644 index 0000000..a30fd87 --- /dev/null +++ b/railway.json @@ -0,0 +1,15 @@ +{ + "name": { + "ast": "Ferrocarril", + "cs": "Železnice", + "de": "Eisenbahn", + "en": "Railway", + "et": "Raudtee", + "fr": "Chemins de fer", + "hu": "Vasút", + "it": "Ferrovie", + "ja": "鉄道", + "nl": "Spoorwegen", + "ru": "Железные дороги" + } +} diff --git a/religion.json b/religion.json new file mode 100644 index 0000000..a9f78eb --- /dev/null +++ b/religion.json @@ -0,0 +1,18 @@ +{ + "name": { + "ast": "Relixón", + "cs": "Religion", + "de": "Religion", + "el": "Θρησκεία", + "en": "Religion", + "et": "Religioon", + "fr": "Religion", + "hu": "Vallás", + "it": "Religione", + "ja": "宗教", + "nl": "Religie", + "ro": "Religie", + "ru": "Религия", + "uk": "Релігія" + } +} diff --git a/residential.json b/residential.json new file mode 100644 index 0000000..dc5253d --- /dev/null +++ b/residential.json @@ -0,0 +1,18 @@ +{ + "name": { + "ast": "Zones residenciales", + "cs": "Obytné oblasti", + "de": "Wohngebiete", + "el": "Περιοχές Κατοικίας", + "en": "Residential Areas", + "et": "Elamupiirkonnad", + "fr": "Zone Résidentielle", + "hu": "Lakóövezetek", + "it": "Aree residenziali", + "ja": "住居エリア", + "nl": "Woongebieden", + "ro": "Zona rezidentiala", + "ru": "Жилые районы", + "uk": "Житлова зона" + } +} diff --git a/resources.json b/resources.json new file mode 100644 index 0000000..bdd003d --- /dev/null +++ b/resources.json @@ -0,0 +1,12 @@ +{ + "name": { + "ast": "Estraición de recursos", + "cs": "Těžba surovin", + "de": "Ressourcengewinnung", + "en": "Resource Extraction", + "fr": "Extraction des ressources", + "it": "Areee estrattive", + "nl": "Grondstoffenwinning", + "ru": "Добыча ресурсов" + } +} diff --git a/shop.json b/shop.json index 054254e..8bcadc8 100644 --- a/shop.json +++ b/shop.json @@ -1,4 +1,21 @@ { + "name": { + "ast": "Compres", + "cs": "Obchody", + "de": "Einkauf", + "el": "Αγορές", + "en": "Shopping", + "et": "Ostmine", + "fr": "Magasinage/Shopping", + "hu": "Vásárlás", + "it": "Acquisti", + "ja": "ショッピング", + "nl": "Winkelen", + "pl": "Zakupy", + "ro": "Cumpărături", + "ru": "Покупки", + "uk": "Торгівля" + }, "type": "overpass", "query": { "14": "(node[shop~'^(mall|department_store)$'];way[shop~'^(mall|department_store)$'];relation[shop~'^(mall|department_store)$'];);", diff --git a/sport.json b/sport.json new file mode 100644 index 0000000..a42a710 --- /dev/null +++ b/sport.json @@ -0,0 +1,16 @@ +{ + "name": { + "ast": "Deportes", + "cs": "Sport", + "de": "anderer Sport", + "el": "Άθληση", + "en": "Sport", + "fr": "Other Sport", + "hu": "Sport", + "it": "Altri sport", + "ja": "スポーツ", + "nl": "Sport", + "ru": "Спорт", + "uk": "Спорт. Інше." + } +} diff --git a/tourism.json b/tourism.json new file mode 100644 index 0000000..55484f7 --- /dev/null +++ b/tourism.json @@ -0,0 +1,19 @@ +{ + "name": { + "ast": "Turismu", + "cs": "Turistika", + "de": "Tourismus", + "el": "Τουρισμός", + "en": "Tourism", + "et": "Turism", + "fr": "Tourisme", + "hu": "Túrizmus", + "it": "Turismo", + "ja": "観光", + "nl": "Toerisme", + "pl": "Turystyka", + "ro": "Turism", + "ru": "Туризм", + "uk": "Туризм" + } +} diff --git a/transport_alternative.json b/transport_alternative.json new file mode 100644 index 0000000..ec5b244 --- /dev/null +++ b/transport_alternative.json @@ -0,0 +1,16 @@ +{ + "name": { + "ast": "Alternativu (Ciclismu, senderismu, ...)", + "cs": "Alternativní (Cyklistika, Pěší turistika, ...)", + "el": "Εναλλακτικά (ποδηλασία, ορειβασία,...)", + "et": "Alternatiivne (jalgrattasõit, matkamine, ...)", + "fr": "Alternatif (Cyclisme, Randonnée, ...)", + "hu": "Alternatív (Krékpár, Túra)", + "it": "Alternativi (bicicletta, camminate, ...)", + "ja": "その他交通 (サイクリング、ハイキング、...)", + "nl": "Alternatief (Fiets, Wandel, ...)", + "ro": "Alternativ(Bicicleta,Drumetii)", + "ru": "Альтернативное передвижение (Велоспорт, Пешие прогулки, ...)", + "uk": "Інші (Велосипедні, піші, ...)" + } +} diff --git a/works.json b/works.json index 7f3c9ce..42c47fd 100644 --- a/works.json +++ b/works.json @@ -1,4 +1,15 @@ { + "name": { + "ast": "Fábriques", + "cs": "Továrny", + "de": "Fabriken", + "en": "Works", + "fr": "Construction", + "it": "Fabbriche", + "ja": "工場", + "nl": "Fabrieken", + "ru": "Промышленность" + }, "type": "overpass", "query": { "12": "(node[landuse~'^(industrial)$'];way[landuse~'^(industrial)$'];relation[landuse~'^(industrial)$'];)"