Update to iD 1.0.0
This commit is contained in:
parent
3da2a95cea
commit
c3801e5931
10 changed files with 944 additions and 20 deletions
5
vendor/assets/iD/iD.js
vendored
5
vendor/assets/iD/iD.js
vendored
|
@ -2789,7 +2789,7 @@ function d3_geo_clipView(x0, y0, x1, y1) {
|
|||
}
|
||||
listener.point(b[0], b[1]);
|
||||
if (!v) listener.lineEnd();
|
||||
} else {
|
||||
} else if (v) {
|
||||
listener.lineStart();
|
||||
listener.point(x, y);
|
||||
}
|
||||
|
@ -15003,7 +15003,7 @@ window.iD = function () {
|
|||
return d3.rebind(context, dispatch, 'on');
|
||||
};
|
||||
|
||||
iD.version = '0.0.0-beta1';
|
||||
iD.version = '1.0.0';
|
||||
|
||||
iD.detect = function() {
|
||||
var browser = {};
|
||||
|
@ -46414,6 +46414,7 @@ iD.introGraph = '{"n185954700":{"id":"n185954700","loc":[-85.642244,41.939081],"
|
|||
"nl",
|
||||
"fr",
|
||||
"de",
|
||||
"is",
|
||||
"it",
|
||||
"ja",
|
||||
"lv",
|
||||
|
|
138
vendor/assets/iD/iD/locales/ca.json
vendored
138
vendor/assets/iD/iD/locales/ca.json
vendored
|
@ -419,6 +419,144 @@
|
|||
},
|
||||
"landuse": {
|
||||
"name": "Ús de la terra"
|
||||
},
|
||||
"landuse/cemetery": {
|
||||
"name": "Cementiri"
|
||||
},
|
||||
"landuse/construction": {
|
||||
"name": "Construcció"
|
||||
},
|
||||
"landuse/forest": {
|
||||
"name": "Bosc"
|
||||
},
|
||||
"landuse/grass": {
|
||||
"name": "Herba"
|
||||
},
|
||||
"landuse/industrial": {
|
||||
"name": "Industrial"
|
||||
},
|
||||
"landuse/meadow": {
|
||||
"name": "Prat"
|
||||
},
|
||||
"landuse/orchard": {
|
||||
"name": "Verger"
|
||||
},
|
||||
"landuse/quarry": {
|
||||
"name": "Pedrera"
|
||||
},
|
||||
"landuse/residential": {
|
||||
"name": "Residencial"
|
||||
},
|
||||
"landuse/vineyard": {
|
||||
"name": "Vinya"
|
||||
},
|
||||
"leisure/golf_course": {
|
||||
"name": "Camp de golf"
|
||||
},
|
||||
"leisure/park": {
|
||||
"name": "Parc"
|
||||
},
|
||||
"leisure/pitch/american_football": {
|
||||
"name": "Camp de futbol americà"
|
||||
},
|
||||
"leisure/pitch/baseball": {
|
||||
"name": "Camp de beibol"
|
||||
},
|
||||
"leisure/pitch/basketball": {
|
||||
"name": "Pista de bàsquet"
|
||||
},
|
||||
"leisure/pitch/soccer": {
|
||||
"name": "Camp de futbol"
|
||||
},
|
||||
"leisure/pitch/tennis": {
|
||||
"name": "Pista de tennis"
|
||||
},
|
||||
"leisure/playground": {
|
||||
"name": "Zona de jocs infantils"
|
||||
},
|
||||
"man_made/lighthouse": {
|
||||
"name": "Far"
|
||||
},
|
||||
"man_made/water_tower": {
|
||||
"name": "Torre d'aigua"
|
||||
},
|
||||
"natural": {
|
||||
"name": "Natural"
|
||||
},
|
||||
"natural/bay": {
|
||||
"name": "Badia"
|
||||
},
|
||||
"natural/beach": {
|
||||
"name": "Platja"
|
||||
},
|
||||
"natural/cliff": {
|
||||
"name": "Penya-segat"
|
||||
},
|
||||
"natural/coastline": {
|
||||
"name": "Línia costanera"
|
||||
},
|
||||
"natural/glacier": {
|
||||
"name": "Glacera"
|
||||
},
|
||||
"natural/grassland": {
|
||||
"name": "Prada"
|
||||
},
|
||||
"natural/heath": {
|
||||
"name": "Landa"
|
||||
},
|
||||
"natural/peak": {
|
||||
"name": "Pic"
|
||||
},
|
||||
"natural/scrub": {
|
||||
"name": "Matollar"
|
||||
},
|
||||
"natural/spring": {
|
||||
"name": "Font"
|
||||
},
|
||||
"natural/tree": {
|
||||
"name": "Arbre"
|
||||
},
|
||||
"natural/water": {
|
||||
"name": "Aigua"
|
||||
},
|
||||
"natural/water/lake": {
|
||||
"name": "Llac"
|
||||
},
|
||||
"natural/water/pond": {
|
||||
"name": "Bassa"
|
||||
},
|
||||
"natural/water/reservoir": {
|
||||
"name": "Embassament"
|
||||
},
|
||||
"natural/wetland": {
|
||||
"name": "Zona humida"
|
||||
},
|
||||
"natural/wood": {
|
||||
"name": "Bosc"
|
||||
},
|
||||
"place/hamlet": {
|
||||
"name": "Llogaret"
|
||||
},
|
||||
"place/island": {
|
||||
"name": "Illa"
|
||||
},
|
||||
"place/locality": {
|
||||
"name": "Indret"
|
||||
},
|
||||
"place/village": {
|
||||
"name": "Poble"
|
||||
},
|
||||
"power/sub_station": {
|
||||
"name": "Subestació"
|
||||
},
|
||||
"shop": {
|
||||
"name": "Botiga"
|
||||
},
|
||||
"shop/butcher": {
|
||||
"name": "Carnisseria"
|
||||
},
|
||||
"shop/supermarket": {
|
||||
"name": "Supermercat"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
58
vendor/assets/iD/iD/locales/cs.json
vendored
58
vendor/assets/iD/iD/locales/cs.json
vendored
|
@ -462,6 +462,12 @@
|
|||
"historic": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Sklon"
|
||||
},
|
||||
|
@ -488,6 +494,9 @@
|
|||
"levels": {
|
||||
"label": "Počet pater"
|
||||
},
|
||||
"location": {
|
||||
"label": "Umístění"
|
||||
},
|
||||
"man_made": {
|
||||
"label": "Typ"
|
||||
},
|
||||
|
@ -590,6 +599,9 @@
|
|||
"tourism": {
|
||||
"label": "Typ"
|
||||
},
|
||||
"towertype": {
|
||||
"label": "Typ věže"
|
||||
},
|
||||
"tracktype": {
|
||||
"label": "Typ"
|
||||
},
|
||||
|
@ -626,10 +638,31 @@
|
|||
"name": "Letiště",
|
||||
"terms": "letadlo,letiště,přistávací dráha"
|
||||
},
|
||||
"aeroway/apron": {
|
||||
"name": "Parkovací plocha",
|
||||
"terms": "apron"
|
||||
},
|
||||
"aeroway/gate": {
|
||||
"name": "Letištní gate"
|
||||
},
|
||||
"aeroway/hangar": {
|
||||
"name": "Hangár"
|
||||
},
|
||||
"aeroway/helipad": {
|
||||
"name": "Heliport",
|
||||
"terms": "vrtulník,helikoptéra,heliport"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "Vzletová a přistávací dráha",
|
||||
"terms": "runway,přistávací dráha,vzletová dráha,přistávací plocha"
|
||||
},
|
||||
"aeroway/taxiway": {
|
||||
"name": "Pojezdová dráha"
|
||||
},
|
||||
"aeroway/terminal": {
|
||||
"name": "Letištní terminál",
|
||||
"terms": "letiště,terminál"
|
||||
},
|
||||
"amenity": {
|
||||
"name": "Zařízení"
|
||||
},
|
||||
|
@ -660,6 +693,9 @@
|
|||
"name": "Kino",
|
||||
"terms": "kino,film,cinema,multikino,bio,biograf,kinematograf"
|
||||
},
|
||||
"amenity/college": {
|
||||
"name": "College"
|
||||
},
|
||||
"amenity/courthouse": {
|
||||
"name": "Soud"
|
||||
},
|
||||
|
@ -685,6 +721,10 @@
|
|||
"name": "Nemocnice",
|
||||
"terms": "nemocnice,klinika,špitál,středisko,hospic,LDN,sanatorium,nemocniční,lazaret,ambulance,poliklinika,pohotovost"
|
||||
},
|
||||
"amenity/kindergarten": {
|
||||
"name": "Mateřská školka",
|
||||
"terms": "jesle,školka,kindergarten,předškolní"
|
||||
},
|
||||
"amenity/library": {
|
||||
"name": "Knihovna"
|
||||
},
|
||||
|
@ -753,7 +793,8 @@
|
|||
"terms": "radnice,místní správa,obecní správa,obecní úřad"
|
||||
},
|
||||
"amenity/university": {
|
||||
"name": "Vysoká škola"
|
||||
"name": "Vysoká škola",
|
||||
"terms": "vysoká škola,univerzita,universita,vyšší odborná škola,VOŠ,college"
|
||||
},
|
||||
"amenity/waste_basket": {
|
||||
"name": "Odpadkový koš",
|
||||
|
@ -1073,15 +1114,27 @@
|
|||
"man_made": {
|
||||
"name": "Umělý objekt"
|
||||
},
|
||||
"man_made/breakwater": {
|
||||
"name": "Vlnolam"
|
||||
},
|
||||
"man_made/cutline": {
|
||||
"name": "Průsek"
|
||||
},
|
||||
"man_made/lighthouse": {
|
||||
"name": "Maják"
|
||||
},
|
||||
"man_made/pier": {
|
||||
"name": "Molo"
|
||||
},
|
||||
"man_made/pipeline": {
|
||||
"name": "Dálkové potrubí"
|
||||
},
|
||||
"man_made/survey_point": {
|
||||
"name": "Triangulační bod"
|
||||
},
|
||||
"man_made/tower": {
|
||||
"name": "Věž"
|
||||
},
|
||||
"man_made/wastewater_plant": {
|
||||
"name": "Čistička odpadních vod",
|
||||
"terms": "čistírna,čistička,čistírna odpadních vod,ČOV,čovka"
|
||||
|
@ -1089,6 +1142,9 @@
|
|||
"man_made/water_tower": {
|
||||
"name": "Vodárenská věž"
|
||||
},
|
||||
"man_made/water_well": {
|
||||
"name": "Studna"
|
||||
},
|
||||
"man_made/water_works": {
|
||||
"name": "Vodárna"
|
||||
},
|
||||
|
|
2
vendor/assets/iD/iD/locales/da.json
vendored
2
vendor/assets/iD/iD/locales/da.json
vendored
|
@ -490,7 +490,7 @@
|
|||
"label": "Type"
|
||||
},
|
||||
"levels": {
|
||||
"label": "Niveauer"
|
||||
"label": "Etager"
|
||||
},
|
||||
"location": {
|
||||
"label": "Lokalitet"
|
||||
|
|
21
vendor/assets/iD/iD/locales/de.json
vendored
21
vendor/assets/iD/iD/locales/de.json
vendored
|
@ -615,10 +615,22 @@
|
|||
"name": "Flughafen",
|
||||
"terms": "Flughafen"
|
||||
},
|
||||
"aeroway/apron": {
|
||||
"name": "Vorfeld"
|
||||
},
|
||||
"aeroway/hangar": {
|
||||
"name": "Hangar"
|
||||
},
|
||||
"aeroway/helipad": {
|
||||
"name": "Hubschrauberlandeplatz",
|
||||
"terms": "Heliport"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "Piste"
|
||||
},
|
||||
"aeroway/taxiway": {
|
||||
"name": "Rollweg"
|
||||
},
|
||||
"amenity": {
|
||||
"name": "Einrichtungen"
|
||||
},
|
||||
|
@ -674,6 +686,9 @@
|
|||
"name": "Krankenhaus",
|
||||
"terms": "Klinik, Notaufnahme, Gesundheitswesen, Hospiz, Krankenhaus, Pflegeheim, Altersheim, Nervenheilanstalt, Sanatorium, Lazarett, Chirurgie, Krankenstation"
|
||||
},
|
||||
"amenity/kindergarten": {
|
||||
"name": "Kindergaten"
|
||||
},
|
||||
"amenity/library": {
|
||||
"name": "Bibliothek"
|
||||
},
|
||||
|
@ -1045,9 +1060,15 @@
|
|||
"man_made/pier": {
|
||||
"name": "Steg"
|
||||
},
|
||||
"man_made/pipeline": {
|
||||
"name": "Pipeline"
|
||||
},
|
||||
"man_made/survey_point": {
|
||||
"name": "Vermessungspunkt"
|
||||
},
|
||||
"man_made/tower": {
|
||||
"name": "Turm"
|
||||
},
|
||||
"man_made/wastewater_plant": {
|
||||
"name": "Kläranlage",
|
||||
"terms": "Kläranlage, Abwasseranlage, Abwasserreinigungsanlage, Wasseraufbereitungsanlage"
|
||||
|
|
58
vendor/assets/iD/iD/locales/es.json
vendored
58
vendor/assets/iD/iD/locales/es.json
vendored
|
@ -462,6 +462,12 @@
|
|||
"historic": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "ICAO"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Pendiente"
|
||||
},
|
||||
|
@ -488,6 +494,9 @@
|
|||
"levels": {
|
||||
"label": "Niveles"
|
||||
},
|
||||
"location": {
|
||||
"label": "Localización"
|
||||
},
|
||||
"man_made": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
|
@ -590,6 +599,9 @@
|
|||
"tourism": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
"towertype": {
|
||||
"label": "Tipo de torre"
|
||||
},
|
||||
"tracktype": {
|
||||
"label": "Tipo"
|
||||
},
|
||||
|
@ -626,10 +638,31 @@
|
|||
"name": "Aéropuerto",
|
||||
"terms": "avión,aeropuerto,aeródromo"
|
||||
},
|
||||
"aeroway/apron": {
|
||||
"name": "Plataforma de estacionamiento",
|
||||
"terms": "Área de estacionamiento de aeronaves"
|
||||
},
|
||||
"aeroway/gate": {
|
||||
"name": "Puerta de embarque"
|
||||
},
|
||||
"aeroway/hangar": {
|
||||
"name": "Hangar"
|
||||
},
|
||||
"aeroway/helipad": {
|
||||
"name": "Helipuerto",
|
||||
"terms": "helicóptero,plataforma de aterrizaje,helipuerto"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "Pista",
|
||||
"terms": "pista de aterrizaje"
|
||||
},
|
||||
"aeroway/taxiway": {
|
||||
"name": "Pista de rodaje"
|
||||
},
|
||||
"aeroway/terminal": {
|
||||
"name": "Terminal de aeropuerto",
|
||||
"terms": "aeropuerto,aeródromo"
|
||||
},
|
||||
"amenity": {
|
||||
"name": "Servicios"
|
||||
},
|
||||
|
@ -660,6 +693,9 @@
|
|||
"name": "Cine",
|
||||
"terms": "pantalla,cine,película,film,filmografía,gran pantalla, séptimo arte,cinematrografía"
|
||||
},
|
||||
"amenity/college": {
|
||||
"name": "Universidad"
|
||||
},
|
||||
"amenity/courthouse": {
|
||||
"name": "Palacio de Justicia"
|
||||
},
|
||||
|
@ -685,6 +721,10 @@
|
|||
"name": "Hospital",
|
||||
"terms": "clínica,urgencias,servicio de salud,ambulatorio,hospicio,centro médico,enfermería,sanatorio,consultorio,dispensario"
|
||||
},
|
||||
"amenity/kindergarten": {
|
||||
"name": "Jardín de infancia",
|
||||
"terms": "preescolar,parvulario,guardería.kinder"
|
||||
},
|
||||
"amenity/library": {
|
||||
"name": "Biblioteca"
|
||||
},
|
||||
|
@ -753,7 +793,8 @@
|
|||
"terms": "ayuntamiento,casa consistorial,edificio municipal,alcaldía,corporación,concejo, consistorio,cabildo"
|
||||
},
|
||||
"amenity/university": {
|
||||
"name": "Universidad"
|
||||
"name": "Universidad",
|
||||
"terms": "universidad"
|
||||
},
|
||||
"amenity/waste_basket": {
|
||||
"name": "Papelera",
|
||||
|
@ -1073,15 +1114,27 @@
|
|||
"man_made": {
|
||||
"name": "Hecho por el hombre"
|
||||
},
|
||||
"man_made/breakwater": {
|
||||
"name": "Rompeolas"
|
||||
},
|
||||
"man_made/cutline": {
|
||||
"name": "Cortafuegos"
|
||||
},
|
||||
"man_made/lighthouse": {
|
||||
"name": "Faro"
|
||||
},
|
||||
"man_made/pier": {
|
||||
"name": "Embarcadero"
|
||||
},
|
||||
"man_made/pipeline": {
|
||||
"name": "Tubería"
|
||||
},
|
||||
"man_made/survey_point": {
|
||||
"name": "Vértice geodésico"
|
||||
},
|
||||
"man_made/tower": {
|
||||
"name": "Torre"
|
||||
},
|
||||
"man_made/wastewater_plant": {
|
||||
"name": "Planta depuradora de aguas",
|
||||
"terms": "estación depuradora,depuradora de aguas residuales,planta de tratamiento de aguas,estación de tratamiento de aguas,Estación depuradora de aguas residuales,EDAR,PTAR"
|
||||
|
@ -1089,6 +1142,9 @@
|
|||
"man_made/water_tower": {
|
||||
"name": "Torre de agua"
|
||||
},
|
||||
"man_made/water_well": {
|
||||
"name": "Pozo de agua"
|
||||
},
|
||||
"man_made/water_works": {
|
||||
"name": "Trabajos hídricos"
|
||||
},
|
||||
|
|
52
vendor/assets/iD/iD/locales/fr.json
vendored
52
vendor/assets/iD/iD/locales/fr.json
vendored
|
@ -462,6 +462,12 @@
|
|||
"historic": {
|
||||
"label": "Type"
|
||||
},
|
||||
"iata": {
|
||||
"label": "IATA"
|
||||
},
|
||||
"icao": {
|
||||
"label": "OACI"
|
||||
},
|
||||
"incline": {
|
||||
"label": "Pente"
|
||||
},
|
||||
|
@ -488,6 +494,9 @@
|
|||
"levels": {
|
||||
"label": "Niveaux"
|
||||
},
|
||||
"location": {
|
||||
"label": "Lieu"
|
||||
},
|
||||
"man_made": {
|
||||
"label": "Type"
|
||||
},
|
||||
|
@ -590,6 +599,9 @@
|
|||
"tourism": {
|
||||
"label": "Type"
|
||||
},
|
||||
"towertype": {
|
||||
"label": "Type de tour"
|
||||
},
|
||||
"tracktype": {
|
||||
"label": "Type"
|
||||
},
|
||||
|
@ -626,10 +638,31 @@
|
|||
"name": "Aéroport",
|
||||
"terms": "avion, aéroport, aérodrome, aeroclub"
|
||||
},
|
||||
"aeroway/apron": {
|
||||
"name": "Aire de stationnement",
|
||||
"terms": "Aire de stationnement"
|
||||
},
|
||||
"aeroway/gate": {
|
||||
"name": "Porte d'embarquement"
|
||||
},
|
||||
"aeroway/hangar": {
|
||||
"name": "Hangar"
|
||||
},
|
||||
"aeroway/helipad": {
|
||||
"name": "Héliport",
|
||||
"terms": "hélicoptère, hélisurface, héliport"
|
||||
},
|
||||
"aeroway/runway": {
|
||||
"name": "Piste d'atterissage",
|
||||
"terms": "Bande d'atterissage"
|
||||
},
|
||||
"aeroway/taxiway": {
|
||||
"name": "Taxiway"
|
||||
},
|
||||
"aeroway/terminal": {
|
||||
"name": "Terminal aéroportuaire",
|
||||
"terms": "aéroport,aérodrome"
|
||||
},
|
||||
"amenity": {
|
||||
"name": "Équipements"
|
||||
},
|
||||
|
@ -685,6 +718,10 @@
|
|||
"name": "Hôpital",
|
||||
"terms": "clinique, CHU, centre hospitalier, hôpital, infirmerie, hospice, cabinet, maison de repos, urgences, soins"
|
||||
},
|
||||
"amenity/kindergarten": {
|
||||
"name": "Ecole maternelle",
|
||||
"terms": "crêche"
|
||||
},
|
||||
"amenity/library": {
|
||||
"name": "Bibliothèque"
|
||||
},
|
||||
|
@ -1073,15 +1110,27 @@
|
|||
"man_made": {
|
||||
"name": "Édifices"
|
||||
},
|
||||
"man_made/breakwater": {
|
||||
"name": "Brise-lames"
|
||||
},
|
||||
"man_made/cutline": {
|
||||
"name": "Ligne de coupe"
|
||||
},
|
||||
"man_made/lighthouse": {
|
||||
"name": "Phare"
|
||||
},
|
||||
"man_made/pier": {
|
||||
"name": "Jetée"
|
||||
},
|
||||
"man_made/pipeline": {
|
||||
"name": "Pipeline"
|
||||
},
|
||||
"man_made/survey_point": {
|
||||
"name": "Poteau de triangulation"
|
||||
},
|
||||
"man_made/tower": {
|
||||
"name": "Tour"
|
||||
},
|
||||
"man_made/wastewater_plant": {
|
||||
"name": "Station d'épuration",
|
||||
"terms": "épuration, eaux usées"
|
||||
|
@ -1089,6 +1138,9 @@
|
|||
"man_made/water_tower": {
|
||||
"name": "Château d'eau"
|
||||
},
|
||||
"man_made/water_well": {
|
||||
"name": "Puits"
|
||||
},
|
||||
"man_made/water_works": {
|
||||
"name": "Station de pompage d'eau potable"
|
||||
},
|
||||
|
|
399
vendor/assets/iD/iD/locales/hr.json
vendored
399
vendor/assets/iD/iD/locales/hr.json
vendored
|
@ -1,18 +1,73 @@
|
|||
{
|
||||
"presets": {
|
||||
"categories": {
|
||||
"category-landuse": {
|
||||
"name": "Uporaba zemlje"
|
||||
},
|
||||
"category-path": {
|
||||
"name": "Staza"
|
||||
},
|
||||
"category-rail": {
|
||||
"name": "Pruga"
|
||||
},
|
||||
"category-road": {
|
||||
"name": "Cesta"
|
||||
},
|
||||
"category-water": {
|
||||
"name": "Voda"
|
||||
}
|
||||
},
|
||||
"fields": {
|
||||
"access": {
|
||||
"label": "Pristup",
|
||||
"types": {
|
||||
"foot": "Pješice",
|
||||
"motor_vehicle": "Morotna vozila",
|
||||
"bicycle": "Bicikli",
|
||||
"horse": "Konji"
|
||||
},
|
||||
"options": {
|
||||
"yes": {
|
||||
"title": "Dozvoljeno",
|
||||
"description": "Regulirano zakonom, pravilo desne strane"
|
||||
},
|
||||
"no": {
|
||||
"title": "Zabranjeno",
|
||||
"description": "Pristup nije dozvoljen javnosti"
|
||||
},
|
||||
"permissive": {
|
||||
"description": "Pristup dozvoljen dok vlasnik ne zabrani"
|
||||
},
|
||||
"private": {
|
||||
"title": "Privatno",
|
||||
"description": "Pristup dozvoljen samo s dozvolom vlasnika na pojedinačnoj bazi"
|
||||
},
|
||||
"designated": {
|
||||
"title": "Označeno",
|
||||
"description": "Pristup dozvoljen prema znakovima ili prema lokalnom zakonu"
|
||||
},
|
||||
"destination": {
|
||||
"title": "Destinacija",
|
||||
"description": "Pristup dozvoljen samo za pristup destinaciji"
|
||||
}
|
||||
}
|
||||
},
|
||||
"address": {
|
||||
"label": "Adresa",
|
||||
"placeholders": {
|
||||
"housename": "Naziv građevine",
|
||||
"number": "123",
|
||||
"street": "Ulica",
|
||||
"city": "Grad"
|
||||
"city": "Grad",
|
||||
"postcode": "Poštanski broj"
|
||||
}
|
||||
},
|
||||
"atm": {
|
||||
"label": "Bankomat"
|
||||
},
|
||||
"barrier": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"building": {
|
||||
"label": "Građevina"
|
||||
},
|
||||
|
@ -25,6 +80,15 @@
|
|||
"capacity": {
|
||||
"label": "Kapacitet"
|
||||
},
|
||||
"cardinal_direction": {
|
||||
"label": "Smijer"
|
||||
},
|
||||
"clock_direction": {
|
||||
"options": {
|
||||
"clockwise": "U smijeru kazaljke za satu",
|
||||
"anticlockwise": "U suprotnom smijeru od kazaljke na satu"
|
||||
}
|
||||
},
|
||||
"country": {
|
||||
"label": "Država"
|
||||
},
|
||||
|
@ -34,12 +98,18 @@
|
|||
"denomination": {
|
||||
"label": "Vjeroispovijed"
|
||||
},
|
||||
"denotation": {
|
||||
"label": "Denotacija"
|
||||
},
|
||||
"elevation": {
|
||||
"label": "Visina"
|
||||
},
|
||||
"emergency": {
|
||||
"label": "Hitna pomoć"
|
||||
},
|
||||
"entrance": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"fax": {
|
||||
"label": "Fax"
|
||||
},
|
||||
|
@ -49,18 +119,35 @@
|
|||
"internet_access": {
|
||||
"label": "Dostupan internet",
|
||||
"options": {
|
||||
"wlan": "Wifi"
|
||||
"wlan": "Wifi",
|
||||
"wired": "Žično",
|
||||
"terminal": "Terminal"
|
||||
}
|
||||
},
|
||||
"landuse": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"lanes": {
|
||||
"label": "Broj traka"
|
||||
},
|
||||
"layer": {
|
||||
"label": "Sloj"
|
||||
},
|
||||
"leisure": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"levels": {
|
||||
"label": "Razina"
|
||||
},
|
||||
"man_made": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"maxspeed": {
|
||||
"label": "Ograničenje brzine"
|
||||
},
|
||||
"name": {
|
||||
"label": "Ime"
|
||||
},
|
||||
"natural": {
|
||||
"label": "Priroda"
|
||||
},
|
||||
|
@ -70,18 +157,39 @@
|
|||
"note": {
|
||||
"label": "Bilješka"
|
||||
},
|
||||
"office": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"oneway": {
|
||||
"label": "Jednosmjerna"
|
||||
},
|
||||
"oneway_yes": {
|
||||
"label": "Jednosmjerno"
|
||||
},
|
||||
"opening_hours": {
|
||||
"label": "Sati"
|
||||
},
|
||||
"operator": {
|
||||
"label": "Operator"
|
||||
},
|
||||
"parking": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"phone": {
|
||||
"label": "Telefon"
|
||||
},
|
||||
"place": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"power": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"railway": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"ref": {
|
||||
"label": "Broj ceste"
|
||||
},
|
||||
"religion": {
|
||||
"label": "Religija",
|
||||
"options": {
|
||||
|
@ -94,9 +202,15 @@
|
|||
"taoist": "Taoistički"
|
||||
}
|
||||
},
|
||||
"service": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"shelter": {
|
||||
"label": "Sklonište"
|
||||
},
|
||||
"shop": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"source": {
|
||||
"label": "Izvor"
|
||||
},
|
||||
|
@ -112,17 +226,38 @@
|
|||
"cutting": "Usjek"
|
||||
}
|
||||
},
|
||||
"supervised": {
|
||||
"label": "Pod nadzorom"
|
||||
},
|
||||
"surface": {
|
||||
"label": "Površina"
|
||||
},
|
||||
"tourism": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"tracktype": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"water": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"waterway": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"website": {
|
||||
"label": "Web stranica"
|
||||
},
|
||||
"wetland": {
|
||||
"label": "Tip"
|
||||
},
|
||||
"wheelchair": {
|
||||
"label": "Pristup s invalidskim kolicima"
|
||||
},
|
||||
"wikipedia": {
|
||||
"label": "Wikipedia"
|
||||
},
|
||||
"wood": {
|
||||
"label": "Tip"
|
||||
}
|
||||
},
|
||||
"presets": {
|
||||
|
@ -130,10 +265,15 @@
|
|||
"name": "Pista"
|
||||
},
|
||||
"aeroway/aerodrome": {
|
||||
"name": "Zračna luka"
|
||||
"name": "Zračna luka",
|
||||
"terms": "zrakoplov,zračna luka, zračna luka"
|
||||
},
|
||||
"aeroway/helipad": {
|
||||
"name": "Heliodrom"
|
||||
"name": "Heliodrom",
|
||||
"terms": "helikopter,heliodrom,heliodrom"
|
||||
},
|
||||
"amenity": {
|
||||
"name": "Usluge"
|
||||
},
|
||||
"amenity/bank": {
|
||||
"name": "Banka"
|
||||
|
@ -151,7 +291,11 @@
|
|||
"name": "Najam bicikla"
|
||||
},
|
||||
"amenity/cafe": {
|
||||
"name": "Kafić"
|
||||
"name": "Kafić",
|
||||
"terms": "kava,čaj,"
|
||||
},
|
||||
"amenity/car_wash": {
|
||||
"name": "Autopraonica"
|
||||
},
|
||||
"amenity/cinema": {
|
||||
"name": "Kino"
|
||||
|
@ -168,6 +312,9 @@
|
|||
"amenity/fire_station": {
|
||||
"name": "Vatrogasna postaja"
|
||||
},
|
||||
"amenity/fountain": {
|
||||
"name": "Fontana"
|
||||
},
|
||||
"amenity/fuel": {
|
||||
"name": "Benzinska postaja"
|
||||
},
|
||||
|
@ -196,10 +343,12 @@
|
|||
"name": "Crkva"
|
||||
},
|
||||
"amenity/place_of_worship/jewish": {
|
||||
"name": "Sinagoga"
|
||||
"name": "Sinagoga",
|
||||
"terms": "židovsko,sinagoga"
|
||||
},
|
||||
"amenity/place_of_worship/muslim": {
|
||||
"name": "Džamija"
|
||||
"name": "Džamija",
|
||||
"terms": "muslimansko,džamija"
|
||||
},
|
||||
"amenity/police": {
|
||||
"name": "Policija"
|
||||
|
@ -226,7 +375,8 @@
|
|||
"name": "Telefon"
|
||||
},
|
||||
"amenity/theatre": {
|
||||
"name": "Kazalište"
|
||||
"name": "Kazalište",
|
||||
"terms": "kazalište,performans,sviranje,glazbeno"
|
||||
},
|
||||
"amenity/toilets": {
|
||||
"name": "Toalet"
|
||||
|
@ -237,6 +387,9 @@
|
|||
"amenity/university": {
|
||||
"name": "Sveučilište"
|
||||
},
|
||||
"amenity/waste_basket": {
|
||||
"name": "Kanta za smeće"
|
||||
},
|
||||
"barrier": {
|
||||
"name": "Prepreka"
|
||||
},
|
||||
|
@ -255,6 +408,9 @@
|
|||
"barrier/ditch": {
|
||||
"name": "Prokop"
|
||||
},
|
||||
"barrier/entrance": {
|
||||
"name": "Ulaz"
|
||||
},
|
||||
"barrier/fence": {
|
||||
"name": "Ograda"
|
||||
},
|
||||
|
@ -267,9 +423,15 @@
|
|||
"barrier/lift_gate": {
|
||||
"name": "Rampa"
|
||||
},
|
||||
"barrier/toll_booth": {
|
||||
"name": "Naplatna kućica"
|
||||
},
|
||||
"barrier/wall": {
|
||||
"name": "Zid"
|
||||
},
|
||||
"boundary/administrative": {
|
||||
"name": "Administrativne granice"
|
||||
},
|
||||
"building": {
|
||||
"name": "Zgrada"
|
||||
},
|
||||
|
@ -288,11 +450,15 @@
|
|||
"highway": {
|
||||
"name": "Prometnica"
|
||||
},
|
||||
"highway/bridleway": {
|
||||
"name": "Staza za konje"
|
||||
},
|
||||
"highway/bus_stop": {
|
||||
"name": "Autobusna stanica"
|
||||
},
|
||||
"highway/crossing": {
|
||||
"name": "Križanje"
|
||||
"name": "Križanje",
|
||||
"terms": "Pješački prijelaz"
|
||||
},
|
||||
"highway/cycleway": {
|
||||
"name": "Biciklistička staza"
|
||||
|
@ -300,29 +466,69 @@
|
|||
"highway/footway": {
|
||||
"name": "Pješačka staza"
|
||||
},
|
||||
"highway/living_street": {
|
||||
"name": "Područje smirenog prometa"
|
||||
},
|
||||
"highway/mini_roundabout": {
|
||||
"name": "Mali kružno tok"
|
||||
},
|
||||
"highway/motorway": {
|
||||
"name": "Autoput"
|
||||
"name": "Autocesta"
|
||||
},
|
||||
"highway/motorway_junction": {
|
||||
"name": "Sjecište autoceste"
|
||||
},
|
||||
"highway/motorway_link": {
|
||||
"name": "Pristupna cesta autoceste"
|
||||
},
|
||||
"highway/path": {
|
||||
"name": "Staza"
|
||||
},
|
||||
"highway/pedestrian": {
|
||||
"name": "Pješački"
|
||||
},
|
||||
"highway/primary": {
|
||||
"name": "Primarna cesta"
|
||||
"name": "Državna cesta"
|
||||
},
|
||||
"highway/primary_link": {
|
||||
"name": "Pristupna cesta državne ceste"
|
||||
},
|
||||
"highway/residential": {
|
||||
"name": "Lokalna cesta"
|
||||
"name": "Gradska ceste"
|
||||
},
|
||||
"highway/road": {
|
||||
"name": "Nepoznata cesta"
|
||||
},
|
||||
"highway/secondary": {
|
||||
"name": "Županijska cesta"
|
||||
},
|
||||
"highway/secondary_link": {
|
||||
"name": "Pristupna cesta županijske ceste"
|
||||
},
|
||||
"highway/service": {
|
||||
"name": "Servisna cesta"
|
||||
},
|
||||
"highway/steps": {
|
||||
"name": "Stepenice",
|
||||
"terms": "stepenište"
|
||||
},
|
||||
"highway/tertiary": {
|
||||
"name": "Lokalna cesta"
|
||||
},
|
||||
"highway/tertiary_link": {
|
||||
"name": "Pristupna cesta lokalne ceste"
|
||||
},
|
||||
"highway/track": {
|
||||
"name": "Put"
|
||||
},
|
||||
"highway/traffic_signals": {
|
||||
"name": "Prometni znak"
|
||||
"name": "Semafor"
|
||||
},
|
||||
"highway/turning_circle": {
|
||||
"name": "Kružni tok"
|
||||
},
|
||||
"highway/unclassified": {
|
||||
"name": "Neklasificirana cesta"
|
||||
"name": "Nerazvrstana cesta"
|
||||
},
|
||||
"historic": {
|
||||
"name": "Povijesno područje"
|
||||
|
@ -336,6 +542,9 @@
|
|||
"historic/castle": {
|
||||
"name": "Dvorac"
|
||||
},
|
||||
"historic/memorial": {
|
||||
"name": "Spomenik"
|
||||
},
|
||||
"historic/monument": {
|
||||
"name": "Spomenik"
|
||||
},
|
||||
|
@ -348,6 +557,9 @@
|
|||
"landuse/allotments": {
|
||||
"name": "Vrtovi"
|
||||
},
|
||||
"landuse/basin": {
|
||||
"name": "Bazen kišnice"
|
||||
},
|
||||
"landuse/cemetery": {
|
||||
"name": "Groblje"
|
||||
},
|
||||
|
@ -396,6 +608,9 @@
|
|||
"leisure/golf_course": {
|
||||
"name": "Golf tečaj"
|
||||
},
|
||||
"leisure/marina": {
|
||||
"name": "Marina"
|
||||
},
|
||||
"leisure/park": {
|
||||
"name": "Park"
|
||||
},
|
||||
|
@ -426,15 +641,30 @@
|
|||
"leisure/swimming_pool": {
|
||||
"name": "Sportski bazen"
|
||||
},
|
||||
"man_made": {
|
||||
"name": "Ljudske tvorevine"
|
||||
},
|
||||
"man_made/lighthouse": {
|
||||
"name": "Svjetionik"
|
||||
},
|
||||
"man_made/pier": {
|
||||
"name": "Mol"
|
||||
},
|
||||
"man_made/survey_point": {
|
||||
"name": "Geodetske točke"
|
||||
},
|
||||
"man_made/tower": {
|
||||
"name": "Toranj"
|
||||
},
|
||||
"man_made/wastewater_plant": {
|
||||
"name": "Pogon za prečisćivanje otpadnih voda"
|
||||
},
|
||||
"man_made/water_tower": {
|
||||
"name": "Vodo-toranj"
|
||||
},
|
||||
"man_made/water_works": {
|
||||
"name": "Vodocrpilište"
|
||||
},
|
||||
"natural": {
|
||||
"name": "Priroda"
|
||||
},
|
||||
|
@ -457,12 +687,18 @@
|
|||
"natural/grassland": {
|
||||
"name": "Travnjak"
|
||||
},
|
||||
"natural/heath": {
|
||||
"name": "Zdravstvo"
|
||||
},
|
||||
"natural/peak": {
|
||||
"name": "Planinski vrh"
|
||||
},
|
||||
"natural/scrub": {
|
||||
"name": "Šikara"
|
||||
},
|
||||
"natural/spring": {
|
||||
"name": "Izvor"
|
||||
},
|
||||
"natural/tree": {
|
||||
"name": "Stablo"
|
||||
},
|
||||
|
@ -496,6 +732,9 @@
|
|||
"place": {
|
||||
"name": "Mjesto"
|
||||
},
|
||||
"place/city": {
|
||||
"name": "Grad s više od 100 000 stanovnika"
|
||||
},
|
||||
"place/hamlet": {
|
||||
"name": "Zaseok"
|
||||
},
|
||||
|
@ -505,9 +744,18 @@
|
|||
"place/locality": {
|
||||
"name": "Lokalitet"
|
||||
},
|
||||
"place/town": {
|
||||
"name": "Grad s manje od 100 000 stanovnika"
|
||||
},
|
||||
"place/village": {
|
||||
"name": "Selo"
|
||||
},
|
||||
"power/generator": {
|
||||
"name": "Elektrana"
|
||||
},
|
||||
"power/line": {
|
||||
"name": "Energetska mreža"
|
||||
},
|
||||
"power/sub_station": {
|
||||
"name": "Podzemna postaja"
|
||||
},
|
||||
|
@ -517,6 +765,18 @@
|
|||
"railway": {
|
||||
"name": "Željeznička pruga"
|
||||
},
|
||||
"railway/abandoned": {
|
||||
"name": "Napuštena pruga"
|
||||
},
|
||||
"railway/disused": {
|
||||
"name": "Pruga izvan uporabe"
|
||||
},
|
||||
"railway/level_crossing": {
|
||||
"name": "Željeznično-cestovni prijelaz"
|
||||
},
|
||||
"railway/platform": {
|
||||
"name": "Željeznički peron"
|
||||
},
|
||||
"railway/rail": {
|
||||
"name": "Željeznica"
|
||||
},
|
||||
|
@ -538,18 +798,60 @@
|
|||
"shop/bakery": {
|
||||
"name": "Pekara"
|
||||
},
|
||||
"shop/beauty": {
|
||||
"name": "Kozmetičar"
|
||||
},
|
||||
"shop/beverages": {
|
||||
"name": "Trgovina s pićima"
|
||||
},
|
||||
"shop/bicycle": {
|
||||
"name": "prodavaonica bicikala"
|
||||
},
|
||||
"shop/books": {
|
||||
"name": "Knjižara"
|
||||
},
|
||||
"shop/boutique": {
|
||||
"name": "Butik"
|
||||
},
|
||||
"shop/butcher": {
|
||||
"name": "Mesnica"
|
||||
},
|
||||
"shop/car": {
|
||||
"name": "Prodavaonica automobila"
|
||||
},
|
||||
"shop/car_parts": {
|
||||
"name": "Trgovina rezevnih dijelova za automobile"
|
||||
},
|
||||
"shop/car_repair": {
|
||||
"name": "Automehaničar"
|
||||
},
|
||||
"shop/chemist": {
|
||||
"name": "Drogerija"
|
||||
},
|
||||
"shop/clothes": {
|
||||
"name": "Prodavaonica odjeće"
|
||||
},
|
||||
"shop/computer": {
|
||||
"name": "Prodavaonica računala"
|
||||
},
|
||||
"shop/confectionery": {
|
||||
"name": "Slastičarnica"
|
||||
},
|
||||
"shop/convenience": {
|
||||
"name": "Kvartovska trgovina"
|
||||
},
|
||||
"shop/deli": {
|
||||
"name": "Prodavaonica delikatesa"
|
||||
},
|
||||
"shop/doityourself": {
|
||||
"name": "Uradi sam"
|
||||
},
|
||||
"shop/dry_cleaning": {
|
||||
"name": "Kemijska čistionica"
|
||||
},
|
||||
"shop/electronics": {
|
||||
"name": "Prodavaonica elektronike"
|
||||
},
|
||||
"shop/fishmonger": {
|
||||
"name": "Ribarnica"
|
||||
},
|
||||
|
@ -562,33 +864,102 @@
|
|||
"shop/garden_centre": {
|
||||
"name": "Vrtni centar"
|
||||
},
|
||||
"shop/gift": {
|
||||
"name": "Suvenirnica"
|
||||
},
|
||||
"shop/greengrocer": {
|
||||
"name": "Voćarna"
|
||||
},
|
||||
"shop/hairdresser": {
|
||||
"name": "Frizerski salon"
|
||||
},
|
||||
"shop/hardware": {
|
||||
"name": "Željezarija"
|
||||
},
|
||||
"shop/hifi": {
|
||||
"name": "Prodavaonica audio opreme"
|
||||
},
|
||||
"shop/jewelry": {
|
||||
"name": "Zlatarnica"
|
||||
},
|
||||
"shop/kiosk": {
|
||||
"name": "Kiosk"
|
||||
},
|
||||
"shop/laundry": {
|
||||
"name": "Praonica rublja"
|
||||
},
|
||||
"shop/mall": {
|
||||
"name": "Trgovački centar"
|
||||
},
|
||||
"shop/mobile_phone": {
|
||||
"name": "Prodavaonica mobilnih telefona"
|
||||
},
|
||||
"shop/motorcycle": {
|
||||
"name": "Prodavaonica motocikala"
|
||||
},
|
||||
"shop/music": {
|
||||
"name": "Prodavaonica glazbene opreme"
|
||||
},
|
||||
"shop/newsagent": {
|
||||
"name": "Prodavaonica novina"
|
||||
},
|
||||
"shop/optician": {
|
||||
"name": "Optičar"
|
||||
},
|
||||
"shop/outdoor": {
|
||||
"name": "Prodavaonica planinarske opreme"
|
||||
},
|
||||
"shop/pet": {
|
||||
"name": "Prodavaonica kućnim ljubimcima"
|
||||
},
|
||||
"shop/shoes": {
|
||||
"name": "Prodavaonica obuće"
|
||||
},
|
||||
"shop/sports": {
|
||||
"name": "Prodavaonica sportske opreme"
|
||||
},
|
||||
"shop/stationery": {
|
||||
"name": "Knjižara"
|
||||
},
|
||||
"shop/supermarket": {
|
||||
"name": "Veletrgovina"
|
||||
},
|
||||
"shop/toys": {
|
||||
"name": "Prodavaonica igračaka"
|
||||
},
|
||||
"shop/travel_agency": {
|
||||
"name": "Putnička agencija"
|
||||
},
|
||||
"shop/tyres": {
|
||||
"name": "Prodavaonica pneumaticima"
|
||||
},
|
||||
"shop/video": {
|
||||
"name": "Videoteka"
|
||||
},
|
||||
"tourism": {
|
||||
"name": "Turizam"
|
||||
},
|
||||
"tourism/alpine_hut": {
|
||||
"name": "Planinska kuća"
|
||||
},
|
||||
"tourism/artwork": {
|
||||
"name": "Umjetničko djelo"
|
||||
},
|
||||
"tourism/attraction": {
|
||||
"name": "Turistička atrakcija"
|
||||
},
|
||||
"tourism/camp_site": {
|
||||
"name": "Kamp"
|
||||
},
|
||||
"tourism/caravan_site": {
|
||||
"name": "Parkiralište za kamp kućice"
|
||||
},
|
||||
"tourism/chalet": {
|
||||
"name": "Bungalov"
|
||||
},
|
||||
"tourism/guest_house": {
|
||||
"name": "Gostinjska kuća"
|
||||
},
|
||||
"tourism/hostel": {
|
||||
"name": "Hostel"
|
||||
},
|
||||
|
|
229
vendor/assets/iD/iD/locales/is.json
vendored
Normal file
229
vendor/assets/iD/iD/locales/is.json
vendored
Normal file
|
@ -0,0 +1,229 @@
|
|||
{
|
||||
"modes": {
|
||||
"add_area": {
|
||||
"title": "Svæði",
|
||||
"description": "Bættu landsvæðum, byggingum, vötnum eða öðrum svæðum á kortið.",
|
||||
"tail": "Smelltu á kortið til að teikna svæði, til dæmis garð, vatn eða byggingu."
|
||||
},
|
||||
"add_line": {
|
||||
"title": "Lína",
|
||||
"description": "Bætu þjóðvegum, götum, göngustígum, síkjum eða öðrum línum við kortið.",
|
||||
"tail": "Smelltu á kortið til að byrja á að teikna línu, svo sem veg, slóða eða leið."
|
||||
},
|
||||
"add_point": {
|
||||
"title": "Punktur",
|
||||
"description": "Bættu veitingastöðum, minnismerkjum, póstkössum eða öðrum punktum við kortið.",
|
||||
"tail": "Smelltu á kortið til að bæta við punkti."
|
||||
},
|
||||
"browse": {
|
||||
"title": "Fletta",
|
||||
"description": "Færðu og þysjaðu kortið."
|
||||
}
|
||||
},
|
||||
"operations": {
|
||||
"add": {
|
||||
"annotation": {
|
||||
"point": "Bætti punkti við.",
|
||||
"vertex": "Bætti hnút við leið."
|
||||
}
|
||||
},
|
||||
"start": {
|
||||
"annotation": {
|
||||
"line": "Byrjaði á línu.",
|
||||
"area": "Byrjaði á svæði."
|
||||
}
|
||||
},
|
||||
"continue": {
|
||||
"annotation": {
|
||||
"line": "Hélt áfram með línu.",
|
||||
"area": "Hélt áfram með svæði."
|
||||
}
|
||||
},
|
||||
"cancel_draw": {
|
||||
"annotation": "Hætti við að teikna."
|
||||
},
|
||||
"change_tags": {
|
||||
"annotation": "Breytti merkingum."
|
||||
},
|
||||
"circularize": {
|
||||
"title": "Hringlaga",
|
||||
"key": "O",
|
||||
"annotation": {
|
||||
"line": "Gerði línu að hring.",
|
||||
"area": "Gerði svæði að hring."
|
||||
}
|
||||
},
|
||||
"orthogonalize": {
|
||||
"title": "Rétta horn af",
|
||||
"description": "Rétta þessi horn.",
|
||||
"key": "Q",
|
||||
"annotation": {
|
||||
"line": "Réttaði horn á línu.",
|
||||
"area": "Réttaði horn svæðis."
|
||||
}
|
||||
},
|
||||
"delete": {
|
||||
"title": "Eyða",
|
||||
"description": "Fjarlægja af korti.",
|
||||
"annotation": {
|
||||
"point": "Eyddi punkti.",
|
||||
"vertex": "Eyddi hnút af leið.",
|
||||
"line": "Eyddi línu.",
|
||||
"area": "Eyddi svæði.",
|
||||
"relation": "Eyddi tengslum.",
|
||||
"multiple": "Eyddi {n} hlutum."
|
||||
}
|
||||
},
|
||||
"connect": {
|
||||
"annotation": {
|
||||
"point": "Tengdi leið við punkt.",
|
||||
"vertex": "Tengdi leið við aðra leið.",
|
||||
"line": "Tengdi leið við línu.",
|
||||
"area": "Tengdi leið við svæði."
|
||||
}
|
||||
},
|
||||
"disconnect": {
|
||||
"title": "Aftengja",
|
||||
"key": "D"
|
||||
},
|
||||
"merge": {
|
||||
"title": "Sameina",
|
||||
"description": "Sameina þessar línur.",
|
||||
"key": "C",
|
||||
"annotation": "Sameinaði {n} línur."
|
||||
},
|
||||
"move": {
|
||||
"title": "Færa",
|
||||
"description": "Færa þetta á annan stað.",
|
||||
"key": "M",
|
||||
"annotation": {
|
||||
"point": "Færði punkt.",
|
||||
"vertex": "Færði hnút á leið.",
|
||||
"line": "Færði línu.",
|
||||
"area": "Færði svæði.",
|
||||
"multiple": "Færði marga hluti."
|
||||
}
|
||||
},
|
||||
"rotate": {
|
||||
"title": "Snúa",
|
||||
"description": "Snúa þessum hlut um miðjupunkt hans.",
|
||||
"key": "R",
|
||||
"annotation": {
|
||||
"line": "Snéri línu.",
|
||||
"area": "Snéri svæði."
|
||||
}
|
||||
},
|
||||
"reverse": {
|
||||
"title": "Öfugt",
|
||||
"description": "Láta þessa línu fara í öfuga átt.",
|
||||
"key": "V",
|
||||
"annotation": "Snéri línu."
|
||||
},
|
||||
"split": {
|
||||
"title": "Aðskilja",
|
||||
"key": "X"
|
||||
}
|
||||
},
|
||||
"nothing_to_undo": "Ekkert til að hætta við.",
|
||||
"nothing_to_redo": "Ekkert til að endurtaka.",
|
||||
"just_edited": "Þú hefur breytt OpenStreetMap!",
|
||||
"browser_notice": "Þessi ritill er studdur af Firefox, Chrome, Safari, Opera og Internet Explorer 9 og betri. Vinsamlegast uppfærðu vafrann þinn eða notaðu Potlatch 2 til að breyta kortinu.",
|
||||
"zoom_in_edit": "þysja inn til að breyta kortinu",
|
||||
"logout": "útskrá",
|
||||
"report_a_bug": "tilkynna villu",
|
||||
"status": {
|
||||
"error": "Get ekki tengst við API.",
|
||||
"offline": "API er ekki tiltækur. Vinsamlegast reyndu að breyta aftur síðar.",
|
||||
"readonly": "API er í lesham. Þú þarft að bíða með að vista breytingar."
|
||||
},
|
||||
"commit": {
|
||||
"title": "Vista breytingar",
|
||||
"description_placeholder": "Stutt lýsing á breytingum þínum",
|
||||
"message_label": "Staðfesta boð",
|
||||
"upload_explanation": "Breytingarnar sem þú gerir sem {user} verða sýnilegar á öllum kortum sem nota OpenStreetMap gögn.",
|
||||
"save": "Vista",
|
||||
"cancel": "Hætta við",
|
||||
"warnings": "Aðvaranir",
|
||||
"modified": "Breytt",
|
||||
"deleted": "Eytt",
|
||||
"created": "Búið til"
|
||||
},
|
||||
"contributors": {
|
||||
"list": "Innsent af {users}",
|
||||
"truncated_list": "Innsent af {users} og {count} öðrum"
|
||||
},
|
||||
"geocoder": {
|
||||
"title": "Finna stað",
|
||||
"placeholder": "Finna stað",
|
||||
"no_results": "Fann ekki stað með nafninu '{name}'"
|
||||
},
|
||||
"geolocate": {
|
||||
"title": "Sýna mína staðsetningu"
|
||||
},
|
||||
"inspector": {
|
||||
"no_documentation_combination": "Það er ekki til skjölun fyrir þessar samsettu merkingar",
|
||||
"no_documentation_key": "Það er ekki til skjölun fyrir þennan efnislykil",
|
||||
"show_more": "Sýna meira",
|
||||
"new_tag": "Ný merking",
|
||||
"editing_feature": "Breyti {feature}",
|
||||
"all_tags": "Öll merki",
|
||||
"choose": "Veldu tegund",
|
||||
"results": "{n} niðurstöður fyrir {leit}",
|
||||
"back_tooltip": "Breyta tegund",
|
||||
"remove": "Fjarlægja",
|
||||
"search": "Leita"
|
||||
},
|
||||
"background": {
|
||||
"title": "Bakgrunnur",
|
||||
"description": "Bakgrunnsstillingar",
|
||||
"percent_brightness": "{opacity}% birta",
|
||||
"fix_misalignment": "Laga hliðrun",
|
||||
"reset": "endurstilla"
|
||||
},
|
||||
"restore": {
|
||||
"heading": "Þú átt óvistaðar breytingar",
|
||||
"restore": "Endurvekja",
|
||||
"reset": "Endurstilla"
|
||||
},
|
||||
"save": {
|
||||
"title": "Vista",
|
||||
"help": "Vista breytingar á OpenStreetMap, þær verða sýnilegar öðrum notendum.",
|
||||
"no_changes": "Engar breytingar til að vista.",
|
||||
"error": "Villa kom upp þegar reynt var að vista",
|
||||
"uploading": "Hleð breytingum inn á OpenStreetMap.",
|
||||
"unsaved_changes": "Þú átt óvistaðar breytingar"
|
||||
},
|
||||
"splash": {
|
||||
"welcome": "Velkomin/n í iD ritil OpenStreetMap",
|
||||
"text": "iD er notandavænt tæki til að bæta við besta fría kortagrunn heimsins. Þetta er þróunarútgáfa {version}. Þú getur fengið meiri upplýsingar á vefnum {website} og tilkynnt villur {github}."
|
||||
},
|
||||
"source_switch": {
|
||||
"live": "raun",
|
||||
"lose_changes": "Þú átt óvistaðar breytingar. Að skipta um kortaþjón mun henda þeim. Ertu viss um að þú viljir skipta um kortaþjón?",
|
||||
"dev": "þróun"
|
||||
},
|
||||
"tag_reference": {
|
||||
"description": "Lýsing",
|
||||
"on_wiki": "{tag} á wiki.osm.org",
|
||||
"used_with": "notað með {type}"
|
||||
},
|
||||
"validations": {
|
||||
"untagged_line": "Ómerkt lína",
|
||||
"untagged_area": "Ómerkt svæði",
|
||||
"many_deletions": "Þú ert að eyða {n} hlutum. Viltu gera þetta? Þetta mun eyða þeim af kortinu sem allir nota á openstreetmap.org.",
|
||||
"tag_suggests_area": "Merkingin {tag} þýðir að línan ætti að vera svæði, en hún er ekki svæði",
|
||||
"deprecated_tags": "Úrelt merki: {tags}"
|
||||
},
|
||||
"zoom": {
|
||||
"in": "Þysja inn",
|
||||
"out": "Þysja út"
|
||||
},
|
||||
"gpx": {
|
||||
"local_layer": "Staðvær GPX-skrá",
|
||||
"drag_drop": "Dragðu og slepptu .gpx skrá á síðuna"
|
||||
},
|
||||
"help": {
|
||||
"title": "Hjálp",
|
||||
"help": "# Hjálp\n\nÞetta er ritill fyrir [OpenStreetMap](http://www.openstreetmap.org/), \nfrítt og breytanlegt kort af heiminum. Þú getur notað ritilinn til að \nbæta við og breyta gögnum á þínu svæði. Þannig geturðu bætt þetta\nopen-source og open-data verkefni fyrir alla.\n\nBreytingar sem þú gerir á þessu korti verða sýnilegar öllum sem nota\nOpenStreetMap. Til að geta gert breytingar þarftu \n[ókeypis OpenStreetMap notandanafn](https://www.openstreetmap.org/user/new).\n\n[iD ritillinn](http://ideditor.com/) er samstarfsverkefni hvers [frumkóði er \naðgengilegur á GitHub](https://github.com/systemed/iD).\n"
|
||||
}
|
||||
}
|
2
vendor/assets/iD/iD/locales/pl.json
vendored
2
vendor/assets/iD/iD/locales/pl.json
vendored
|
@ -65,7 +65,7 @@
|
|||
"not_closed": "Z tego nie można zrobić okręgu, bo nie jest pętlą."
|
||||
},
|
||||
"orthogonalize": {
|
||||
"title": "Ortogonalizuj",
|
||||
"title": "Koryguj prostopadłość",
|
||||
"description": "Wyprostuj ramiona tych kątów.",
|
||||
"key": "Q",
|
||||
"annotation": {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue