summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--i18n.cpp4
-rw-r--r--pages/remote.ecpp9
2 files changed, 7 insertions, 6 deletions
diff --git a/i18n.cpp b/i18n.cpp
index 2961abb..77164a4 100644
--- a/i18n.cpp
+++ b/i18n.cpp
@@ -223,8 +223,8 @@ const tI18nPhrase Phrases[] = {
"", // Dansk
"", // Czech
},
- { "Interval:", // English
- "Intervall:", // Deutsch
+ { "Interval", // English
+ "Intervall", // Deutsch
"", // Slovenski
"", // Italiano
"", // Nederlands
diff --git a/pages/remote.ecpp b/pages/remote.ecpp
index 9b405a6..c8293aa 100644
--- a/pages/remote.ecpp
+++ b/pages/remote.ecpp
@@ -72,7 +72,7 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
</head>
<body onload="StreamInit(); FillIntervals(); LiveStatusAjaxRequest('infobox.html', 'infobox')">
<& pageelems.logo &>
- <& menu active="remote" &>
+ <& menu active="remote" component=("remote.remote_actions")>
<div class="inhalt">
<div class="screenshot">
<img src="screenshot.jpg" name="vdrlive" /><br />
@@ -110,10 +110,11 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
<area href="#" shape="rect" coords="110,310,137,323" alt="Blue" onclick="KeyPress(<$ kBlue $>)" nohref="nohref" />
</map>
</div>
- <div>
- <$ tr("Interval:") $> <select name="interval" onchange="ChangeInterval()"></select>
- </div>
</div>
</body>
</html>
<%include>page_exit.eh</%include>
+
+<%def remote_actions>
+<$ tr("Interval") $>: <select name="interval" onchange="ChangeInterval()"></select>
+</%def>