diff --git a/data/presets.yaml b/data/presets.yaml index 92e13426e6..79de5580d7 100644 --- a/data/presets.yaml +++ b/data/presets.yaml @@ -542,6 +542,9 @@ en: historic: # historic=* label: Type + historic/civilization: + # 'historic:civilization=*' + label: Historic Civilization hoops: # hoops=* label: Hoops diff --git a/data/presets/fields.json b/data/presets/fields.json index ccf16b5f96..d1b7eb7331 100644 --- a/data/presets/fields.json +++ b/data/presets/fields.json @@ -749,6 +749,11 @@ "type": "typeCombo", "label": "Type" }, + "historic/civilization": { + "key": "historic:civilization", + "type": "combo", + "label": "Historic Civilization" + }, "hoops": { "key": "hoops", "type": "number", diff --git a/data/presets/fields/historic/civilization.json b/data/presets/fields/historic/civilization.json new file mode 100644 index 0000000000..8410791a0e --- /dev/null +++ b/data/presets/fields/historic/civilization.json @@ -0,0 +1,5 @@ +{ + "key": "historic:civilization", + "type": "combo", + "label": "Historic Civilization" +} diff --git a/data/presets/presets.json b/data/presets/presets.json index 63e47278aa..b0555f4cb6 100644 --- a/data/presets/presets.json +++ b/data/presets/presets.json @@ -5818,6 +5818,9 @@ "name": "Historic Site" }, "historic/archaeological_site": { + "fields": [ + "historic/civilization" + ], "geometry": [ "point", "vertex", @@ -5842,7 +5845,8 @@ "icon": "castle", "fields": [ "castle_type", - "building_area" + "building_area", + "historic/civilization" ], "geometry": [ "point", @@ -5878,6 +5882,9 @@ "name": "Monument" }, "historic/ruins": { + "fields": [ + "historic/civilization" + ], "geometry": [ "point", "vertex", diff --git a/data/presets/presets/historic/archaeological_site.json b/data/presets/presets/historic/archaeological_site.json index 401f886d78..3b219c2647 100644 --- a/data/presets/presets/historic/archaeological_site.json +++ b/data/presets/presets/historic/archaeological_site.json @@ -1,4 +1,7 @@ { + "fields": [ + "historic/civilization" + ], "geometry": [ "point", "vertex", @@ -8,4 +11,4 @@ "historic": "archaeological_site" }, "name": "Archaeological Site" -} \ No newline at end of file +} diff --git a/data/presets/presets/historic/castle.json b/data/presets/presets/historic/castle.json index 8b38554aea..882fbad5cd 100644 --- a/data/presets/presets/historic/castle.json +++ b/data/presets/presets/historic/castle.json @@ -2,7 +2,8 @@ "icon": "castle", "fields": [ "castle_type", - "building_area" + "building_area", + "historic/civilization" ], "geometry": [ "point", diff --git a/data/presets/presets/historic/ruins.json b/data/presets/presets/historic/ruins.json index 6a8936aa5b..605319348c 100644 --- a/data/presets/presets/historic/ruins.json +++ b/data/presets/presets/historic/ruins.json @@ -1,4 +1,7 @@ { + "fields": [ + "historic/civilization" + ], "geometry": [ "point", "vertex", @@ -8,4 +11,4 @@ "historic": "ruins" }, "name": "Ruins" -} \ No newline at end of file +} diff --git a/dist/locales/en.json b/dist/locales/en.json index ed3a11c467..ecd4f13f1d 100644 --- a/dist/locales/en.json +++ b/dist/locales/en.json @@ -1204,6 +1204,9 @@ "historic": { "label": "Type" }, + "historic/civilization": { + "label": "Historic Civilization" + }, "hoops": { "label": "Hoops", "placeholder": "1, 2, 4..."