summaryrefslogtreecommitdiffstats
path: root/modules-available/locationinfo
diff options
context:
space:
mode:
authorJannik Schönartz2016-11-26 20:51:20 +0100
committerJannik Schönartz2016-11-26 20:51:20 +0100
commit60171b46d5b984e30e2ec5967c49457a0292d3e4 (patch)
tree7a316f59f2d9b200a48ce259f64b0b83f05094f0 /modules-available/locationinfo
parentfixes, support for time over config... (diff)
downloadslx-admin-60171b46d5b984e30e2ec5967c49457a0292d3e4.tar.gz
slx-admin-60171b46d5b984e30e2ec5967c49457a0292d3e4.tar.xz
slx-admin-60171b46d5b984e30e2ec5967c49457a0292d3e4.zip
Rotation but fixed.
Diffstat (limited to 'modules-available/locationinfo')
-rw-r--r--modules-available/locationinfo/lang/de/template-tags.json6
-rw-r--r--modules-available/locationinfo/lang/en/template-tags.json6
-rw-r--r--modules-available/locationinfo/templates/config.html6
3 files changed, 9 insertions, 9 deletions
diff --git a/modules-available/locationinfo/lang/de/template-tags.json b/modules-available/locationinfo/lang/de/template-tags.json
index 7bf7d7aa..9f3f0304 100644
--- a/modules-available/locationinfo/lang/de/template-tags.json
+++ b/modules-available/locationinfo/lang/de/template-tags.json
@@ -45,9 +45,9 @@
"lang_switchTimeTooltip": "[1-120] Die Zeit die vergeht bis ein wechsel erfolgt in modus 4 (in sekunden)",
"lang_rotation": "Rotation",
"lang_rotation0": "0°",
- "lang_rotation1": "+90°",
- "lang_rotation2": "+180°",
- "lang_rotation3": "-90°",
+ "lang_rotation1": "90° ⟲",
+ "lang_rotation2": "180°",
+ "lang_rotation3": "90° ⟳",
"lang_vertical": "Vertikal",
"lang_calupdate": "Kalender update rate",
"lang_calupdateTooltip": "Zeit nachdem der Kalender geupdated wird (in minutes)",
diff --git a/modules-available/locationinfo/lang/en/template-tags.json b/modules-available/locationinfo/lang/en/template-tags.json
index a9837717..3a7e8632 100644
--- a/modules-available/locationinfo/lang/en/template-tags.json
+++ b/modules-available/locationinfo/lang/en/template-tags.json
@@ -45,9 +45,9 @@
"lang_switchTimeTooltip": "[1-120] Sets the time between switching in mode 4 (in seconds)",
"lang_rotation": "Rotation",
"lang_rotation0": "0°",
- "lang_rotation1": "+90°",
- "lang_rotation2": "+180°",
- "lang_rotation3": "-90°",
+ "lang_rotation1": "90° ⟲",
+ "lang_rotation2": "180°",
+ "lang_rotation3": "90° ⟳",
"lang_vertical": "Vertical",
"lang_calupdate": "Calendar update rate",
"lang_calupdateTooltip": "Time the calender querys for updates (in minutes)",
diff --git a/modules-available/locationinfo/templates/config.html b/modules-available/locationinfo/templates/config.html
index ee30dee3..6df69cdc 100644
--- a/modules-available/locationinfo/templates/config.html
+++ b/modules-available/locationinfo/templates/config.html
@@ -43,9 +43,9 @@
<Label>{{lang_rotation}}</Label><br>
<select name="rotation">
<option value="0" id="rotation0">{{lang_rotation0}}</option>
- <option value="1" id="rotation1">{{lang_rotation1}}</option>
- <option value="2" id="rotation2">{{lang_rotation2}}</option>
<option value="3" id="rotation3">{{lang_rotation3}}</option>
+ <option value="2" id="rotation2">{{lang_rotation2}}</option>
+ <option value="1" id="rotation1">{{lang_rotation1}}</option>
</select>
</div>
@@ -110,7 +110,7 @@ function loadValues() {
var rotation = $("#{{rotation}}");
if (!rotation.length) {
- rotation = $("#rotation1");
+ rotation = $("#rotation0");
}
rotation.attr("selected","selected");