diff options
-rw-r--r-- | i18n-generated.h | 4 | ||||
-rw-r--r-- | po/de_DE.po | 6 | ||||
-rw-r--r-- | setup.cpp | 3 | ||||
-rw-r--r-- | tntconfig.cpp | 2 |
4 files changed, 6 insertions, 9 deletions
diff --git a/i18n-generated.h b/i18n-generated.h index 9f71bcf..e1c4503 100644 --- a/i18n-generated.h +++ b/i18n-generated.h @@ -9251,8 +9251,8 @@ const tI18nPhrase Phrases[] = { "", #endif }, - { "additional fixed times in 'What's on?'", - "zusätzliche Zeitpunkte in 'Was läuft?'", + { "Additional fixed times in 'What's on?'", + "Zusätzliche Zeitpunkte in 'Was läuft?'", "", "Ore aggiuntive fisse menu \"In programmazione\"", "", diff --git a/po/de_DE.po b/po/de_DE.po index 0aa2199..1a98f89 100644 --- a/po/de_DE.po +++ b/po/de_DE.po @@ -816,7 +816,7 @@ msgid "Add links to IMDb" msgstr "Füge Links zur IMDb hinzu" msgid "Additional fixed times in 'What's on?'" -msgstr "zusätzliche Zeitpunkte in 'Was läuft?'" +msgstr "Zusätzliche Zeitpunkte in 'Was läuft?'" msgid "Format is HH:MM. Separate multiple times with a semicolon" msgstr "Format ist HH:MM. Mehrere Zeiten durch Semikolon trennen" @@ -935,7 +935,3 @@ msgstr "" msgid "No EPG information available" msgstr "Keine EPG Daten vorhanden" - -#, fuzzy -#~ msgid "Subtitle" -#~ msgstr "Titel" @@ -203,7 +203,8 @@ bool Setup::CheckServerIps() } esyslog( "[live] INFO: bindv6only=%d", bindv6only); cerr << "INFO: bindv6only=" << bindv6only << endl; - // add a default IPv4 listener address if default IPv6 one will be binded only to v6 + // add a default IPv4 listener address if default IPv6 one + // will be binded only to v6 if (bindv6only) m_serverIps.push_back( "0.0.0.0" ); m_serverIps.push_back( "::" ); diff --git a/tntconfig.cpp b/tntconfig.cpp index 96db7aa..5293540 100644 --- a/tntconfig.cpp +++ b/tntconfig.cpp @@ -261,7 +261,7 @@ namespace vdrlive { Setup::IpList const& ips = LiveSetup().GetServerIps(); int port = LiveSetup().GetServerPort(); size_t listenFailures = 0; - for ( Setup::IpList::const_iterator ip = ips.begin(); ip != ips.end(); ++ip ) { + for (Setup::IpList::const_iterator ip = ips.begin(); ip != ips.end(); ++ip) { try { esyslog("[live] INFO: attempt to listen on ip = '%s'", ip->c_str()); app.listen(*ip, port); |