From 4cf240cb6faa33f1e51d1040ee6162f245525f8f Mon Sep 17 00:00:00 2001 From: Christian Wieninger Date: Mon, 7 Sep 2009 19:13:48 +0200 Subject: new user management within setup that also handles different user rights --- Makefile | 3 +- doc/ChangeLog | 4 +++ live.cpp | 8 ++++- pages/Makefile | 2 +- pages/edit_searchtimer.ecpp | 4 +++ pages/edit_timer.ecpp | 4 +++ pages/login.ecpp | 5 ++- pages/menu.ecpp | 1 + pages/play_recording.ecpp | 3 ++ pages/remote.ecpp | 4 +++ pages/searchtimers.ecpp | 6 +++- pages/setup.ecpp | 10 ++++-- pages/switch_channel.ecpp | 4 +++ pages/timers.ecpp | 3 ++ pages/vlc.ecpp | 3 ++ po/ca_ES.po | 63 ++++++++++++++++++++++++++++++++-- po/cs_CZ.po | 63 ++++++++++++++++++++++++++++++++-- po/da_DK.po | 63 ++++++++++++++++++++++++++++++++-- po/de_DE.po | 70 +++++++++++++++++++++++++++++++++++--- po/el_GR.po | 63 ++++++++++++++++++++++++++++++++-- po/es_ES.po | 63 ++++++++++++++++++++++++++++++++-- po/et_EE.po | 63 ++++++++++++++++++++++++++++++++-- po/fi_FI.po | 82 +++++++++++++++++++++++++++++++++++++++++++-- po/fr_FR.po | 82 +++++++++++++++++++++++++++++++++++++++++++-- po/hr_HR.po | 63 ++++++++++++++++++++++++++++++++-- po/hu_HU.po | 63 ++++++++++++++++++++++++++++++++-- po/it_IT.po | 82 +++++++++++++++++++++++++++++++++++++++++++-- po/nl_NL.po | 74 ++++++++++++++++++++++++++++++++++++++-- po/nn_NO.po | 63 ++++++++++++++++++++++++++++++++-- po/pl_PL.po | 63 ++++++++++++++++++++++++++++++++-- po/pt_PT.po | 63 ++++++++++++++++++++++++++++++++-- po/ro_RO.po | 63 ++++++++++++++++++++++++++++++++-- po/ru_RU.po | 63 ++++++++++++++++++++++++++++++++-- po/sl_SI.po | 63 ++++++++++++++++++++++++++++++++-- po/sv_SE.po | 63 ++++++++++++++++++++++++++++++++-- po/tr_TR.po | 63 ++++++++++++++++++++++++++++++++-- 36 files changed, 1390 insertions(+), 72 deletions(-) diff --git a/Makefile b/Makefile index 62cf856..71ecae5 100644 --- a/Makefile +++ b/Makefile @@ -73,7 +73,8 @@ VERSIONSUFFIX = gen_version_suffix.h PLUGINOBJS = $(PLUGIN).o thread.o tntconfig.o setup.o i18n.o timers.o \ tools.o recman.o tasks.o status.o epg_events.o epgsearch.o \ - grab.o md5.o filecache.o livefeatures.o preload.o timerconflict.o + grab.o md5.o filecache.o livefeatures.o preload.o timerconflict.o \ + users.o WEBLIBS = pages/libpages.a css/libcss.a javascript/libjavascript.a diff --git a/doc/ChangeLog b/doc/ChangeLog index e7b207f..d2ac030 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -1,3 +1,7 @@ +2009-09-07 Christian Wieninger + * new user management within setup that also handles different + user rights + 2008-11-19 Christian Wieninger * new setup option to display channels without EPG diff --git a/live.cpp b/live.cpp index f18949c..32a69b6 100644 --- a/live.cpp +++ b/live.cpp @@ -1,5 +1,5 @@ /* - * httpd.c: A plugin for the Video Disk Recorder + * live.cpp: A plugin for the Video Disk Recorder * * See the README file for copyright information and how to reach the author. * @@ -15,6 +15,7 @@ #include "thread.h" #include "timers.h" #include "preload.h" +#include "users.h" namespace vdrlive { @@ -25,6 +26,8 @@ const char *Plugin::DESCRIPTION = LIVESUMMARY; std::string Plugin::m_configDirectory; +cUsers Users; + Plugin::Plugin(void) { } @@ -52,6 +55,9 @@ bool Plugin::Start(void) // preload files into file Cache PreLoadFileCache(m_configDirectory); + // load users + Users.Load(AddDirectory(m_configDirectory.c_str(), "users.conf"), true); + // XXX error handling m_thread.reset( new ServerThread ); m_thread->Start(); diff --git a/pages/Makefile b/pages/Makefile index f7512f5..c49c673 100644 --- a/pages/Makefile +++ b/pages/Makefile @@ -17,7 +17,7 @@ OBJS = menu.o recordings.o schedule.o screenshot.o timers.o \ searchepg.o login.o ibox.o xmlresponse.o play_recording.o \ pause_recording.o stop_recording.o ffw_recording.o \ rwd_recording.o setup.o content.o epginfo.o timerconflicts.o \ - recstream.o + recstream.o users.o edit_user.o ### Default rules: diff --git a/pages/edit_searchtimer.ecpp b/pages/edit_searchtimer.ecpp index fbd2cce..69103a1 100644 --- a/pages/edit_searchtimer.ecpp +++ b/pages/edit_searchtimer.ecpp @@ -10,6 +10,7 @@ #include "epgsearch.h" #include "setup.h" #include "i18n.h" +#include "users.h" using namespace std; using namespace vdrlive; @@ -99,6 +100,9 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); }> <%cpp> + if (!cUser::CurrentUserHasRightTo(UR_EDITSTIMERS)) + throw HtmlError( tr("Sorry, no permission. Please contact your administrator!") ); + #define SELECTIF(x) reply.out() << ( (x) ? "selected=\"selected\"" : "" ); #define CHECKIF(x) reply.out() << ( (x) ? "checked=\"checked\"" : "" ); diff --git a/pages/edit_timer.ecpp b/pages/edit_timer.ecpp index 47a6766..299f35a 100644 --- a/pages/edit_timer.ecpp +++ b/pages/edit_timer.ecpp @@ -13,6 +13,7 @@ #include "i18n.h" #include "livefeatures.h" #include "epgsearch.h" +#include "users.h" using namespace std; using namespace vdrlive; @@ -57,6 +58,9 @@ cTimer* timer; <%cpp> if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); + if (!cUser::CurrentUserHasRightTo(UR_EDITTIMERS)) + throw HtmlError( tr("Sorry, no permission. Please contact your administrator!") ); + bool ajaxReq = !async.empty() && (lexical_cast(async) != 0); tChannelID channelid = tChannelID(); diff --git a/pages/login.ecpp b/pages/login.ecpp index 754ec82..a49f1fa 100644 --- a/pages/login.ecpp +++ b/pages/login.ecpp @@ -1,6 +1,7 @@ <%pre> #include "tools.h" #include "setup.h" +#include "users.h" using namespace std; using namespace vdrlive; @@ -19,13 +20,15 @@ bool logged_in(false); std::string message; if (action == "login") { - if ((login == LiveSetup().GetAdminLogin()) && (MD5Hash(password) == LiveSetup().GetMD5HashAdminPassword())) { + if (Users.ValidLogin(login, password)) { logged_in = true; + cUsers::logged_in_user = login; } else { message = tr("Wrong username or password"); } } else if (action == "logout") { logged_in = false; + cUsers::logged_in_user = ""; } LiveSetup().CheckLocalNet(request.getPeerIp()); diff --git a/pages/menu.ecpp b/pages/menu.ecpp index a998169..1159014 100644 --- a/pages/menu.ecpp +++ b/pages/menu.ecpp @@ -96,6 +96,7 @@ if (!component.empty()) { <& menu.component current=("recordings") &> <& menu.component current=("remote") &> + <& menu.component current=("users") &> diff --git a/pages/play_recording.ecpp b/pages/play_recording.ecpp index 5a26b41..1f018de 100644 --- a/pages/play_recording.ecpp +++ b/pages/play_recording.ecpp @@ -5,6 +5,7 @@ #include "setup.h" #include "tasks.h" #include "tools.h" +#include "users.h" using namespace std; using namespace vdrlive; @@ -18,6 +19,8 @@ using namespace vdrlive; <%cpp> if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); + if (!cUser::CurrentUserHasRightTo(UR_STARTREPLAY)) + throw HtmlError( tr("Sorry, no permission. Please contact your administrator!") ); reply.setContentType( "application/xml" ); PlayRecordingTask task( param ); diff --git a/pages/remote.ecpp b/pages/remote.ecpp index dd45cd0..dc0bf13 100644 --- a/pages/remote.ecpp +++ b/pages/remote.ecpp @@ -6,6 +6,7 @@ #include "grab.h" #include "setup.h" #include "tools.h" +#include "users.h" using namespace std; using namespace vdrlive; @@ -25,6 +26,9 @@ bool logged_in(false); if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); }> <%cpp> + if (!cUser::CurrentUserHasRightTo(UR_USEREMOTE)) + throw HtmlError( tr("Sorry, no permission. Please contact your administrator!") ); + pageTitle = tr("Remote Control"); ReadLock channelsLock( Channels ); diff --git a/pages/searchtimers.ecpp b/pages/searchtimers.ecpp index fc2eaf8..dc8bc53 100644 --- a/pages/searchtimers.ecpp +++ b/pages/searchtimers.ecpp @@ -4,6 +4,7 @@ #include "epgsearch.h" #include "tools.h" #include "setup.h" +#include "users.h" using namespace vdrlive; using namespace std; @@ -27,8 +28,11 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); if ( !searchtimerid.empty() ) { if (action == "toggle") timers.ToggleActive(searchtimerid); - if (action == "delete") + if (action == "delete") { + if (!cUser::CurrentUserHasRightTo(UR_DELSTIMERS)) + throw HtmlError( tr("Sorry, no permission. Please contact your administrator!") ); timers.Delete(searchtimerid); + } } if (action == "update") timers.TriggerUpdate(); diff --git a/pages/setup.ecpp b/pages/setup.ecpp index cc1db8c..845e4b7 100644 --- a/pages/setup.ecpp +++ b/pages/setup.ecpp @@ -3,6 +3,7 @@ #include #include "setup.h" #include "tools.h" +#include "users.h" #include "i18n.h" using namespace vdrlive; @@ -33,7 +34,9 @@ using namespace std; <%include>page_init.eh <%cpp> -if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); +if (!logged_in && LiveSetup().UseAuth() ) return reply.redirect("login.html"); +if (!cUser::CurrentUserHasRightTo(UR_EDITSETUP)) + throw HtmlError( tr("Sorry, no permission. Please contact your administrator!") ); #define SELECTIF(x) reply.out() << ( (x) ? "selected=\"selected\"" : "" ); #define CHECKIF(x) reply.out() << ( (x) ? "checked=\"checked\"" : "" ); @@ -151,6 +154,10 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html");
<$ tr("Admin password") $>:
+ + + +
<$ tr("Local net (no login required)") $>:
@@ -282,4 +289,3 @@ if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); <%include>page_exit.eh - diff --git a/pages/switch_channel.ecpp b/pages/switch_channel.ecpp index 9b8b48b..2cffefc 100644 --- a/pages/switch_channel.ecpp +++ b/pages/switch_channel.ecpp @@ -3,6 +3,7 @@ #include "exception.h" #include "tasks.h" #include "tools.h" +#include "users.h" using namespace std; using namespace vdrlive; @@ -16,6 +17,9 @@ using namespace vdrlive; bool ajaxReq = !async.empty() && (lexical_cast(async) != 0); string referrer; + if (!cUser::CurrentUserHasRightTo(UR_SWITCHCHNL)) + throw HtmlError( tr("Sorry, no permission. Please contact your administrator!") ); + if (ajaxReq) { reply.setContentType( "application/xml" ); } diff --git a/pages/timers.ecpp b/pages/timers.ecpp index 93d2e91..2a9ee4c 100644 --- a/pages/timers.ecpp +++ b/pages/timers.ecpp @@ -8,6 +8,7 @@ #include "epg_events.h" #include "timerconflict.h" #include "livefeatures.h" +#include "users.h" using namespace std; using namespace vdrlive; @@ -44,6 +45,8 @@ static const size_t maximumDescriptionLength = 300; if ( timer == 0 ) throw HtmlError( tr("Couldn't find timer. Maybe you mistyped your request?") ); if (action == "delete") { + if (!cUser::CurrentUserHasRightTo(UR_DELTIMERS)) + throw HtmlError( tr("Sorry, no permission. Please contact your administrator!") ); LiveTimerManager().DelTimer(timer); timerNotifier.SetTimerModification(); } diff --git a/pages/vlc.ecpp b/pages/vlc.ecpp index 445cc94..065969c 100644 --- a/pages/vlc.ecpp +++ b/pages/vlc.ecpp @@ -4,6 +4,7 @@ #include #include "setup.h" #include "tools.h" +#include "users.h" using namespace std; using namespace vdrlive; @@ -23,6 +24,8 @@ using namespace vdrlive; <%include>page_init.eh <%cpp> if (!logged_in && LiveSetup().UseAuth()) return reply.redirect("login.html"); + if (!cUser::CurrentUserHasRightTo(UR_STARTREPLAY)) + throw HtmlError( tr("Sorry, no permission. Please contact your administrator!") ); bool asyncReq = !async.empty() && (lexical_cast(async) != 0); diff --git a/po/ca_ES.po b/po/ca_ES.po index 3de8bcd..2f0b0e2 100644 --- a/po/ca_ES.po +++ b/po/ca_ES.po @@ -125,6 +125,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -369,6 +372,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -417,9 +468,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -672,6 +720,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -735,6 +786,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/cs_CZ.po b/po/cs_CZ.po index b14492f..1671f19 100644 --- a/po/cs_CZ.po +++ b/po/cs_CZ.po @@ -123,6 +123,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -367,6 +370,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -415,9 +466,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -670,6 +718,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -733,6 +784,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/da_DK.po b/po/da_DK.po index c5801c1..c82a784 100644 --- a/po/da_DK.po +++ b/po/da_DK.po @@ -123,6 +123,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -367,6 +370,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -415,9 +466,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -670,6 +718,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -733,6 +784,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/de_DE.po b/po/de_DE.po index f7a01c9..6a890f9 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -125,6 +125,9 @@ msgstr "Timerkonflikte entdeckt" msgid "Couldn't aquire access to channels, please try again later." msgstr "Zugriff auf die Kanäle wurde verweigert. Bitte später versuchen." +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "Leider nicht erlaubt. Bitte kontaktieren Sie Ihren Administrator!" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "Keinen Suchtimer gefunden. Möglicherweise ein Tippfehler in der Anfrage?" @@ -369,6 +372,54 @@ msgstr "Neuen Timer anlegen" msgid "Weekday" msgstr "Wochentag" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "Konnte Benutzer nicht finden. Evtl. fehlerhafte Anforderung?" + +msgid "This user name is already in use!" +msgstr "Dieser Benutzername wird bereits verwendet!" + +msgid "Edit user" +msgstr "Benutzer bearbeiten" + +msgid "New user" +msgstr "Neuen Benutzer anlegen" + +msgid "Name" +msgstr "Name" + +msgid "Password" +msgstr "Passwort" + +msgid "User rights" +msgstr "Benutzerrechte" + +msgid "Edit setup" +msgstr "Einstellungen bearbeiten" + +msgid "Add or edit timers" +msgstr "Timer hinzufügen oder ändern" + +msgid "Delete timers" +msgstr "Timer löschen" + +msgid "Delete recordings" +msgstr "Aufnahmen löschen" + +msgid "Use remote menu" +msgstr "Menü Fernbedienung nutzen" + +msgid "Start replay" +msgstr "Wiedergabe starten" + +msgid "Switch channel" +msgstr "Zu diesem Kanal umschalten." + +msgid "Add or edit search timers" +msgstr "Suchtimer hinzufügen oder ändern" + +msgid "Delete search timers" +msgstr "Suchtimer löschen" + msgid "Electronic program guide information" msgstr "Elektronische Programminformation" @@ -417,9 +468,6 @@ msgstr "VDR Live Login" msgid "User" msgstr "Benutzer" -msgid "Password" -msgstr "Passwort" - msgid "What's on?" msgstr "Was läuft?" @@ -615,9 +663,8 @@ msgstr "Diese Aufnahme abspielen." msgid "Couldn't find channel or no channels available. Maybe you mistyped your request?" msgstr "Konnte Kanal nicht finden oder keine Kanäle verfügbar. Ist die Anfrage korrekt?" -#, fuzzy msgid "Snapshot interval" -msgstr "Bereich" +msgstr "Snapshot-Intervall" msgid "No schedules available for this channel" msgstr "Für diesen Kanal liegen keine EPG-Informationen vor" @@ -673,6 +720,9 @@ msgstr "Einstellungen gespeichert." msgid "Setup" msgstr "Einstellungen" +msgid "User management" +msgstr "Benutzerverwaltung" + msgid "Local net (no login required)" msgstr "Lokales Netz (keine Anmeldung notwendig)" @@ -736,6 +786,12 @@ msgstr "Keine Timer vorhanden" msgid "Timer is recording." msgstr "Timer zeichnet auf." +msgid "Users" +msgstr "Benutzer" + +msgid "Delete user" +msgstr "Benutzer löschen" + msgid "VLC: live video stream" msgstr "VLC: Video Stream" @@ -809,6 +865,10 @@ msgstr "" msgid "No EPG information available" msgstr "Keine EPG Daten vorhanden" +#, fuzzy +#~ msgid "Please set a name and password for the user!" +#~ msgstr "Bitte Login und Passwort angeben!" + #~ msgid "Interval" #~ msgstr "Intervall" diff --git a/po/el_GR.po b/po/el_GR.po index 861792a..12022ed 100644 --- a/po/el_GR.po +++ b/po/el_GR.po @@ -123,6 +123,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -367,6 +370,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -415,9 +466,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -670,6 +718,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -733,6 +784,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/es_ES.po b/po/es_ES.po index e18f423..3fb7d03 100644 --- a/po/es_ES.po +++ b/po/es_ES.po @@ -123,6 +123,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -367,6 +370,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -415,9 +466,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -670,6 +718,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -733,6 +784,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/et_EE.po b/po/et_EE.po index fc30e56..080f4f5 100644 --- a/po/et_EE.po +++ b/po/et_EE.po @@ -123,6 +123,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -367,6 +370,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -415,9 +466,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -670,6 +718,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -733,6 +784,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/fi_FI.po b/po/fi_FI.po index 8cc81b1..e52af4c 100644 --- a/po/fi_FI.po +++ b/po/fi_FI.po @@ -123,6 +123,9 @@ msgstr "p msgid "Couldn't aquire access to channels, please try again later." msgstr "Kanavien käyttäminen epäonnistui! Yritä myöhemmin uudelleen." +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "Hakuajastimia ei löydetä! Onko pyyntö oikein kirjoitettu?" @@ -367,6 +370,67 @@ msgstr "Luo uusi ajastin" msgid "Weekday" msgstr "Viikonpäivä" +#, fuzzy +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "Ajastinta ei löydy. Kirjoititko varmasti oikein?" + +msgid "This user name is already in use!" +msgstr "" + +#, fuzzy +msgid "Edit user" +msgstr "Muokkaa ajastinta" + +#, fuzzy +msgid "New user" +msgstr "Luo uusi ajastin" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "Salasana" + +#, fuzzy +msgid "User rights" +msgstr "Käyttäjä" + +#, fuzzy +msgid "Edit setup" +msgstr "Muokkaa ajastinta" + +#, fuzzy +msgid "Add or edit timers" +msgstr "Muokkaa ajastinta" + +#, fuzzy +msgid "Delete timers" +msgstr "Poista ajastin" + +#, fuzzy +msgid "Delete recordings" +msgstr "Poistettu tallenne:" + +#, fuzzy +msgid "Use remote menu" +msgstr "Käytä suosikkina" + +#, fuzzy +msgid "Start replay" +msgstr "Aloitussivu" + +#, fuzzy +msgid "Switch channel" +msgstr "Vaihda kanavalle" + +#, fuzzy +msgid "Add or edit search timers" +msgstr "Muokkaa hakuajastinta" + +#, fuzzy +msgid "Delete search timers" +msgstr "Poista hakuajastin" + msgid "Electronic program guide information" msgstr "Ohjelmaoppaan tiedot" @@ -415,9 +479,6 @@ msgstr "VDR Live - sis msgid "User" msgstr "Käyttäjä" -msgid "Password" -msgstr "Salasana" - msgid "What's on?" msgstr "Menossa?" @@ -672,6 +733,9 @@ msgstr "Asetukset tallennettu." msgid "Setup" msgstr "Asetukset" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "Paikallinen verkko (ei autentikointia)" @@ -735,6 +799,14 @@ msgstr "Ajastinta ei ole m msgid "Timer is recording." msgstr "Ajastinta tallennetaan" +#, fuzzy +msgid "Users" +msgstr "Käyttäjä" + +#, fuzzy +msgid "Delete user" +msgstr "Poista ajastin" + msgid "VLC: live video stream" msgstr "VLC: live-lähetyksen suoratoisto" @@ -810,6 +882,10 @@ msgstr "Interaktiivinen VDR-ymp msgid "No EPG information available" msgstr "" +#, fuzzy +#~ msgid "Please set a name and password for the user!" +#~ msgstr "Aseta käyttäjätunnus sekä salasana!" + #~ msgid "Interval" #~ msgstr "Päivitysväli" diff --git a/po/fr_FR.po b/po/fr_FR.po index b4e14d8..5b35f8f 100644 --- a/po/fr_FR.po +++ b/po/fr_FR.po @@ -129,6 +129,9 @@ msgstr "Programmation est active." msgid "Couldn't aquire access to channels, please try again later." msgstr "Impossible d'avoir accès à des chaînes, réessayer ultérieurement." +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "Impossible de trouver la programmation de recherche. Peut-être que votre demande de fautes de frappe?" @@ -373,6 +376,67 @@ msgstr "Nouvelle programmation" msgid "Weekday" msgstr "Jour de la semaine" +#, fuzzy +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "N'a pas pu trouver la programmation. Peut-être vous avez une erreur dans votre requête?" + +msgid "This user name is already in use!" +msgstr "" + +#, fuzzy +msgid "Edit user" +msgstr "Editer la programmation" + +#, fuzzy +msgid "New user" +msgstr "Nouvelle programmation" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "Mot de passe" + +#, fuzzy +msgid "User rights" +msgstr "Utilisateur" + +#, fuzzy +msgid "Edit setup" +msgstr "Editer la programmation" + +#, fuzzy +msgid "Add or edit timers" +msgstr "Editer la programmation" + +#, fuzzy +msgid "Delete timers" +msgstr "Effacer la programmation" + +#, fuzzy +msgid "Delete recordings" +msgstr "Enregistrement de série" + +#, fuzzy +msgid "Use remote menu" +msgstr "Utiliser dans le menu favoris" + +#, fuzzy +msgid "Start replay" +msgstr "Page de départ" + +#, fuzzy +msgid "Switch channel" +msgstr "Changer vers cette chaîne. " + +#, fuzzy +msgid "Add or edit search timers" +msgstr "Editer l'expression de recherche" + +#, fuzzy +msgid "Delete search timers" +msgstr "Effacer la programmation de recherche" + msgid "Electronic program guide information" msgstr "Guide électronique d'information des programmes EPG" @@ -421,9 +485,6 @@ msgstr "Session VDR Live" msgid "User" msgstr "Utilisateur" -msgid "Password" -msgstr "Mot de passe" - msgid "What's on?" msgstr "Actuellement?" @@ -679,6 +740,9 @@ msgstr "Param msgid "Setup" msgstr "Configuration" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "Réseau local (non requis)" @@ -745,6 +809,14 @@ msgstr "Aucune programmation d msgid "Timer is recording." msgstr "Enregistrement de série" +#, fuzzy +msgid "Users" +msgstr "Utilisateur" + +#, fuzzy +msgid "Delete user" +msgstr "Effacer la programmation" + msgid "VLC: live video stream" msgstr "VLC: live vidéo stream" @@ -820,6 +892,10 @@ msgstr "" msgid "No EPG information available" msgstr "" +#, fuzzy +#~ msgid "Please set a name and password for the user!" +#~ msgstr "Entrée le nom d'utilisateur et le mot de passe svp!" + #~ msgid "Interval" #~ msgstr "Intervalle" diff --git a/po/hr_HR.po b/po/hr_HR.po index 5ed2647..1a9c76c 100644 --- a/po/hr_HR.po +++ b/po/hr_HR.po @@ -124,6 +124,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -368,6 +371,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -416,9 +467,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -671,6 +719,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -734,6 +785,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/hu_HU.po b/po/hu_HU.po index 9d967d8..9994b70 100644 --- a/po/hu_HU.po +++ b/po/hu_HU.po @@ -124,6 +124,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -368,6 +371,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -416,9 +467,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -671,6 +719,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -734,6 +785,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/it_IT.po b/po/it_IT.po index c586d4b..f14ad57 100644 --- a/po/it_IT.po +++ b/po/it_IT.po @@ -126,6 +126,9 @@ msgstr "conflitti" msgid "Couldn't aquire access to channels, please try again later." msgstr "Impossibile avere accesso ai canali, riprova più tardi." +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "Impossibile trovare timer ricerca. Hai digitato correttamente la richiesta?" @@ -370,6 +373,67 @@ msgstr "Nuovo timer" msgid "Weekday" msgstr "Giorno della settimana" +#, fuzzy +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "Impossibile trovare timer. Hai digitato correttamente la richiesta?" + +msgid "This user name is already in use!" +msgstr "" + +#, fuzzy +msgid "Edit user" +msgstr "Modifica timer" + +#, fuzzy +msgid "New user" +msgstr "Nuovo timer" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "Password" + +#, fuzzy +msgid "User rights" +msgstr "Utente" + +#, fuzzy +msgid "Edit setup" +msgstr "Modifica timer" + +#, fuzzy +msgid "Add or edit timers" +msgstr "Modifica timer" + +#, fuzzy +msgid "Delete timers" +msgstr "Elimina timer" + +#, fuzzy +msgid "Delete recordings" +msgstr "Registrazione eliminata:" + +#, fuzzy +msgid "Use remote menu" +msgstr "Utilizza nel menu Preferiti" + +#, fuzzy +msgid "Start replay" +msgstr "Pagina iniziale" + +#, fuzzy +msgid "Switch channel" +msgstr "Sintonizza questo canale" + +#, fuzzy +msgid "Add or edit search timers" +msgstr "Modifica timer ricerca" + +#, fuzzy +msgid "Delete search timers" +msgstr "Elimina timer ricerca" + msgid "Electronic program guide information" msgstr "Info Guida Elettronica Programmi (EPG)" @@ -418,9 +482,6 @@ msgstr "Accesso VDR Live" msgid "User" msgstr "Utente" -msgid "Password" -msgstr "Password" - msgid "What's on?" msgstr "In programmazione" @@ -675,6 +736,9 @@ msgstr "Opzioni salvate." msgid "Setup" msgstr "Opzioni" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "Rete locale (nessun accesso richiesto)" @@ -738,6 +802,14 @@ msgstr "Nessun timer definito" msgid "Timer is recording." msgstr "Timer in registrazione." +#, fuzzy +msgid "Users" +msgstr "Utente" + +#, fuzzy +msgid "Delete user" +msgstr "Elimina timer" + msgid "VLC: live video stream" msgstr "VLC: trasmissione video Live" @@ -813,6 +885,10 @@ msgstr "Ambiente interattivo LIVE per VDR" msgid "No EPG information available" msgstr "" +#, fuzzy +#~ msgid "Please set a name and password for the user!" +#~ msgstr "Digita un nome utente e password!" + #~ msgid "Interval" #~ msgstr "Intervallo" diff --git a/po/nl_NL.po b/po/nl_NL.po index 04a026c..9dca46b 100644 --- a/po/nl_NL.po +++ b/po/nl_NL.po @@ -129,6 +129,9 @@ msgstr "Serie's opnemen" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -373,6 +376,64 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +#, fuzzy +msgid "Edit user" +msgstr "Serie's opnemen" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +#, fuzzy +msgid "Edit setup" +msgstr "Serie's opnemen" + +#, fuzzy +msgid "Add or edit timers" +msgstr "Gebruik als zoek timer" + +#, fuzzy +msgid "Delete timers" +msgstr "Serie's opnemen" + +#, fuzzy +msgid "Delete recordings" +msgstr "Serie's opnemen" + +#, fuzzy +msgid "Use remote menu" +msgstr "Gebruik tijd" + +#, fuzzy +msgid "Start replay" +msgstr "Start voor" + +#, fuzzy +msgid "Switch channel" +msgstr "tot kanaal" + +#, fuzzy +msgid "Add or edit search timers" +msgstr "Gebruik als zoek timer" + +#, fuzzy +msgid "Delete search timers" +msgstr "Serie's opnemen" + msgid "Electronic program guide information" msgstr "" @@ -421,9 +482,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -678,6 +736,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -745,6 +806,13 @@ msgstr "" msgid "Timer is recording." msgstr "Serie's opnemen" +msgid "Users" +msgstr "" + +#, fuzzy +msgid "Delete user" +msgstr "Serie's opnemen" + msgid "VLC: live video stream" msgstr "" diff --git a/po/nn_NO.po b/po/nn_NO.po index eee5c2e..df2d80b 100644 --- a/po/nn_NO.po +++ b/po/nn_NO.po @@ -124,6 +124,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -368,6 +371,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -416,9 +467,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -671,6 +719,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -734,6 +785,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/pl_PL.po b/po/pl_PL.po index 82089e0..56203df 100644 --- a/po/pl_PL.po +++ b/po/pl_PL.po @@ -123,6 +123,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -367,6 +370,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -415,9 +466,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -670,6 +718,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -733,6 +784,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/pt_PT.po b/po/pt_PT.po index 7ccecbf..2f39d1f 100644 --- a/po/pt_PT.po +++ b/po/pt_PT.po @@ -123,6 +123,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -367,6 +370,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -415,9 +466,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -670,6 +718,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -733,6 +784,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/ro_RO.po b/po/ro_RO.po index 14b6944..8392c82 100644 --- a/po/ro_RO.po +++ b/po/ro_RO.po @@ -124,6 +124,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -368,6 +371,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -416,9 +467,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -671,6 +719,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -734,6 +785,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/ru_RU.po b/po/ru_RU.po index 8880de2..5431e2d 100644 --- a/po/ru_RU.po +++ b/po/ru_RU.po @@ -123,6 +123,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -367,6 +370,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -415,9 +466,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -670,6 +718,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -733,6 +784,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/sl_SI.po b/po/sl_SI.po index 8f336cc..532c142 100644 --- a/po/sl_SI.po +++ b/po/sl_SI.po @@ -124,6 +124,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -368,6 +371,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -416,9 +467,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -671,6 +719,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -734,6 +785,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/sv_SE.po b/po/sv_SE.po index 9ffd074..9c3a6a6 100644 --- a/po/sv_SE.po +++ b/po/sv_SE.po @@ -124,6 +124,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -368,6 +371,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -416,9 +467,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -671,6 +719,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -734,6 +785,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" diff --git a/po/tr_TR.po b/po/tr_TR.po index e327e08..221f204 100644 --- a/po/tr_TR.po +++ b/po/tr_TR.po @@ -124,6 +124,9 @@ msgstr "" msgid "Couldn't aquire access to channels, please try again later." msgstr "" +msgid "Sorry, no permission. Please contact your administrator!" +msgstr "" + msgid "Couldn't find searchtimer. Maybe you mistyped your request?" msgstr "" @@ -368,6 +371,54 @@ msgstr "" msgid "Weekday" msgstr "" +msgid "Couldn't find user. Maybe you mistyped your request?" +msgstr "" + +msgid "This user name is already in use!" +msgstr "" + +msgid "Edit user" +msgstr "" + +msgid "New user" +msgstr "" + +msgid "Name" +msgstr "" + +msgid "Password" +msgstr "" + +msgid "User rights" +msgstr "" + +msgid "Edit setup" +msgstr "" + +msgid "Add or edit timers" +msgstr "" + +msgid "Delete timers" +msgstr "" + +msgid "Delete recordings" +msgstr "" + +msgid "Use remote menu" +msgstr "" + +msgid "Start replay" +msgstr "" + +msgid "Switch channel" +msgstr "" + +msgid "Add or edit search timers" +msgstr "" + +msgid "Delete search timers" +msgstr "" + msgid "Electronic program guide information" msgstr "" @@ -416,9 +467,6 @@ msgstr "" msgid "User" msgstr "" -msgid "Password" -msgstr "" - msgid "What's on?" msgstr "" @@ -671,6 +719,9 @@ msgstr "" msgid "Setup" msgstr "" +msgid "User management" +msgstr "" + msgid "Local net (no login required)" msgstr "" @@ -734,6 +785,12 @@ msgstr "" msgid "Timer is recording." msgstr "" +msgid "Users" +msgstr "" + +msgid "Delete user" +msgstr "" + msgid "VLC: live video stream" msgstr "" -- cgit v1.2.3