diff --git a/public/images/icon-ASDEK.svg b/public/images/icon-ASDEK.svg
new file mode 100644
index 0000000..9fc1ac7
--- /dev/null
+++ b/public/images/icon-ASDEK.svg
@@ -0,0 +1,4 @@
+
diff --git a/src/components/SceneryView/SceneryInfo/SceneryInfoIcons.vue b/src/components/SceneryView/SceneryInfo/SceneryInfoIcons.vue
index c06f5af..b7c23fc 100644
--- a/src/components/SceneryView/SceneryInfo/SceneryInfoIcons.vue
+++ b/src/components/SceneryView/SceneryInfo/SceneryInfoIcons.vue
@@ -28,14 +28,6 @@
>
-
-
+
+
+
+
+
+
diff --git a/src/locales/en.json b/src/locales/en.json
index 11ae77d..0039d70 100644
--- a/src/locales/en.json
+++ b/src/locales/en.json
@@ -251,7 +251,8 @@
"control-type": "Control type: ",
"signals-type": "Signals type: ",
"SBL": "This scenery has automatic block signalling (ABS/SBL) system on following routes: ",
- "SUP": "Requires the SUP application (level crossing remote control simulator)",
+ "SUP": "Requires the SUP program (level crossing remote control)",
+ "ASDEK": "Requires the ASDEK program (defect detection of moving rolling stock)",
"TWB-all": "This scenery has two-way route blockade on all routes",
"TWB-routes": "This scenery has two-way route blockade on following routes: ",
"default": "This scenery is available by default",
diff --git a/src/locales/pl.json b/src/locales/pl.json
index 13b9e4e..2a4e090 100644
--- a/src/locales/pl.json
+++ b/src/locales/pl.json
@@ -245,6 +245,7 @@
"signals-type": "Sygnalizacja: ",
"SBL": "Sceneria posiada SBL na szlakach: ",
"SUP": "Wymaga programu SUP do kontroli systemu RASP-UZK",
+ "ASDEK": "Wymaga programu ASDEK do detekcji stanów awaryjnych taboru w ruchu",
"default": "Sceneria dostępna domyślnie w paczce z grą",
"non-public": "Sceneria niepubliczna",
"unavailable": "Sceneria niedostępna",
diff --git a/src/scripts/interfaces/Station.ts b/src/scripts/interfaces/Station.ts
index 921952a..453f07e 100644
--- a/src/scripts/interfaces/Station.ts
+++ b/src/scripts/interfaces/Station.ts
@@ -21,6 +21,7 @@ export default interface Station {
controlType: string;
SUP: boolean;
+ ASDEK: boolean;
authors?: string[];
availability: Availability;
|