From f6670a8d6f45d79fa802f02bf19720458043c645 Mon Sep 17 00:00:00 2001 From: OliNau <19350388+OliNau@users.noreply.github.com> Date: Wed, 4 May 2022 14:56:00 +0200 Subject: [PATCH] Fixed typo and added additional mounting options 1. Fixed typo (one -> on) 2. Added camera:mount=street_lamp because it's the fourth most used tag and shown on the wiki 3. Added camera:mount=tree because it's a logical tag that can be used quite a number of times in my vicinity (not often used though) --- .../surveillance_camera.json | 24 +++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) diff --git a/assets/layers/surveillance_camera/surveillance_camera.json b/assets/layers/surveillance_camera/surveillance_camera.json index a1e789544..cea34d79c 100644 --- a/assets/layers/surveillance_camera/surveillance_camera.json +++ b/assets/layers/surveillance_camera/surveillance_camera.json @@ -436,7 +436,7 @@ { "if": "camera:mount=pole", "then": { - "en": "This camera is placed one a pole", + "en": "This camera is placed on a pole", "nl": "Deze camera staat op een paal", "fr": "Cette caméra est placée sur un poteau", "it": "Questa telecamera è posizionata su un palo", @@ -452,6 +452,26 @@ "it": "Questa telecamera è posizionata sul soffitto", "de": "Diese Kamera ist an der Decke montiert" } + }, + { + "if": "camera:mount=street_lamp", + "then": { + "en": "This camera is placed on a street light", + "nl": "Deze camera staat op een straatlantaarn", + "fr": "Cette caméra est placée sur un lampadaire", + "it": "Questa telecamera è posizionata su un lampione", + "de": "Diese Kamera befindet sich an einer Straßenlaterne" + } + }, + { + "if": "camera:mount=tree", + "then": { + "en": "This camera is placed on a tree", + "nl": "Deze camera staat op een boom", + "fr": "Cette caméra est placée sur un arbre", + "it": "Questa telecamera è posizionata su un albero", + "de": "Diese Kamera ist an einem Baum angebracht" + } } ], "id": "camera:mount" @@ -550,4 +570,4 @@ "nl": "Deze laag toont bewakingscamera's en laat toe om de informatie te verrijken en om nieuwe camera\"s toe te voegen", "de": "Diese Ebene zeigt die Überwachungskameras an und ermöglicht es, Informationen zu aktualisieren und neue Kameras hinzuzufügen" } -} \ No newline at end of file +}