diff --git a/data/presets.yaml b/data/presets.yaml index a34f9f6ac..73f91ba11 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -1051,6 +1051,11 @@ en: ref_stop_position: # ref=* label: Stop Number + ref_taxiway: + # ref=* + label: Taxiway Name + # ref_taxiway field placeholder + placeholder: e.g A5 relation: # type=* label: Type diff --git a/data/presets/fields.json b/data/presets/fields.json index 169c78d44..6d7e0c431 100644 --- a/data/presets/fields.json +++ b/data/presets/fields.json @@ -1404,6 +1404,12 @@ "type": "text", "label": "Stop Number" }, + "ref_taxiway": { + "key": "ref", + "type": "text", + "label": "Taxiway Name", + "placeholder": "e.g A5" + }, "ref": { "key": "ref", "type": "text", diff --git a/data/presets/fields/ref_taxiway.json b/data/presets/fields/ref_taxiway.json new file mode 100644 index 000000000..a38d1a84d --- /dev/null +++ b/data/presets/fields/ref_taxiway.json @@ -0,0 +1,6 @@ +{ + "key": "ref", + "type": "text", + "label": "Taxiway Name", + "placeholder": "e.g A5" +} diff --git a/data/presets/presets.json b/data/presets/presets.json index 7d520bbb3..8efc678f5 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -482,7 +482,7 @@ "line" ], "fields": [ - "ref", + "ref_taxiway", "surface" ], "tags": { diff --git a/data/presets/presets/aeroway/taxiway.json b/data/presets/presets/aeroway/taxiway.json index 2f389be5d..3882deaba 100644 --- a/data/presets/presets/aeroway/taxiway.json +++ b/data/presets/presets/aeroway/taxiway.json @@ -3,7 +3,7 @@ "line" ], "fields": [ - "ref", + "ref_taxiway", "surface" ], "tags": { diff --git a/dist/locales/en.json b/dist/locales/en.json index 778a60c0a..0928c72a3 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -1956,6 +1956,10 @@ "ref_stop_position": { "label": "Stop Number" }, + "ref_taxiway": { + "label": "Taxiway Name", + "placeholder": "e.g A5" + }, "ref": { "label": "Reference Code" },