summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--i18n-generated.h4
-rw-r--r--po/de_DE.po6
-rw-r--r--setup.cpp3
-rw-r--r--tntconfig.cpp2
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"
diff --git a/setup.cpp b/setup.cpp
index e4ce647..08edcb4 100644
--- a/setup.cpp
+++ b/setup.cpp
@@ -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);