From 125ed79296be3423a3efe282e451c5d949f4698b Mon Sep 17 00:00:00 2001 From: Norwin Date: Fri, 3 Sep 2021 15:38:35 +0200 Subject: [PATCH] creator: add new location_type value "transition" (#61) * creator: add new location_type value "transition" * creator: add transition filter to location listing --- public/creator/templates/location/create.html | 1 + public/creator/templates/location/edit.html | 1 + public/creator/templates/location/list.html | 1 + public/translations/en_US.js | 2 ++ 4 files changed, 5 insertions(+) diff --git a/public/creator/templates/location/create.html b/public/creator/templates/location/create.html index e694a88..650cf37 100644 --- a/public/creator/templates/location/create.html +++ b/public/creator/templates/location/create.html @@ -65,6 +65,7 @@ id="location_type" required> + diff --git a/public/creator/templates/location/edit.html b/public/creator/templates/location/edit.html index fc34016..dda6088 100644 --- a/public/creator/templates/location/edit.html +++ b/public/creator/templates/location/edit.html @@ -65,6 +65,7 @@ id="location_type" required> + diff --git a/public/creator/templates/location/list.html b/public/creator/templates/location/list.html index bc36bfe..a35dc5c 100644 --- a/public/creator/templates/location/list.html +++ b/public/creator/templates/location/list.html @@ -39,6 +39,7 @@ + {{ 'FILTER_BY' | translate }} diff --git a/public/translations/en_US.js b/public/translations/en_US.js index 814f722..e4ce8b6 100644 --- a/public/translations/en_US.js +++ b/public/translations/en_US.js @@ -54,6 +54,8 @@ app.constant("en_US", { CONNECTED: 'connected', ABSTRACT: 'abstract', _ABSTRACT: 'Abstract', + TRANSITION: 'transition', + _TRANSITION: 'Transition', INDOOR: 'indoor', _INDOOR: 'Indoor', OUTDOOR: 'outdoor',