From 41223be810f1e87f3e635afe541d5b445c6463cd Mon Sep 17 00:00:00 2001 From: Britney Fransen Date: Thu, 24 May 2018 19:56:48 +0000 Subject: mythtv & mythplugins: update to latest -fixes update some translations --- abs/core/mythtv/stable-29/git_src/git_hash | 2 +- abs/core/mythtv/stable-29/mythplugins/PKGBUILD | 2 +- ...dbase-cache-for-RegisterKey-and-RegisterJ.patch | 276 --- abs/core/mythtv/stable-29/mythtv/PKGBUILD | 12 +- .../mythtv/stable-29/mythtv/fixTranslations.patch | 78 + .../mythtv/mythfrontend_en_us.ts_Title_Case.patch | 2145 +++++++++++--------- 6 files changed, 1216 insertions(+), 1299 deletions(-) delete mode 100644 abs/core/mythtv/stable-29/mythtv/0259-0117-UI-Provide-dbase-cache-for-RegisterKey-and-RegisterJ.patch create mode 100644 abs/core/mythtv/stable-29/mythtv/fixTranslations.patch diff --git a/abs/core/mythtv/stable-29/git_src/git_hash b/abs/core/mythtv/stable-29/git_src/git_hash index 097003a..af68561 100644 --- a/abs/core/mythtv/stable-29/git_src/git_hash +++ b/abs/core/mythtv/stable-29/git_src/git_hash @@ -1 +1 @@ -280138b452c16c3ce02734b57d9245f91002af81 +ccbded85c9bff63275013e230a5f19fa4a955640 diff --git a/abs/core/mythtv/stable-29/mythplugins/PKGBUILD b/abs/core/mythtv/stable-29/mythplugins/PKGBUILD index 55e70b5..169e132 100644 --- a/abs/core/mythtv/stable-29/mythplugins/PKGBUILD +++ b/abs/core/mythtv/stable-29/mythplugins/PKGBUILD @@ -9,7 +9,7 @@ pkgname=('mytharchive' 'mythweather' 'mythzoneminder') pkgver=29.1 -pkgrel=3 +pkgrel=4 arch=('x86_64') url="http://www.mythtv.org" license=('GPL') diff --git a/abs/core/mythtv/stable-29/mythtv/0259-0117-UI-Provide-dbase-cache-for-RegisterKey-and-RegisterJ.patch b/abs/core/mythtv/stable-29/mythtv/0259-0117-UI-Provide-dbase-cache-for-RegisterKey-and-RegisterJ.patch deleted file mode 100644 index 79169e4..0000000 --- a/abs/core/mythtv/stable-29/mythtv/0259-0117-UI-Provide-dbase-cache-for-RegisterKey-and-RegisterJ.patch +++ /dev/null @@ -1,276 +0,0 @@ -From 53ab06dc745938d2ea74214fc10a2b5446bac01a Mon Sep 17 00:00:00 2001 -From: Lawrence Rust -Date: Wed, 5 Jun 2013 16:07:56 +0100 -Subject: [PATCH 117/333] UI: Provide dbase cache for RegisterKey and - RegisterJump to speed startup - -Signed-off-by: Lawrence Rust ---- - mythtv/libs/libmythui/mythmainwindow.cpp | 211 +++++++++++++++++++++--------- - 1 file changed, 147 insertions(+), 64 deletions(-) - -diff --git a/mythtv/libs/libmythui/mythmainwindow.cpp b/mythtv/libs/libmythui/mythmainwindow.cpp -index c765279..226454a 100644 ---- a/mythtv/libs/libmythui/mythmainwindow.cpp -+++ b/mythtv/libs/libmythui/mythmainwindow.cpp -@@ -25,6 +25,9 @@ using namespace std; - #include - #include - #include -+#include -+#include -+#include - - // Platform headers - #include "unistd.h" -@@ -1765,67 +1768,107 @@ void MythMainWindow::BindKey(const QString &context, const QString &action, - void MythMainWindow::RegisterKey(const QString &context, const QString &action, - const QString &description, const QString &key) - { -- QString keybind = key; -- -- MSqlQuery query(MSqlQuery::InitCon()); -+ typedef QPair< QString,QString > key_t; // context, action -+ typedef QPair< QString,QString > val_t; // keybind, description -+ typedef QMap< key_t,val_t > cache_t; -+ static cache_t s_cache; -+ static QMutex s_mutex; - -- if (d->m_useDB && query.isConnected()) -+ if (s_cache.empty() && d->m_useDB) - { -- query.prepare("SELECT keylist, description FROM keybindings WHERE " -- "context = :CONTEXT AND action = :ACTION AND " -- "hostname = :HOSTNAME ;"); -- query.bindValue(":CONTEXT", context); -- query.bindValue(":ACTION", action); -- query.bindValue(":HOSTNAME", GetMythDB()->GetHostName()); -- -- if (query.exec() && query.next()) -+ MSqlQuery query(MSqlQuery::InitCon()); -+ if (query.isConnected()) - { -- keybind = query.value(0).toString(); -- QString db_description = query.value(1).toString(); -- -- // Update keybinding description if changed -- if (db_description != description) -+ query.prepare("SELECT context, action, keylist, description " -+ "FROM keybindings WHERE hostname = :HOSTNAME ;"); -+ query.bindValue(":HOSTNAME", GetMythDB()->GetHostName()); -+ if (query.exec()) - { -- LOG(VB_GENERAL, LOG_NOTICE, -- "Updating keybinding description..."); -- query.prepare( -- "UPDATE keybindings " -- "SET description = :DESCRIPTION " -- "WHERE context = :CONTEXT AND " -- " action = :ACTION AND " -- " hostname = :HOSTNAME"); -- -- query.bindValue(":DESCRIPTION", description); -- query.bindValue(":CONTEXT", context); -- query.bindValue(":ACTION", action); -- query.bindValue(":HOSTNAME", GetMythDB()->GetHostName()); -- -- if (!query.exec() && !(GetMythDB()->SuppressDBMessages())) -+ QMutexLocker locker(&s_mutex); -+ while (query.next()) - { -- MythDB::DBError("Update Keybinding", query); -+ key_t k(query.value(0).toString(), query.value(1).toString()); -+ val_t v(query.value(2).toString(), query.value(3).toString()); -+ s_cache[k] = v; - } - } -+ else if (!GetMythDB()->SuppressDBMessages()) -+ MythDB::DBError("RegisterKey", query); - } -- else -+ } -+ -+ QString keybind = key; -+ QString db_description; -+ bool bFound = false; -+ { -+ QMutexLocker locker(&s_mutex); -+ cache_t::const_iterator it = s_cache.find(key_t(context, action)); -+ if (it != s_cache.end()) - { -- QString inskey = keybind; -- -- query.prepare("INSERT INTO keybindings (context, action, " -- "description, keylist, hostname) VALUES " -- "( :CONTEXT, :ACTION, :DESCRIPTION, :KEYLIST, " -- ":HOSTNAME );"); -- query.bindValue(":CONTEXT", context); -- query.bindValue(":ACTION", action); -+ keybind = it->first; -+ db_description = it->second; -+ bFound = true; -+ } -+ } -+ -+ if (bFound) -+ { -+ // Update keybinding description if changed -+ if (db_description != description && d->m_useDB) -+ { -+ LOG(VB_GENERAL, LOG_NOTICE, "Updating keybinding description..."); -+ -+ MSqlQuery query(MSqlQuery::InitCon()); -+ -+ query.prepare( -+ "UPDATE keybindings " -+ "SET description = :DESCRIPTION " -+ "WHERE context = :CONTEXT AND " -+ " action = :ACTION AND " -+ " hostname = :HOSTNAME"); -+ - query.bindValue(":DESCRIPTION", description); -- query.bindValue(":KEYLIST", inskey); -- query.bindValue(":HOSTNAME", GetMythDB()->GetHostName()); -+ query.bindValue(":CONTEXT", context); -+ query.bindValue(":ACTION", action); -+ query.bindValue(":HOSTNAME", GetMythDB()->GetHostName()); - - if (!query.exec() && !(GetMythDB()->SuppressDBMessages())) - { -- MythDB::DBError("Insert Keybinding", query); -+ MythDB::DBError("Update Keybinding", query); - } - } - } -+ else if (d->m_useDB) -+ { -+ LOG(VB_GENERAL, LOG_NOTICE, QString("Add keybinding %1::%2 = %3") -+ .arg(context).arg(action).arg(keybind) ); -+ -+ MSqlQuery query(MSqlQuery::InitCon()); -+ -+ QString inskey = keybind; -+ -+ query.prepare("INSERT INTO keybindings (context, action, " -+ "description, keylist, hostname) VALUES " -+ "( :CONTEXT, :ACTION, :DESCRIPTION, :KEYLIST, " -+ ":HOSTNAME );"); -+ query.bindValue(":CONTEXT", context); -+ query.bindValue(":ACTION", action); -+ query.bindValue(":DESCRIPTION", description); -+ query.bindValue(":KEYLIST", inskey); -+ query.bindValue(":HOSTNAME", GetMythDB()->GetHostName()); -+ -+ if (!query.exec() && !(GetMythDB()->SuppressDBMessages())) -+ { -+ MythDB::DBError("Insert Keybinding", query); -+ } -+ else -+ { -+ QMutexLocker locker(&s_mutex); -+ key_t k(context, action); -+ val_t v(keybind, description); -+ s_cache[k] = v; -+ } -+ } - - BindKey(context, action, keybind); - d->actionText[context][action] = description; -@@ -1930,35 +1973,75 @@ void MythMainWindow::RegisterJump(const QString &destination, - const QString &key, void (*callback)(void), - bool exittomain, QString localAction) - { -- QString keybind = key; -+ typedef QPair< QString,QString > val_t; // keylist, description -+ typedef QMap< QString,val_t > cache_t; // destination -> keylist, description -+ static cache_t s_cache; -+ static QMutex s_mutex; - -- MSqlQuery query(MSqlQuery::InitCon()); -- if (query.isConnected()) -+ if (s_cache.empty() && d->m_useDB) - { -- query.prepare("SELECT keylist FROM jumppoints WHERE " -- "destination = :DEST and hostname = :HOST ;"); -- query.bindValue(":DEST", destination); -- query.bindValue(":HOST", GetMythDB()->GetHostName()); -- -- if (query.exec() && query.next()) -+ MSqlQuery query(MSqlQuery::InitCon()); -+ if (query.isConnected()) - { -- keybind = query.value(0).toString(); -+ query.prepare("SELECT destination, keylist, description " -+ "FROM jumppoints WHERE hostname = :HOSTNAME ;"); -+ query.bindValue(":HOSTNAME", GetMythDB()->GetHostName()); -+ if (query.exec()) -+ { -+ QMutexLocker locker(&s_mutex); -+ while (query.next()) -+ { -+ val_t v(query.value(1).toString(), query.value(2).toString()); -+ s_cache.insert(query.value(0).toString(), v); -+ } -+ } -+ else if (!GetMythDB()->SuppressDBMessages()) -+ MythDB::DBError("RegisterJump", query); - } -- else -+ } -+ -+ QString keybind = key; -+ bool bFound = false; -+ { -+ QMutexLocker locker(&s_mutex); -+ cache_t::const_iterator it = s_cache.find(destination); -+ if (it != s_cache.end()) - { -- QString inskey = keybind; -+ keybind = it->first; -+ bFound = true; -+ } -+ } - -- query.prepare("INSERT INTO jumppoints (destination, description, " -- "keylist, hostname) VALUES ( :DEST, :DESC, :KEYLIST, " -- ":HOST );"); -+ if (!bFound) -+ { -+ MSqlQuery query(MSqlQuery::InitCon()); -+ if (query.isConnected()) -+ { -+ query.prepare("SELECT keylist FROM jumppoints WHERE " -+ "destination = :DEST and hostname = :HOST ;"); - query.bindValue(":DEST", destination); -- query.bindValue(":DESC", description); -- query.bindValue(":KEYLIST", inskey); - query.bindValue(":HOST", GetMythDB()->GetHostName()); - -- if (!query.exec() || !query.isActive()) -+ if (query.exec() && query.next()) - { -- MythDB::DBError("Insert Jump Point", query); -+ keybind = query.value(0).toString(); -+ } -+ else -+ { -+ QString inskey = keybind; -+ -+ query.prepare("INSERT INTO jumppoints (destination, description, " -+ "keylist, hostname) VALUES ( :DEST, :DESC, :KEYLIST, " -+ ":HOST );"); -+ query.bindValue(":DEST", destination); -+ query.bindValue(":DESC", description); -+ query.bindValue(":KEYLIST", inskey); -+ query.bindValue(":HOST", GetMythDB()->GetHostName()); -+ -+ if (!query.exec() || !query.isActive()) -+ { -+ MythDB::DBError("Insert Jump Point", query); -+ } - } - } - } --- -1.7.9.5 - diff --git a/abs/core/mythtv/stable-29/mythtv/PKGBUILD b/abs/core/mythtv/stable-29/mythtv/PKGBUILD index e3afb4f..5bc782a 100644 --- a/abs/core/mythtv/stable-29/mythtv/PKGBUILD +++ b/abs/core/mythtv/stable-29/mythtv/PKGBUILD @@ -1,6 +1,6 @@ pkgname=mythtv pkgver=29.1 -pkgrel=3 +pkgrel=4 commit_hash=`cat ../git_src/git_hash` pkgdesc="A Homebrew PVR project $commit_hash" arch=('x86_64') @@ -33,12 +33,12 @@ patches=( 'defaultThemeLinHES.patch' 'addEnableDisableAutoShutdownToSystemMenu.patch' 'mythfrontend_en_us.ts_Title_Case.patch' + 'fixTranslations.patch' 'pull103-Add-heuristic-in-TMDB-script-to-detect-movie-release-years.patch' '0006-cardutil_show_displayname.patch' + '0287-MythUiImage-Don-t-block-UI-when-exiting-screens.patch' '0292-UPnP-Reduce-startup-latency-by-moving-blocking-code-to-own-thread.patch' '0294-0283-FE-Add-network-status-to-machine-status-dialog.patch' - '0287-MythUiImage-Don-t-block-UI-when-exiting-screens.patch' - '0259-0117-UI-Provide-dbase-cache-for-RegisterKey-and-RegisterJ.patch' ) optdepends=() @@ -138,11 +138,11 @@ md5sums=('fb5a87c52a31168a0c8fdde72f27cc45' '6add9c16bbb988067e82029327e567b2' 'b0b238320fa78a4928dce2cea7c85071' '8e4492d1777234a021f368bd6ee964ee' - 'e7c148608832563b418ffaad5f8498eb' + 'e9aad003573bf3df5f4b940335f8bc12' + '17452a48ef2e27740f961480449b6303' 'd05eaf66c434a131c8efb4d87e99b402' '5f2bd4065b145b7b7ff09dfd6f08276c' + '3cccbab70c7615bc47e51790e024d5bf' '1f0dbd44f8c1a89b86bb331086f58578' 'abaef221b00690b329f4dca18676bcd6' - '3cccbab70c7615bc47e51790e024d5bf' - '4b5f00a19006b915b7ee5ab7f861599a' '633cd853a89aeee5388daaad21ccec28') diff --git a/abs/core/mythtv/stable-29/mythtv/fixTranslations.patch b/abs/core/mythtv/stable-29/mythtv/fixTranslations.patch new file mode 100644 index 0000000..582afe0 --- /dev/null +++ b/abs/core/mythtv/stable-29/mythtv/fixTranslations.patch @@ -0,0 +1,78 @@ +diff --git a/mythtv/programs/mythfrontend/audiogeneralsettings.h b/mythtv/programs/mythfrontend/audiogeneralsettings.h +index 79aa41dd8d..46421a84c2 100644 +--- a/mythtv/programs/mythfrontend/audiogeneralsettings.h ++++ b/mythtv/programs/mythfrontend/audiogeneralsettings.h +@@ -19,6 +19,8 @@ class AudioTest; + + class AudioConfigScreen : public StandardSettingDialog + { ++ Q_OBJECT ++ + public: + AudioConfigScreen(MythScreenStack *parent, const char *name, + GroupSetting *groupSetting); +diff --git a/mythtv/programs/mythfrontend/globalsettings.cpp b/mythtv/programs/mythfrontend/globalsettings.cpp +index 4507619170..0618f9762b 100644 +--- a/mythtv/programs/mythfrontend/globalsettings.cpp ++++ b/mythtv/programs/mythfrontend/globalsettings.cpp +@@ -3871,7 +3871,7 @@ class PlayBackScaling : public GroupSetting + PlayBackScaling::PlayBackScaling() + :GroupSetting() + { +- setLabel(tr("Scaling")); ++ setLabel(PlaybackSettings::tr("Scaling")); + addChild(m_VertScan = VertScanPercentage()); + addChild(m_YScan = YScanDisplacement()); + addChild(m_HorizScan = HorizScanPercentage()); +@@ -3894,7 +3894,7 @@ void PlayBackScaling::updateButton(MythUIButtonListItem *item) + m_HorizScan->getValue() == "0" && + m_YScan->getValue() == "0" && + m_XScan->getValue() == "0") +- item->SetText(tr("No scaling"),"value"); ++ item->SetText(PlaybackSettings::tr("No scaling"),"value"); + else + item->SetText(QString("%1%x%2%+%3%+%4%") + .arg(m_HorizScan->getValue()) +@@ -4364,7 +4364,7 @@ ChannelCheckBoxSetting::ChannelCheckBoxSetting(uint chanid, + m_channelId(chanid) + { + setLabel(QString("%1 %2").arg(channum).arg(channame)); +- setHelpText(tr("Select/Unselect channels for this channel group")); ++ setHelpText(ChannelGroupSettings::tr("Select/Unselect channels for this channel group")); + } + + ChannelGroupSetting::ChannelGroupSetting(const QString &groupName, +diff --git a/mythtv/programs/mythfrontend/globalsettings.h b/mythtv/programs/mythfrontend/globalsettings.h +index e069ec1cfb..8c1de7a02e 100644 +--- a/mythtv/programs/mythfrontend/globalsettings.h ++++ b/mythtv/programs/mythfrontend/globalsettings.h +@@ -259,6 +259,8 @@ class PlaybackProfileConfig : public GroupSetting + + class ChannelGroupSetting : public GroupSetting + { ++ Q_OBJECT ++ + public: + ChannelGroupSetting(const QString &groupName, int groupId); + virtual void Load(); +diff --git a/mythtv/programs/mythtv-setup/backendsettings.cpp b/mythtv/programs/mythtv-setup/backendsettings.cpp +index 6de0bae49d..bf24cc4f1a 100644 +--- a/mythtv/programs/mythtv-setup/backendsettings.cpp ++++ b/mythtv/programs/mythtv-setup/backendsettings.cpp +@@ -126,11 +126,12 @@ class IpAddressSettings : public HostCheckBoxSetting + explicit IpAddressSettings(/*Setting* trigger*/) : + HostCheckBoxSetting("ListenOnAllIps") + { +- setLabel(QObject::tr("Listen on All IP Addresses")); ++ setLabel(BackendSettings::tr("Listen on All IP Addresses")); + setValue(true); +- setHelpText(tr("Allow this backend to receive connections on any IP " +- "Address assigned to it. Recommended for most users " +- "for ease and reliability.")); ++ setHelpText(BackendSettings::tr("Allow this backend to receive " ++ "connections on any IP Address assigned to it. " ++ "Recommended for most users for ease and " ++ "reliability.")); + + localServerIP = LocalServerIP(); + localServerIP6 = LocalServerIP6(); diff --git a/abs/core/mythtv/stable-29/mythtv/mythfrontend_en_us.ts_Title_Case.patch b/abs/core/mythtv/stable-29/mythtv/mythfrontend_en_us.ts_Title_Case.patch index c4ce70a..412db21 100644 --- a/abs/core/mythtv/stable-29/mythtv/mythfrontend_en_us.ts_Title_Case.patch +++ b/abs/core/mythtv/stable-29/mythtv/mythfrontend_en_us.ts_Title_Case.patch @@ -1,5 +1,5 @@ ---- src/mythtv/i18n/mythfrontend_en_us.ts.orig 2018-01-25 13:58:55.277053891 +0000 -+++ src/mythtv/i18n/mythfrontend_en_us.ts 2018-01-25 13:58:44.968390548 +0000 +--- src/mythtv/i18n/mythfrontend_en_us.ts.orig 2018-05-23 18:35:11.221352872 +0000 ++++ src/mythtv/i18n/mythfrontend_en_us.ts 2018-05-24 18:05:31.175217406 +0000 @@ -573,7 +573,7 @@ @@ -75,7 +75,7 @@ -@@ -715,32 +715,31 @@ +@@ -715,32 +715,32 @@ Holiday-children @@ -83,11 +83,10 @@ + Holiday-Children -- -- Holiday-children special + + Holiday-children special - Holiday-children special -+ Holiday-Children Special -+ Holiday-Children Special ++ Holiday-Children Special @@ -115,7 +114,7 @@ -@@ -765,12 +764,12 @@ +@@ -765,12 +765,12 @@ Music special @@ -130,19 +129,8 @@ -@@ -778,9 +777,18 @@ - Musical - +@@ -780,7 +780,7 @@ -+ Musical Comedy -+ Musical comedy -+ -+ -+ -+ Holiday-children special -+ Holiday-Chidren Special -+ -+ Musical comedy - Musical comedy @@ -150,7 +138,7 @@ -@@ -795,7 +803,7 @@ +@@ -795,7 +795,7 @@ Public affairs @@ -159,7 +147,7 @@ -@@ -810,7 +818,7 @@ +@@ -810,7 +810,7 @@ Romance-comedy @@ -168,7 +156,7 @@ -@@ -825,12 +833,12 @@ +@@ -825,12 +825,12 @@ Science fiction @@ -183,7 +171,7 @@ -@@ -860,12 +868,12 @@ +@@ -860,12 +860,12 @@ Sports non-event @@ -198,7 +186,7 @@ -@@ -875,7 +883,7 @@ +@@ -875,7 +875,7 @@ Track/field @@ -207,7 +195,7 @@ -@@ -920,7 +928,7 @@ +@@ -920,7 +920,7 @@ Arts/crafts @@ -216,7 +204,7 @@ -@@ -930,12 +938,12 @@ +@@ -930,12 +930,12 @@ Auto racing @@ -231,7 +219,7 @@ -@@ -945,7 +953,7 @@ +@@ -945,7 +945,7 @@ Bicycle racing @@ -240,7 +228,7 @@ -@@ -965,12 +973,12 @@ +@@ -965,12 +965,12 @@ Dog show @@ -255,7 +243,7 @@ -@@ -986,12 +994,12 @@ +@@ -986,12 +986,12 @@ Field hockey @@ -270,7 +258,7 @@ -@@ -1001,7 +1009,7 @@ +@@ -1001,7 +1001,7 @@ Home improvement @@ -279,7 +267,7 @@ -@@ -1011,7 +1019,7 @@ +@@ -1011,7 +1011,7 @@ Hydroplane racing @@ -288,7 +276,7 @@ -@@ -1021,7 +1029,7 @@ +@@ -1021,7 +1021,7 @@ Motorcycle racing @@ -297,7 +285,7 @@ -@@ -1047,7 +1055,7 @@ +@@ -1047,7 +1047,7 @@ Pro wrestling @@ -306,7 +294,7 @@ -@@ -1092,7 +1100,7 @@ +@@ -1092,7 +1092,7 @@ Card games @@ -315,7 +303,7 @@ -@@ -1107,12 +1115,12 @@ +@@ -1107,12 +1107,12 @@ Mixed martial arts @@ -330,7 +318,7 @@ -@@ -1144,7 +1152,7 @@ +@@ -1144,7 +1144,7 @@ Soap/melodrama/folkloric @@ -339,7 +327,7 @@ -@@ -1160,12 +1168,12 @@ +@@ -1160,12 +1160,12 @@ News/weather report @@ -354,7 +342,7 @@ -@@ -1380,7 +1388,7 @@ +@@ -1380,7 +1380,7 @@ Nature/animals/Environment @@ -363,7 +351,7 @@ -@@ -1440,7 +1448,7 @@ +@@ -1440,7 +1440,7 @@ Advertizement/Shopping @@ -372,7 +360,7 @@ -@@ -1471,124 +1479,132 @@ +@@ -1471,124 +1471,132 @@ (ChannelSettings) @@ -537,7 +525,7 @@ -@@ -1601,22 +1617,22 @@ +@@ -1601,22 +1609,22 @@ Value to be added to your desired frequency (in kHz) for 'fine tuning'. @@ -564,7 +552,7 @@ Channel Options - Raw Transport Stream Channel Options - Raw Transport Stream -@@ -1624,39 +1640,37 @@ +@@ -1624,39 +1632,37 @@ (Common) @@ -617,7 +605,7 @@ Cancel Cancel -@@ -1699,7 +1713,7 @@ +@@ -1699,7 +1705,7 @@ @@ -626,7 +614,7 @@ %n second(s) %n second -@@ -1724,31 +1738,29 @@ +@@ -1724,31 +1730,29 @@ No @@ -665,7 +653,7 @@ Channel Name Channel Name -@@ -1758,51 +1770,56 @@ +@@ -1758,65 +1762,70 @@ Channel Number @@ -726,14 +714,32 @@ Hue - +- ++ Signal To Noise - Signal To Noise + Signal to Noise - -@@ -1842,81 +1859,75 @@ +- ++ + + Signal Lock + Signal Lock + + +- ++ + Signal Power + Signal Power + + +- ++ + Script Status + Script Status + +@@ -1842,81 +1851,75 @@ MythTV @@ -831,7 +837,7 @@ There are no configured tuners. There are no configured tuners. -@@ -2061,7 +2072,7 @@ +@@ -2061,7 +2064,7 @@ @@ -840,7 +846,7 @@ Modulation Modulation -@@ -2076,17 +2087,17 @@ +@@ -2076,17 +2079,17 @@ Modulation (Default: Auto) @@ -861,7 +867,7 @@ Modulation, QPSK, 8PSK, QAM-16. Most DVB-S transponders use QPSK, while DVB-S2 use 8PSK. QAM-16 is not available for DVB-S2 transports. Modulation, QPSK, 8PSK, QAM-16. Most DVB-S transponders use QPSK, while DVB-S2 use 8PSK. QAM-16 is not available for DVB-S2 transports. -@@ -2094,32 +2105,32 @@ +@@ -2094,32 +2097,32 @@ (MythFrontendMain) @@ -902,7 +908,7 @@ MythTV Frontend Main window title MythTV Frontend -@@ -2180,7 +2191,7 @@ +@@ -2180,7 +2183,7 @@ MusicArt @@ -911,7 +917,7 @@ -@@ -2215,48 +2226,48 @@ +@@ -2215,48 +2218,48 @@ (mythcommflag) @@ -976,7 +982,7 @@ -@@ -2274,7 +2285,7 @@ +@@ -2274,7 +2277,7 @@ Failed with exit status %1 Job status @@ -985,7 +991,7 @@ -@@ -2282,347 +2293,357 @@ +@@ -2282,347 +2285,357 @@ %n commercial break(s) Job status @@ -1000,13 +1006,13 @@ ASIConfigurationGroup - -+ ++ Not a valid DVEO ASI card Not a valid DVEO ASI card - -+ ++ Valid DVEO ASI card - Valid DVEO ASI card + Valid DVEO ASI Card @@ -1446,7 +1452,7 @@ Localization Localization -@@ -2630,350 +2651,491 @@ +@@ -2630,350 +2643,491 @@ AudioAdvancedSettings @@ -1738,7 +1744,8 @@ - + Enable if your amplifier or sound decoder supports DTS. You must use a digital connection. Uncheck if using an analog connection - Enable if your amplifier or sound decoder supports DTS. You must use a digital connection. Uncheck if using an analog connection +- Enable if your amplifier or sound decoder supports DTS. You must use a digital connection. Uncheck if using an analog connection ++ Enable if your amplifier or sound decoder supports DTS. You must use a digital connection. Uncheck if using an analog connection. - @@ -2048,7 +2055,7 @@ -@@ -2981,29 +3143,29 @@ +@@ -2981,29 +3135,29 @@ Invalid or unuseable audio device @@ -2083,7 +2090,7 @@ -@@ -3013,7 +3175,7 @@ +@@ -3013,7 +3167,7 @@ CoreAudio default output @@ -2092,34 +2099,34 @@ -@@ -3072,22 +3234,22 @@ +@@ -3072,22 +3226,22 @@ Error while registering new jack port: %1 - Error while registering new jack port: %1 -+ ERROR: While registering new jack port: %1 ++ ERROR: Registering new jack port: %1 Error. Unable to set process callback?! - Error. Unable to set process callback?! -+ ERROR: Unable to set process callback?! ++ ERROR: Unable to set process callback! Error. Unable to set xrun callback?! - Error. Unable to set xrun callback?! -+ ERROR: Unable to set xrun callback?! ++ ERROR: Unable to set xrun callback! Error. Unable to set graph order change callback?! - Error. Unable to set graph order change callback?! -+ ERROR: Unable to set graph order change callback?! ++ ERROR: Unable to set graph order change callback! -@@ -3103,7 +3265,7 @@ +@@ -3103,7 +3257,7 @@ Error closing Jack output device. Error: %1 @@ -2128,7 +2135,7 @@ -@@ -3129,7 +3291,7 @@ +@@ -3129,7 +3283,7 @@ Select from one of the audio devices detected on your system. When satisfied, you can test audio before moving on. If you fail to configure audio, video playback may fail as well. @@ -2137,7 +2144,7 @@ -@@ -3139,27 +3301,27 @@ +@@ -3139,27 +3293,27 @@ Select this checkbox if your receiver is capable of playing DTS. @@ -2170,7 +2177,7 @@ -@@ -3185,10 +3347,10 @@ +@@ -3185,10 +3339,10 @@ Discovering audio devices... @@ -2183,7 +2190,7 @@ Stop Speaker Test Stop Speaker Test -@@ -3196,88 +3358,130 @@ +@@ -3196,88 +3350,130 @@ AudioTest @@ -2337,7 +2344,7 @@ Audio device is invalid or not useable. Audio device is invalid or not useable. -@@ -3285,7 +3489,7 @@ +@@ -3285,7 +3481,7 @@ AudioTestThread @@ -2346,7 +2353,7 @@ Unable to create AudioOutput. Unable to create AudioOutput. -@@ -3293,7 +3497,7 @@ +@@ -3293,7 +3489,7 @@ BDInfo @@ -2355,7 +2362,7 @@ Could not open Blu-ray device: %1 Could not open Blu-ray device: %1 -@@ -3301,29 +3505,29 @@ +@@ -3301,29 +3497,29 @@ BDRingBuffer @@ -2394,34 +2401,41 @@ -@@ -3336,159 +3540,162 @@ +@@ -3336,159 +3532,172 @@ Please enter the backend access PIN - Please enter the backend access PIN + Please enter the backend access PIN: ++ ++ ++ ++ BackendSettings ++ ++ ++ Listen on All IP Addresses ++ Listen on All IP Addresses ++ ++ ++ ++ Allow this backend to receive connections on any IP Address assigned to it. Recommended for most users for ease and reliability. ++ Allow this backend to receive connections on any IP Address assigned to it. Recommended for most users for ease and reliability. ++ ++ ++ ++ Host Address Backend Setup ++ Host Address Backend Setup -- BookmarkDialog -+ BackendSettings + BookmarkDialog - -- DVD/Video contains a bookmark -- DVD/Video contains a bookmark -- -+ -+ Host Address Backend Setup -+ Host Address Backend Setup -+ -+ -+ -+ BookmarkDialog -+ + -+ DVD/Video contains a bookmark + DVD/Video contains a bookmark +- DVD/Video contains a bookmark + DVD/Video Contains a Bookmark -+ + - + @@ -2441,19 +2455,20 @@ CaptureCardEditor - -+ +- Capture cards +- Capture cards ++ + New capture card + New Capture Card + + -+ ++ + Error getting list of cards for this host. Unable to delete capturecards for %1 + Error getting list of cards for this host. Unable to delete capture cards for %1. + + -+ - Capture cards -- Capture cards ++ ++ Capture cards + Capture Cards @@ -2476,7 +2491,7 @@ - -+ ++ Are you sure you want to delete ALL capture cards on %1? Are you sure you want to delete ALL capture cards on %1? @@ -2509,7 +2524,7 @@ - -+ ++ Are you sure you want to delete ALL capture cards? Are you sure you want to delete ALL capture cards? @@ -2530,33 +2545,33 @@ CardInput - -+ ++ Scan for channels - Scan for channels + Scan for Channels - -+ ++ Use channel scanner to find channels for this input. Use channel scanner to find channels for this input. - -+ ++ Fetch channels from listings source - Fetch channels from listings source + Fetch Channels from Listings Source - -+ ++ This uses the listings data source to provide the channels for this input. This uses the listings data source to provide the channels for this input. - -+ ++ This can take a long time to run. This can take a long time to run. @@ -2568,7 +2583,7 @@ - -+ ++ Enter new group name - Enter new group name + Enter group name: @@ -2582,14 +2597,14 @@ - -+ ++ Sorry, this Input Group name cannot be blank. - Sorry, this Input Group name cannot be blank. + Sorry, the name cannot be blank. - -+ ++ Sorry, this Input Group name is already in use. - Sorry, this Input Group name is already in use. + Sorry, this name is already in use. @@ -2599,7 +2614,7 @@ CardInputEditor - -+ ++ Input connections - Input connections + Input Connections @@ -2609,22 +2624,22 @@ CetonConfigurationGroup - -+ ++ Description Description -@@ -3496,141 +3703,147 @@ +@@ -3496,141 +3705,146 @@ CetonDeviceID - -+ ++ Device ID Device ID - -+ ++ Device ID of Ceton device - Device ID of Ceton device + Device ID of Ceton Tuner @@ -2649,10 +2664,9 @@ + ChannelCheckBoxSetting - -+ Select/Unselect channels for this channel group - Select/Unselect channels for this channel group -+ Select/Unselect Channels for this Channel Group ++ Select channels for this channel group. @@ -2802,7 +2816,7 @@ -@@ -3644,87 +3857,105 @@ +@@ -3644,87 +3858,110 @@ ChannelGroupConfig @@ -2901,6 +2915,11 @@ - Default channel group to be shown in the EPG. Pressing GUIDE key will toggle channel group. + Default channel group to be shown in the EPG. Pressing GUIDE key will toggle channel group. + ++ ++ ++ Select/Unselect channels for this channel group ++ Select channels for this channel group. ++ + + + ChannelGroupsSetting @@ -2939,7 +2958,7 @@ Channel Importer Channel Importer -@@ -3732,8 +3963,8 @@ +@@ -3732,8 +3969,8 @@ Found %n channel(s) @@ -2950,7 +2969,7 @@ -@@ -3800,7 +4031,7 @@ +@@ -3800,7 +4037,7 @@ @@ -2959,7 +2978,7 @@ Found %n transport(s): %n is the number of transports -@@ -3812,148 +4043,159 @@ +@@ -3812,148 +4049,159 @@ @@ -3171,7 +3190,7 @@ Please enter a non-conflicting channel number (or type '%1' to skip, '%2' to skip all): %1 is the translation of "cancel", %2 of "cancel all" Please enter a non-conflicting channel number (or type '%1' to skip, '%2' to skip all): -@@ -3978,32 +4220,32 @@ +@@ -3978,32 +4226,32 @@ Error tuning to transport @@ -3210,7 +3229,7 @@ -@@ -4013,7 +4255,7 @@ +@@ -4013,7 +4261,7 @@ Programmer Error: Channel not created @@ -3219,7 +3238,7 @@ -@@ -4024,72 +4266,80 @@ +@@ -4024,72 +4272,80 @@ ChannelScannerGUI @@ -3323,7 +3342,7 @@ -@@ -4104,7 +4354,7 @@ +@@ -4104,7 +4360,7 @@ ChannelWizard @@ -3332,7 +3351,7 @@ Channel Options Channel Options -@@ -4116,7 +4366,7 @@ +@@ -4116,7 +4372,7 @@ Skip %1 %1 is the skip time @@ -3341,7 +3360,7 @@ -@@ -4127,19 +4377,19 @@ +@@ -4127,19 +4383,19 @@ Skipping Back. @@ -3364,7 +3383,7 @@ -@@ -4163,124 +4413,124 @@ +@@ -4163,124 +4419,124 @@ <New rule> @@ -3513,7 +3532,7 @@ -@@ -4290,82 +4540,82 @@ +@@ -4290,82 +4546,82 @@ Power Search rules cannot include semicolon ( ; ) @@ -3612,41 +3631,41 @@ -@@ -4375,7 +4625,7 @@ +@@ -4375,7 +4631,7 @@ Multiple sports teams (complete example) - Multiple sports teams (complete example) -+ MultipleSports Teams (complete example) ++ Multiple Sports Teams (complete example) -@@ -4590,29 +4840,28 @@ +@@ -4590,52 +4846,51 @@ DVBConfigurationGroup - -+ ++ Could not open card %1 - Could not open card %1 + Could Not Open Card %1 - -+ ++ Could not get card info for card %1 - Could not get card info for card %1 + Could Not Get Card Info for %1 - -+ ++ DiSEqC (Switch, LNB, and Rotor Configuration) DiSEqC (Switch, LNB, and Rotor Configuration) - -+ ++ Input and satellite settings. Input and satellite settings. @@ -3658,16 +3677,35 @@ -@@ -4635,7 +4884,7 @@ + DVBSignalMonitor - +- ++ + Bit Error Rate + Bit Error Rate + + +- ++ + Uncorrected Blocks + Uncorrected Blocks + + +- ++ + Rotor Progress + Rotor Progress + + +- ++ Error: stream handler died - Error: stream handler died + Error: Stream Handler Died -@@ -4643,7 +4892,7 @@ +@@ -4643,7 +4898,7 @@ Failed to open device at %1 @@ -3676,7 +3714,7 @@ -@@ -4651,227 +4900,238 @@ +@@ -4651,227 +4906,238 @@ Title %1 chapter %2 @@ -3709,12 +3747,12 @@ + + + Fetching of lineups failed -+ Fetching of Lineups Failed ++ Fetching Lineups Failed + + + + Fetching of lineups complete -+ Fetching of Lineups Complete ++ Fetching Lineups Complete @@ -3988,7 +4026,7 @@ -@@ -4879,12 +5139,12 @@ +@@ -4879,12 +5145,12 @@ (Nothing to undo) @@ -4003,7 +4041,7 @@ -@@ -4903,7 +5163,7 @@ +@@ -4903,7 +5169,7 @@ @@ -4012,7 +4050,7 @@ Delete Delete the current cut or preserved region Delete -@@ -4975,35 +5235,35 @@ +@@ -4975,35 +5241,35 @@ Reverse Cuts @@ -4056,7 +4094,7 @@ If enabled, move deleted recordings to the 'Deleted' recgroup and turn on autoexpire instead of deleting immediately. If enabled, move deleted recordings to the 'Deleted' recgroup and turn on autoexpire instead of deleting immediately. -@@ -5011,256 +5271,258 @@ +@@ -5011,256 +5277,258 @@ DemoConfigurationGroup @@ -4064,42 +4102,42 @@ A local MPEG file used to simulate a recording. Must be entered as file:/path/movie.mpg - A local MPEG file used to simulate a recording. Must be entered as file:/path/movie.mpg + A local MPEG file used to simulate a recording. Must be entered as file:/path/movie.mpg -+ -+ -+ -+ A local MPEG file used to simulate a recording. -+ - -+ ++ ++ A local MPEG file used to simulate a recording. ++ A local MPEG file used to simulate a recording. ++ ++ ++ File info - File info + File Info - -+ ++ File size - File size + File Size - -+ ++ %1 MB %1 MB - -+ ++ File not readable - File not readable + File Not Readable - -+ ++ File does not exist - File does not exist + File Does Not Exist @@ -4379,7 +4417,7 @@ Universal (Europe) Universal (Europe) -@@ -5275,128 +5537,132 @@ +@@ -5275,128 +5543,132 @@ The Cartesian longitude for your location. Use negative numbers for western coordinates. @@ -4539,7 +4577,7 @@ This defines the offset the frequency coming from the LNB will be in low setting. For bandstacked LNBs this is the vertical/right polarization band. This defines the offset the frequency coming from the LNB will be in low setting. For bandstacked LNBs this is the vertical/right polarization band. -@@ -5411,77 +5677,75 @@ +@@ -5411,77 +5683,75 @@ This defines the offset the frequency coming from the LNB will be in high setting. For bandstacked LNBs this is the horizontal/left polarization band. @@ -4632,7 +4670,7 @@ DTV Device Configuration DTV Device Configuration -@@ -5489,29 +5753,33 @@ +@@ -5489,29 +5759,33 @@ EPGSettings @@ -4674,7 +4712,7 @@ -@@ -5529,12 +5797,12 @@ +@@ -5529,12 +5803,12 @@ Enter new category @@ -4689,7 +4727,7 @@ -@@ -5545,22 +5813,22 @@ +@@ -5545,22 +5819,22 @@ Downloading selected artwork... @@ -4716,7 +4754,7 @@ -@@ -5611,7 +5879,7 @@ +@@ -5611,7 +5885,7 @@ Yes, Exit now @@ -4725,7 +4763,7 @@ -@@ -5644,12 +5912,12 @@ +@@ -5644,12 +5918,12 @@ Yes please @@ -4740,48 +4778,70 @@ -@@ -5668,32 +5936,32 @@ +@@ -5668,34 +5942,51 @@ ExternalConfigurationGroup - -+ ++ ++ Command path ++ Command Path ++ ++ ++ A 'black box' application controlled via stdin, status on stderr and TransportStream read from stdout - A 'black box' application controlled via stdin, status on stderr and TransportStream read from stdout + A 'black box' application controlled via stdin, status on stderr and TransportStream read from stdout. - -+ ++ File info - File info + File Info - -+ ++ '%1' is valid. '%1' is valid. - -+ ++ ++ WARNING: '%1' is not readable. ++ WARNING: '%1' is not readable. ++ ++ ++ ++ WARNING: '%1' is not executable. ++ WARNING: '%1' is not executable. ++ ++ ++ ++ WARNING: '%1' does not exist. ++ WARNING: '%1' does not exist. ++ ++ '%1' is not readable. - '%1' is not readable. +- '%1' is not readable. ++ '%1' is not readable. - -+ '%1' is not executable. - '%1' is not executable. +- '%1' is not executable. ++ '%1' is not executable. - -+ '%1' does not exist. - '%1' does not exist. +- '%1' does not exist. ++ '%1' does not exist. -@@ -5708,22 +5976,22 @@ + + +@@ -5708,22 +5999,22 @@ The command to use when playing this kind of file. To use MythTV's Internal player, use "Internal" as the player. For all other players, you can use %s to substitute the filename. @@ -4808,7 +4868,7 @@ -@@ -5738,7 +6006,7 @@ +@@ -5738,7 +6029,7 @@ Enter the new extension: @@ -4817,7 +4877,7 @@ -@@ -5747,45 +6015,45 @@ +@@ -5747,45 +6038,45 @@ Could not open %1 %1 is the filename @@ -4844,7 +4904,8 @@ + Cannot Seek in File - +- ++ Failed to open remote file %1 %1 is the filename - Failed to open remote file %1 @@ -4871,12 +4932,12 @@ Complete Complete -@@ -5793,15 +6061,88 @@ +@@ -5793,15 +6084,88 @@ FirewireDesc - -+ ++ Description Description @@ -4951,7 +5012,7 @@ + + + Warning! This will erase settings for: hidden images, directory covers and re-orientations. You will have to set them again after re-scanning. -+ Warning! This will erase settings for: hidden images, directory covers and re-orientations. You will have to set them again after re-scanning. ++ Warning! This will erase settings for hidden images, directory covers, and re-orientations. You will have to set them again after re-scanning. + + + @@ -4962,7 +5023,7 @@ Gallery Settings Gallery Settings -@@ -5809,135 +6150,135 @@ +@@ -5809,135 +6173,135 @@ GallerySlideView @@ -5126,7 +5187,7 @@ -@@ -5950,7 +6291,7 @@ +@@ -5950,7 +6314,7 @@ Start @@ -5135,7 +5196,7 @@ End Slideshow has reached last slide End -@@ -5959,12 +6300,12 @@ +@@ -5959,12 +6323,12 @@ GalleryThumbView @@ -5150,7 +5211,7 @@ No images found. Scan storage group using menu, or insert/mount local media. -@@ -5975,477 +6316,477 @@ +@@ -5975,477 +6339,477 @@ @@ -5746,7 +5807,7 @@ Import command failed. Error: %1 Import command failed. -@@ -6455,117 +6796,117 @@ +@@ -6455,117 +6819,117 @@ GeneralRecPrioritiesSettings @@ -5895,7 +5956,7 @@ Accessibility Options Accessibility Options -@@ -6573,270 +6914,271 @@ +@@ -6573,270 +6937,271 @@ GeneralSettings @@ -6250,7 +6311,7 @@ General (Channel Groups) General (Channel Groups) -@@ -6866,7 +7208,7 @@ +@@ -6866,7 +7231,7 @@ Exit this wizard, save no changes. @@ -6259,7 +6320,7 @@ -@@ -6876,7 +7218,7 @@ +@@ -6876,7 +7241,7 @@ Submitting your hardware profile... @@ -6268,7 +6329,7 @@ -@@ -6911,7 +7253,7 @@ +@@ -6911,7 +7276,7 @@ Deleting your hardware profile... @@ -6277,7 +6338,7 @@ -@@ -6944,12 +7286,12 @@ +@@ -6944,12 +7309,12 @@ Save your changes and close this window. @@ -6292,7 +6353,7 @@ -@@ -6959,159 +7301,159 @@ +@@ -6959,159 +7324,159 @@ Searching for data sources... @@ -6500,33 +6561,33 @@ Delete '%1' %2 rule? Delete '%1' %2 rule? -@@ -7119,12 +7461,12 @@ +@@ -7119,12 +7484,12 @@ HDHomeRunConfigurationGroup - -+ ++ Description Description - -+ ++ Recording Options Recording Options -@@ -7132,22 +7474,22 @@ +@@ -7132,22 +7497,22 @@ HDHomeRunDeviceID - -+ ++ Device ID Device ID - -+ ++ Device ID of HDHomeRun device - Device ID of HDHomeRun device + Device ID of HDHomeRun Device @@ -6538,32 +6599,32 @@ - - - -+ -+ -+ ++ ++ ++ Manually Enter IP Address Manually Enter IP Address -@@ -7155,122 +7497,122 @@ +@@ -7155,122 +7520,122 @@ HDPVRConfigurationGroup - -+ ++ Probed info - Probed info + Probed Info - -+ ++ Failed to open - Failed to open + Failed to Open - -+ ++ Failed to probe - Failed to probe + Failed to Probe @@ -6590,7 +6651,7 @@ + The program is able to auto-expire - The program is able to auto-expire -+ Program Is Set to Auto-expire ++ Program is Set to Auto-expire - @@ -6702,7 +6763,7 @@ -@@ -7296,7 +7638,7 @@ +@@ -7296,7 +7661,7 @@ Package installed @@ -6711,7 +6772,7 @@ -@@ -7747,7 +8089,7 @@ +@@ -7747,7 +8112,7 @@ Use Link-Local @@ -6720,7 +6781,7 @@ -@@ -8060,7 +8402,7 @@ +@@ -8060,7 +8425,7 @@ Auto-Expire @@ -6729,7 +6790,7 @@ -@@ -8080,7 +8422,7 @@ +@@ -8080,7 +8445,7 @@ Delete and Re-Record @@ -6738,7 +6799,7 @@ -@@ -8165,7 +8507,7 @@ +@@ -8165,7 +8530,7 @@ Allow Auto-Expire @@ -6747,7 +6808,7 @@ -@@ -8449,7 +8791,7 @@ +@@ -8449,7 +8814,7 @@ Loading ... @@ -6756,7 +6817,7 @@ -@@ -8661,7 +9003,7 @@ +@@ -8661,7 +9026,7 @@ Encountered malformed channel @@ -6765,52 +6826,52 @@ -@@ -8691,34 +9033,34 @@ +@@ -8691,34 +9056,34 @@ ImportConfigurationGroup - -+ ++ A local file used to simulate a recording. Leave empty to use MythEvents to trigger an external program to import recording files. A local file used to simulate a recording. Leave empty to use MythEvents to trigger an external program to import recording files. - -+ ++ File info - File info + File Info - -+ ++ File size - File size + File Size - -+ ++ %1 MB %1 MB - -+ ++ File not readable - File not readable + File Not Readable - -+ ++ File %1 does not exist - File %1 does not exist + File %1 Does Not Exist -@@ -8726,27 +9068,27 @@ +@@ -8726,27 +9091,27 @@ Name of the icon file @@ -6843,7 +6904,7 @@ -@@ -8761,7 +9103,7 @@ +@@ -8761,7 +9126,7 @@ No matches found for "%1" @@ -6852,7 +6913,7 @@ -@@ -8772,7 +9114,7 @@ +@@ -8772,7 +9137,7 @@ No matches found for %1 @@ -6861,7 +6922,7 @@ -@@ -8787,12 +9129,12 @@ +@@ -8787,12 +9152,12 @@ Initializing, please wait... @@ -6876,7 +6937,7 @@ -@@ -8805,20 +9147,20 @@ +@@ -8805,20 +9170,20 @@ Choose icon for channel %1 @@ -6901,7 +6962,7 @@ Icon choices submitted successfully. Icon choices submitted successfully. -@@ -8826,17 +9168,17 @@ +@@ -8826,17 +9191,17 @@ ImportSettings @@ -6922,7 +6983,7 @@ Command/script that can be run from the menu. %TMPDIR% will be replaced by a new temporary directory, which the import dialog will show automatically. The directory will be removed when Gallery exits. Command/script that can be run from the menu. -@@ -8877,7 +9219,7 @@ +@@ -8877,7 +9242,7 @@ Dir size @@ -6931,7 +6992,7 @@ -@@ -8913,7 +9255,7 @@ +@@ -8913,7 +9278,7 @@ Last scan @@ -6940,7 +7001,7 @@ -@@ -8923,7 +9265,7 @@ +@@ -8923,7 +9288,7 @@ File size @@ -6949,22 +7010,21 @@ -@@ -8940,6 +9282,14 @@ +@@ -8940,6 +9305,13 @@ + IpAddressSettings + -+ + Allow this backend to receive connections on any IP Address assigned to it. Recommended for most users for ease and reliability. -+ Allow this backend to receive connections on any IP Address assigned to it. Recommended for most users for ease and reliability. ++ Allow this backend to receive connections on any IP Address assigned to it. Recommended for most users for ease and reliability. + + + JobQueue -@@ -8954,7 +9304,7 @@ +@@ -8954,7 +9326,7 @@ Look up Metadata @@ -6973,7 +7033,7 @@ -@@ -8969,12 +9319,12 @@ +@@ -8969,12 +9341,12 @@ Unable to retrieve program info from database @@ -6988,7 +7048,7 @@ -@@ -8989,7 +9339,7 @@ +@@ -8989,7 +9361,7 @@ Finished. @@ -6997,7 +7057,7 @@ -@@ -9005,12 +9355,12 @@ +@@ -9005,12 +9377,12 @@ Retry limit exceeded @@ -7012,7 +7072,7 @@ -@@ -9020,12 +9370,12 @@ +@@ -9020,12 +9392,12 @@ Unable to find mythmetadatalookup @@ -7027,7 +7087,7 @@ -@@ -9036,7 +9386,7 @@ +@@ -9036,7 +9408,7 @@ Could not open new database connection for commercial detector. @@ -7036,7 +7096,7 @@ -@@ -9046,7 +9396,7 @@ +@@ -9046,7 +9418,7 @@ Unable to find mythcommflag @@ -7045,7 +7105,7 @@ -@@ -9061,32 +9411,32 @@ +@@ -9061,32 +9433,32 @@ Successfully Completed. @@ -7084,7 +7144,7 @@ -@@ -9181,43 +9531,43 @@ +@@ -9181,43 +9553,43 @@ Waiting for key press @@ -7136,7 +7196,7 @@ RECORDING| RECORDING| -@@ -9227,170 +9577,169 @@ +@@ -9227,170 +9599,169 @@ Preferred language @@ -7352,7 +7412,7 @@ -@@ -9405,47 +9754,46 @@ +@@ -9405,47 +9776,46 @@ No lyrics found for this track @@ -7364,21 +7424,21 @@ MPEGConfigurationGroup - -+ ++ Probed info - Probed info + Probed Info - -+ ++ Failed to open - Failed to open + Failed to Open - -+ ++ Failed to probe - Failed to probe + Failed to Probe @@ -7413,7 +7473,7 @@ Video on the desktop will skip this many frames for each frame drawn. Set to 0 to show every frame. Video on the desktop will skip this many frames for each frame drawn. Set to 0 to show every frame. -@@ -9453,23 +9801,22 @@ +@@ -9453,23 +9823,22 @@ MacDockSettings @@ -7443,7 +7503,7 @@ Video in the dock icon will skip this many frames for each frame drawn. Set to 0 to show every frame. Video in the dock icon will skip this many frames for each frame drawn. Set to 0 to show every frame. -@@ -9477,33 +9824,32 @@ +@@ -9477,33 +9846,32 @@ MacFloatSettings @@ -7485,7 +7545,7 @@ The opacity of the floating window. Set to 100 for completely opaque, set to 0 for completely transparent. The opacity of the floating window. Set to 100 for completely opaque, set to 0 for completely transparent. -@@ -9511,33 +9857,32 @@ +@@ -9511,33 +9879,32 @@ MacMainSettings @@ -7527,7 +7587,7 @@ The opacity of the main window. Set to 100 for completely opaque, set to 0 for completely transparent. The opacity of the main window. Set to 100 for completely opaque, set to 0 for completely transparent. -@@ -9545,252 +9890,269 @@ +@@ -9545,252 +9912,269 @@ MainGeneralSettings @@ -7875,7 +7935,7 @@ Shutdown/Reboot Settings Shutdown/Reboot Settings -@@ -9800,135 +10162,132 @@ +@@ -9800,135 +10184,132 @@ 5 weekdays if daily @@ -8054,7 +8114,7 @@ -@@ -9961,12 +10320,12 @@ +@@ -9961,12 +10342,12 @@ Exit without saving settings @@ -8069,7 +8129,7 @@ -@@ -10004,7 +10363,7 @@ +@@ -10004,7 +10385,7 @@ Unknown Genre @@ -8078,7 +8138,7 @@ Never Played Never Played -@@ -10014,7 +10373,7 @@ +@@ -10014,7 +10395,7 @@ Client disconnected @@ -8087,7 +8147,7 @@ -@@ -10050,1505 +10409,1509 @@ +@@ -10050,1505 +10431,1509 @@ MythControls @@ -9147,7 +9207,7 @@ + Toggle OSD playback information - Toggle OSD playback information -+ Toggle Osd Playback Information ++ Toggle OSD Playback Information - @@ -9283,14 +9343,14 @@ + Jump back 10x the normal amount - Jump back 10x the normal amount -+ Jump Back 10x the Normal Amount ++ Jump Back 10x Normal - + Jump forward 10x the normal amount - Jump forward 10x the normal amount -+ Jump Forward 10x the Normal Amount ++ Jump Forward 10x Normal - @@ -9594,7 +9654,7 @@ + Turn the display on - Turn the display on -+ Turn the Display on ++ Turn the Display On - @@ -9668,7 +9728,7 @@ + Zoom in on browser window - Zoom in on browser window -+ Zoom in on Browser Window ++ Zoom In on Browser Window - @@ -9682,7 +9742,7 @@ + Toggle where keyboard input goes to - Toggle where keyboard input goes to -+ Toggle Where Keyboard Input Goes to ++ Toggle Where Keyboard Input Goes To - @@ -9724,28 +9784,28 @@ + Scroll down half a page - Scroll down half a page -+ Scroll Down Half a Page ++ Scroll Down Half Page - + Scroll up half a page - Scroll up half a page -+ Scroll Up Half a Page ++ Scroll Up Half Page - + Scroll left half a page - Scroll left half a page -+ Scroll Left Half a Page ++ Scroll Left Half Page - + Scroll right half a page - Scroll right half a page -+ Scroll Right Half a Page ++ Scroll Right Half Page - @@ -9991,7 +10051,7 @@ + Zoom image in - Zoom image in -+ Zoom Image in ++ Zoom Image In - @@ -10072,7 +10132,7 @@ MythImage Media Handler 2/2 MythImage Media Handler 2/2 -@@ -11576,12 +11939,12 @@ +@@ -11576,12 +11961,12 @@ Actions By Context @@ -10087,7 +10147,7 @@ -@@ -11642,57 +12005,57 @@ +@@ -11642,57 +12027,57 @@ Keys @@ -10095,7 +10155,7 @@ + Open an Xterm window - Open an Xterm window -+ Open an Xterm Window ++ Open Xterm Window - @@ -10162,7 +10222,7 @@ MythDVD DVD Media Handler MythDVD DVD Media Handler -@@ -11700,9 +12063,9 @@ +@@ -11700,9 +12085,9 @@ MythCoreContext @@ -10174,7 +10234,7 @@ -@@ -11721,184 +12084,183 @@ +@@ -11721,184 +12106,183 @@ MythPlayer @@ -10209,14 +10269,14 @@ + Could not find an A/V decoder - Could not find an A/V decoder -+ Could Not Find an A/V Decoder ++ Could Not Find a Decoder - + Could not initialize A/V decoder - Could not initialize A/V decoder -+ Could Not Initialize A/V Decoder ++ Could Not Initialize Decoder - @@ -10417,7 +10477,7 @@ %n second(s) %n second -@@ -11906,42 +12268,42 @@ +@@ -11906,42 +12290,42 @@ @@ -10470,7 +10530,7 @@ Disabled Night Mode Disabled Night Mode -@@ -11964,7 +12326,7 @@ +@@ -11964,7 +12348,7 @@ Failed to read key from: %1 @@ -10479,7 +10539,7 @@ -@@ -12019,7 +12381,7 @@ +@@ -12019,7 +12403,7 @@ Wakeup time format @@ -10488,7 +10548,7 @@ -@@ -12039,7 +12401,7 @@ +@@ -12039,7 +12423,7 @@ Command to reboot @@ -10497,7 +10557,7 @@ -@@ -12049,7 +12411,7 @@ +@@ -12049,7 +12433,7 @@ Command to shutdown @@ -10506,7 +10566,7 @@ -@@ -12059,7 +12421,7 @@ +@@ -12059,7 +12443,7 @@ Command to run to start the Frontend @@ -10515,7 +10575,7 @@ -@@ -12069,7 +12431,7 @@ +@@ -12069,7 +12453,7 @@ Command to run Xterm @@ -10524,7 +10584,7 @@ -@@ -12085,212 +12447,217 @@ +@@ -12085,212 +12469,217 @@ MythSystemEventEditor @@ -10539,14 +10599,14 @@ Recording pending - Recording pending + Recording Pending - - -- ++ ++ + + Recording about to fail + Recording About to Fail -+ -+ + + +- + Recording failing - Recording failing @@ -10823,7 +10883,7 @@ -@@ -12303,12 +12670,12 @@ +@@ -12303,12 +12692,12 @@ Enter standby mode @@ -10838,7 +10898,7 @@ -@@ -12339,12 +12706,12 @@ +@@ -12339,12 +12728,12 @@ Ok @@ -10853,7 +10913,7 @@ -@@ -12390,8 +12757,8 @@ +@@ -12390,8 +12779,8 @@ MythUISearchDialog @@ -10864,7 +10924,7 @@ %n match(es) %n match -@@ -12402,76 +12769,76 @@ +@@ -12402,76 +12791,76 @@ MythUIWebBrowser @@ -10965,7 +11025,7 @@ Cancel Cancel -@@ -12482,7 +12849,7 @@ +@@ -12482,7 +12871,7 @@ Period %1 start time @@ -10974,7 +11034,7 @@ -@@ -12494,7 +12861,7 @@ +@@ -12494,7 +12883,7 @@ Period %1 end time @@ -10983,7 +11043,7 @@ -@@ -12541,7 +12908,7 @@ +@@ -12541,7 +12930,7 @@ Daily Wakeup/ShutDown Period %1 @@ -10992,7 +11052,7 @@ -@@ -12570,7 +12937,7 @@ +@@ -12570,7 +12959,7 @@ NetworkControl @@ -11001,7 +11061,7 @@ Network Control Network Control -@@ -12578,87 +12945,87 @@ +@@ -12578,87 +12967,87 @@ OSDSettings @@ -11114,7 +11174,7 @@ On-screen Display On-screen Display -@@ -12719,7 +13086,7 @@ +@@ -12719,7 +13108,7 @@ PaneATSC @@ -11123,7 +11183,7 @@ Scanning Range Scanning Range -@@ -12727,12 +13094,12 @@ +@@ -12727,12 +13116,12 @@ PaneDVBUtilsImport @@ -11139,20 +11199,18 @@ Location of the channels.conf file. Location of the channels.conf file. -@@ -12802,67 +13169,80 @@ +@@ -12802,67 +13191,78 @@ + PlayBackScaling + -+ + Scaling -+ Scaling ++ Scaling + + -+ + No scaling -+ No Scaling ++ No Scaling + + + @@ -11240,7 +11298,7 @@ %1 Group Play Group %1 is the name of the playgroup -@@ -12872,410 +13252,417 @@ +@@ -12872,631 +13272,651 @@ PlayGroupEditor @@ -11553,7 +11611,7 @@ + This recording is already being deleted - This recording is already being deleted -+ This Recording Is Already Being Deleted ++ This Recording is Already Being Deleted - @@ -11570,7 +11628,7 @@ + This recording is currently Available - This recording is currently Available -+ This Recording Is Currently Available ++ This Recording is Currently Available - @@ -11593,14 +11651,14 @@ + This recording is currently being deleted and is unavailable - This recording is currently being deleted and is unavailable -+ This Recording Is Currently Being Deleted and Is Unavailable ++ This Recording is Currently Being Deleted and is Unavailable - + This recording has been deleted and is unavailable - This recording has been deleted and is unavailable -+ This Recording Has Been Deleted and Is Unavailable ++ This Recording Has Been Deleted and is Unavailable - @@ -11614,14 +11672,14 @@ + The file for this recording is empty. - The file for this recording is empty. -+ The File for This Recording Is Empty ++ The File for This Recording is Empty - + This recording is not yet available. - This recording is not yet available. -+ This Recording Is Not Yet Available ++ This Recording is Not Yet Available - @@ -11802,8 +11860,10 @@ + There is %n item(s) in the playlist. Actions affect all items in the playlist - There is %n item in the playlist. Actions affect all items in the playlist -@@ -13283,220 +13670,233 @@ +- There is %n item in the playlist. Actions affect all items in the playlist +- There are %n items in the playlist. Actions affect all items in the playlist ++ There is %n item in the playlist. Actions affect all items in the playlist. ++ There are %n items in the playlist. Actions affect all items in the playlist. @@ -11846,14 +11906,14 @@ + There is %n recording in this display group, which consumes %1 GiB. + There are %n recordings in this display group, which consume %1 GiB. + - - -- ++ ++ + + There is no recording in this display group. + There Are No Recordings in This Display Group -+ -+ + + +- + Do not preserve this episode - Do not preserve this episode @@ -12108,7 +12168,7 @@ %1 [%n item(s)] %1 [%n item] -@@ -13504,32 +13904,32 @@ +@@ -13504,32 +13924,32 @@ @@ -12147,7 +12207,7 @@ New Recording Group New Recording Group -@@ -13537,18 +13937,22 @@ +@@ -13537,18 +13957,22 @@ PlaybackProfileConfig @@ -12174,7 +12234,7 @@ Add New Entry Add New Entry -@@ -13556,662 +13960,798 @@ +@@ -13556,662 +13980,808 @@ PlaybackProfileConfigs @@ -12387,14 +12447,14 @@ When unchecked the deblocking loopfilter will be disabled - When unchecked the deblocking loopfilter will be disabled + When unchecked the deblocking loopfilter will be disabled. -+ -+ -+ -+ Invalid frame rate specification(%1), discarded -+ Invalid Frame Rate Specification(%1), Discarded - ++ ++ Invalid frame rate specification(%1), discarded ++ Invalid Frame Rate Specification(%1), Discarded ++ ++ + Main deinterlacing method. %1 - Main deinterlacing method. %1 @@ -13066,6 +13126,16 @@ - - ++ ++ Scaling ++ Scaling ++ ++ ++ ++ No scaling ++ No Scaling ++ ++ + + Playback settings + Playback Settings @@ -13179,7 +13249,7 @@ -@@ -14224,12 +14764,12 @@ +@@ -14224,12 +14794,12 @@ This can be any command to launch a DVD player. Internal is the default. For other players, %d will be substituted for the DVD device (e.g. /dev/dvd). @@ -13194,7 +13264,7 @@ -@@ -14249,12 +14789,12 @@ +@@ -14249,12 +14819,12 @@ Exit without saving settings @@ -13209,7 +13279,7 @@ -@@ -14308,12 +14848,21 @@ +@@ -14308,12 +14878,21 @@ ProfileGroup @@ -13222,19 +13292,19 @@ + + Profile Group + Profile Group - - -- ++ ++ + + Profiles + Profiles -+ -+ + + +- + Transcoders Transcoders -@@ -14321,52 +14870,52 @@ +@@ -14321,52 +14900,52 @@ ProfileGroupEditor @@ -13262,14 +13332,15 @@ Yes, delete group - Yes, delete group + Yes, Delete Group ++ ++ ++ No, Don't delete group ++ No, Keep Group - - No, Don't delete group +- No, Don't delete group - No, Don't delete group -+ No, Keep Group -+ -+ + + Profile Group + Profile Group @@ -13301,7 +13372,7 @@ %n star(s) %n star -@@ -14374,199 +14923,208 @@ +@@ -14374,199 +14953,204 @@ @@ -13372,10 +13443,6 @@ - -+ Damaged -+ Damaged -+ -+ + CC Closed Captioned @@ -13549,7 +13616,7 @@ %n hour(s) %n hour -@@ -14574,133 +15132,126 @@ +@@ -14574,133 +15158,126 @@ @@ -13709,7 +13776,7 @@ -@@ -14794,7 +15345,7 @@ +@@ -14794,7 +15371,7 @@ Select a letter... @@ -13718,7 +13785,7 @@ -@@ -14804,7 +15355,7 @@ +@@ -14804,7 +15381,7 @@ Select a program... @@ -13727,7 +13794,7 @@ -@@ -14951,7 +15502,7 @@ +@@ -14951,7 +15528,7 @@ Start search from date and time @@ -13736,7 +13803,7 @@ -@@ -14971,12 +15522,12 @@ +@@ -14971,12 +15548,12 @@ Sort By Title @@ -13751,7 +13818,7 @@ -@@ -15001,7 +15552,7 @@ +@@ -15001,7 +15578,7 @@ Select a search stored from @@ -13760,7 +13827,7 @@ -@@ -15027,14 +15578,14 @@ +@@ -15027,14 +15604,14 @@ @@ -13778,7 +13845,7 @@ %1 of %2 Current position in list where %1 is the position, %2 is the total count %1 of %2 -@@ -15062,22 +15613,22 @@ +@@ -15062,22 +15639,22 @@ Allow this episode to re-record @@ -13805,7 +13872,7 @@ -@@ -15211,43 +15762,43 @@ +@@ -15211,43 +15788,43 @@ Sort By Title @@ -13856,7 +13923,7 @@ -@@ -15284,13 +15835,13 @@ +@@ -15284,13 +15861,13 @@ QObject @@ -13868,35 +13935,35 @@ - - -+ -+ ++ ++ %n hour(s) %n hour -@@ -15298,8 +15849,8 @@ +@@ -15298,8 +15875,8 @@ - - ++ + -+ %n minute(s) %n minute -@@ -15307,24 +15858,24 @@ +@@ -15307,24 +15884,24 @@ - -+ ++ + Manual Record Manual Record - -+ ++ Re-Record - Re-Record + Re-record @@ -13905,18 +13972,18 @@ - - - -+ -+ ++ ++ Repeat Repeat - -+ ++ %n star(s) %n star -@@ -15333,60 +15884,57 @@ +@@ -15333,60 +15910,57 @@ @@ -13937,8 +14004,8 @@ - - - -+ -+ ++ ++ - @@ -13948,48 +14015,48 @@ - -+ ++ Playing Playing - - -+ ++ Recording Recording - -+ ++ Transcoding Transcoding - -+ ++ PIP PIP - -+ ++ Blu-ray Disc Blu-ray Disc - -+ ++ PBP PBP - -+ ++ File transfer File transfer -@@ -15436,47 +15984,47 @@ +@@ -15436,47 +16010,47 @@ Record only this showing @@ -14046,7 +14113,7 @@ -@@ -15513,655 +16061,585 @@ +@@ -15513,655 +16087,585 @@ Override Recording @@ -14490,267 +14557,267 @@ - -+ ++ Default Recording Profile Default Default - -+ ++ High Quality Recording Profile High Quality High Quality - -+ ++ Live TV Recording Profile Live TV Live TV - -+ ++ Low Quality Recording Profile Low Quality Low Quality - -+ ++ Medium Quality Recording Profile Medium Quality Medium Quality - -+ ++ CRC IP Recorders Recording Profile Group Name CRC IP Recorders - -+ ++ FireWire Input Recording Profile Group Name FireWire Input - -+ ++ Freebox Input Recording Profile Group Name Freebox Input - -+ ++ Hardware DVB Encoders Recording Profile Group Name Hardware DVB Encoders - -+ ++ Hardware HDTV Recording Profile Group Name Hardware HDTV - -+ ++ Hardware MJPEG Encoders (Matrox G200-TV, Miro DC10, etc) Recording Profile Group Name Hardware MJPEG Encoders (Matrox G200-TV, Miro DC10, etc) - -+ ++ HD-PVR Recorders Recording Profile Group Name HD-PVR Recorders - -+ ++ HDHomeRun Recorders Recording Profile Group Name HDHomeRun Recorders - -+ ++ MPEG-2 Encoders (PVR-x50, PVR-500) Recording Profile Group Name MPEG-2 Encoders (PVR-x50, PVR-500) - -+ ++ Transcoders Recording Profile Group Name Transcoders - -+ ++ V4L2 Encoders Recording Profile Group Name V4L2 Encoders - -+ ++ All Programs Recording Group All Programs All Programs - -+ ++ All Recording Group All Programs -- short form All - -+ ++ Default Recording Group Default Default - -+ ++ Deleted Recording Group Deleted Deleted - -+ ++ Default Storage Group Name Default - -+ ++ Commercial Detection Commercial Detection - -+ ++ %1 GB GigaBytes %1 GB - -+ ++ DVD DVD - -+ ++ HTTP Streaming HTTP Streaming - -+ ++ RTSP Streaming RTSP Streaming - -+ ++ Recording Recorded file, object not action Recording - -+ ++ Preview Generation Preview Generation - -+ ++ User Job User Job - -+ ++ MPEG-2 Recording Profile MPEG-2 MPEG-2 - -+ ++ RTjpeg/MPEG-4 Recording Profile RTjpeg/MPEG-4 RTjpeg/MPEG-4 - -+ ++ Software Encoders (V4L based) Recording Profile Group Name Software Encoders (V4L based) - -+ ++ USB MPEG-4 Encoder (Plextor ConvertX, etc) Recording Profile Group Name USB MPEG-4 Encoder (Plextor ConvertX, etc) - -+ ++ Live TV Recording Group Live TV Live TV - -+ ++ All Programs - %1 Show all programs from a specific recording group All Programs - %1 - -+ ++ Live TV Storage Group Name Live TV - -+ ++ Thumbnails Storage Group Name Thumbnails - -+ ++ DB Backups Storage Group Name DB Backups - -+ ++ Default Playback Group Name Default @@ -14821,7 +14888,7 @@ Pre & Post Roll Pre & Post Roll -@@ -16222,17 +16700,17 @@ +@@ -16222,17 +16726,17 @@ Audio track @@ -14842,7 +14909,7 @@ -@@ -16307,208 +16785,212 @@ +@@ -16307,208 +16811,212 @@ Normal @@ -14872,8 +14939,8 @@ - - -+ -+ ++ ++ Port Port @@ -14886,8 +14953,8 @@ - - -+ -+ ++ ++ Wake command - Wake command + Wake Command @@ -14970,7 +15037,7 @@ + Backend is online - Backend is online -+ Backend Is Online ++ Backend is Online - @@ -15014,8 +15081,8 @@ - - -+ -+ ++ ++ - - @@ -15115,12 +15182,12 @@ , firmware: %2 , firmware: %2 -@@ -16518,13 +17000,13 @@ +@@ -16518,13 +17026,13 @@ Sports - -+ ++ Video Video @@ -15132,7 +15199,7 @@ All Channels All Channels -@@ -16541,12 +17023,12 @@ +@@ -16541,12 +17049,12 @@ Failed to add channel %1 @@ -15147,7 +15214,7 @@ -@@ -16556,7 +17038,7 @@ +@@ -16556,7 +17064,7 @@ Unknown decryption status @@ -15156,7 +15223,7 @@ -@@ -16571,41 +17053,41 @@ +@@ -16571,41 +17079,41 @@ %1 -- Timed out @@ -15206,7 +15273,7 @@ : Found %n : Found %n -@@ -16613,28 +17095,28 @@ +@@ -16613,28 +17121,28 @@ @@ -15237,20 +15304,20 @@ - -+ ++ Broadcast Broadcast -@@ -16648,7 +17130,7 @@ +@@ -16648,7 +17156,7 @@ - -+ ++ High High -@@ -16758,9 +17240,9 @@ +@@ -16758,9 +17266,9 @@ France @@ -15263,7 +15330,31 @@ Frequency Frequency -@@ -16807,8 +17289,8 @@ +@@ -16785,30 +17293,30 @@ + Hue + + +- + + + + + + ++ + Seen + Seen + + +- + + + + + + ++ + Matching Matching @@ -15274,7 +15365,7 @@ Analog Analog -@@ -16824,532 +17306,523 @@ +@@ -16824,532 +17332,523 @@ Play @@ -15962,7 +16053,7 @@ -@@ -17357,410 +17830,418 @@ +@@ -17357,410 +17856,418 @@ Default (Template) @@ -16493,7 +16584,7 @@ -@@ -17786,448 +18267,464 @@ +@@ -17786,448 +18293,464 @@ Auto-Skip OFF @@ -16514,14 +16605,14 @@ - -+ ++ On known multiplex... - On known multiplex... + On Known Multiplex... - -+ ++ Error querying recorder state - Error querying recorder state + Error Querying Recorder State @@ -17063,7 +17154,7 @@ Uses OpenMAX to alpha blend the OSD onto the video. Uses OpenMAX to alpha blend the OSD onto the video. -@@ -18388,217 +18885,230 @@ +@@ -18388,217 +18911,240 @@ Volume @@ -17092,7 +17183,7 @@ - + + -+ ++ Channel frequency table - Channel frequency table + Channel Frequency Table @@ -17168,6 +17259,11 @@ No grabber - No grabber + No Grabber ++ ++ ++ ++ This will usually only work with ATSC or DVB channels, and generally provides data only for the next few days. ++ This will usually only work with ATSC or DVB channels, and generally provides data only for the next few days. - @@ -17185,7 +17281,12 @@ - -+ ++ ++ Specify the command to run, with any needed arguments. ++ Specify the command to run, with any needed arguments. ++ ++ ++ Audio device - Audio device + Audio Device @@ -17196,30 +17297,30 @@ - - - -+ -+ -+ -+ -+ ++ ++ ++ ++ ++ (None) (None) - -+ ++ Do not adjust volume - Do not adjust volume + Do Not Adjust Volume - -+ ++ Enable this option for budget BT878 based DVB-T cards such as the AverTV DVB-T which require the audio volume to be left alone. Enable this option for budget BT878 based DVB-T cards such as the AverTV DVB-T which require the audio volume to be left alone. - -+ ++ When you change this setting, the text below should change to the name and type of your card. If the card cannot be opened, an error message will be displayed. When you change this setting, the text below should change to the name and type of your card. If the card cannot be opened, an error message will be displayed. @@ -17228,131 +17329,131 @@ - - - -+ -+ -+ -+ ++ ++ ++ ++ Warning: already in use - Warning: already in use + Warning: Already in Use - -+ ++ Subtype Subtype - -+ ++ Frontend ID Frontend ID - -+ ++ Wait for SEQ start header. - Wait for SEQ start header. + Wait for SEQ Start Header - -+ ++ Open DVB card on demand - Open DVB card on demand + Open DVB Card on Demand - -+ ++ GUID GUID - -+ ++ Cable box model - Cable box model + Cable Box Model - -+ ++ URL of M3U containing RTSP/RTP/UDP channel URLs. URL of M3U containing RTSP/RTP/UDP channel URLs. - -+ ++ DVB-T/S/C, ATSC or ISDB-T tuner card - DVB-T/S/C, ATSC or ISDB-T tuner card + DVB-T/S/C, ATSC or ISDB-T Tuner Card - -+ ++ HD-PVR H.264 encoder - HD-PVR H.264 encoder + HD-PVR H.264 Encoder - -+ ++ HDHomeRun networked tuner - HDHomeRun networked tuner + HDHomeRun Networked Tuner - -+ ++ Ceton Cablecard tuner - Ceton Cablecard tuner + Ceton Cablecard Tuner - -+ ++ IPTV recorder - IPTV recorder + IPTV Recorder - -+ ++ Analog to MPEG-2 encoder card (PVR-150/250/350, etc) - Analog to MPEG-2 encoder card (PVR-150/250/350, etc) + Analog to MPEG-2 Encoder Card (PVR-150/250/350, etc) - -+ ++ Analog to MJPEG encoder card (Matrox G200, DC10, etc) - Analog to MJPEG encoder card (Matrox G200, DC10, etc) + Analog to MJPEG Encoder Card (Matrox G200, DC10, etc) - -+ ++ Analog to MPEG-4 encoder (Plextor ConvertX USB, etc) - Analog to MPEG-4 encoder (Plextor ConvertX USB, etc) + Analog to MPEG-4 Encoder (Plextor ConvertX USB, etc) - -+ ++ Analog capture card - Analog capture card + Analog Capture Card - -+ ++ Generic Generic - -+ ++ Choose the model that most closely resembles your set top box. Depending on firmware revision SA4200HD may work better for a SA3250HD box. Choose the model that most closely resembles your set top box. Depending on firmware revision SA4200HD may work better for a SA3250HD box. @@ -17369,7 +17470,7 @@ You MUST run 'mythfilldatabase --manual' the first time, instead of just 'mythfilldatabase'. Your grabber does not provide channel numbers, so you have to set them manually. -@@ -18607,472 +19117,481 @@ +@@ -18607,472 +19153,475 @@ Your grabber does not provide channel numbers, so you have to set them manually. @@ -17380,97 +17481,97 @@ - -+ ++ DVB device - DVB device + DVB Device - -+ ++ Motorola Generic Motorola Generic - -+ ++ SA/Cisco Generic SA/Cisco Generic - -+ ++ Connection Type Connection Type - -+ ++ Point to Point Point to Point - -+ ++ Speed Speed - -+ ++ 100Mbps 100Mbps - -+ ++ 200Mbps 200Mbps - -+ ++ 400Mbps 400Mbps - -+ ++ 800Mbps 800Mbps - - -+ -+ ++ ++ IP Address IP Address - - -+ -+ ++ ++ Tuner Tuner - -+ ++ M3U URL M3U URL - -+ ++ ASI device - ASI device + ASI Device - -+ ++ Warning: unable to open - Warning: unable to open + Warning: Unable to Open @@ -17485,147 +17586,147 @@ - -+ ++ Capture Card Setup Capture Card Setup - -+ ++ Card type - Card type + Card Type - -+ ++ Change the cardtype to the appropriate type for the capture card you are configuring. - Change the cardtype to the appropriate type for the capture card you are configuring. + Change the card type to the appropriate type for the capture card you are configuring. - -+ ++ FireWire cable box - FireWire cable box + FireWire Cable Box - -+ ++ DVEO ASI recorder - DVEO ASI recorder + DVEO ASI Recorder - -+ ++ Video source - Video source + Video Source - -+ ++ Leave as 'Generic' unless this input is shared with another device. Only one of the inputs in an input group will be allowed to record at any given time. Leave as 'Generic' unless this input is shared with another device. Only one of the inputs in an input group will be allowed to record at any given time. - -+ ++ Use quick tuning - Use quick tuning + Use Quick Tuning - -+ ++ Never Never - -+ ++ Live TV only - Live TV only + Live TV Only - -+ ++ Always Always - -+ ++ External channel change command - External channel change command + External Channel Change Command - -+ ++ If specified, this command will be run to change the channel for inputs which have an external tuner device such as a cable box. The first argument will be the channel number. If specified, this command will be run to change the channel for inputs which have an external tuner device such as a cable box. The first argument will be the channel number. - -+ ++ Preset tuner to channel - Preset tuner to channel + Preset Tuner to Channel - -+ ++ Leave this blank unless you have an external tuner that is connected to the tuner input of your card. If so, you will need to specify the preset channel for the signal (normally 3 or 4). Leave this blank unless you have an external tuner that is connected to the tuner input of your card. If so, you will need to specify the preset channel for the signal (normally 3 or 4). - -+ ++ Input priority - Input priority + Input Priority - -+ ++ If the input priority is not equal for all inputs, the scheduler may choose to record a show at a later time so that it can record on an input with a higher value. If the input priority is not equal for all inputs, the scheduler may choose to record a show at a later time so that it can record on an input with a higher value. - -+ ++ Schedule order - Schedule order + Schedule Order - -+ ++ If priorities and other factors are equal the scheduler will choose the available input with the lowest, non-zero value. Setting this value to zero will make the input unavailable to the scheduler. - If priorities and other factors are equal the scheduler will choose the available input with the lowest, non-zero value. Setting this value to zero will make the input unavailable to the scheduler. + If priorities and other factors are equal the scheduler will choose the available input with the lowest, non-zero value. Setting this value to zero will make the input unavailable to the scheduler. - -+ ++ Live TV order - Live TV order + Live TV Order - -+ ++ When entering Live TV, the available, local input with the lowest, non-zero value will be used. If no local inputs are available, the available, remote input with the lowest, non-zero value will be used. Setting this value to zero will make the input unavailable to live TV. - When entering Live TV, the available, local input with the lowest, non-zero value will be used. If no local inputs are available, the available, remote input with the lowest, non-zero value will be used. Setting this value to zero will make the input unavailable to live TV. + When entering Live TV, the available, local input with the lowest, non-zero value will be used. If no local inputs are available, the available, remote input with the lowest, non-zero value will be used. Setting this value to zero will make the input unavailable to live TV. - -+ ++ If you point your satellite dish toward DishNet's birds, you may wish to enable this feature. For best results, enable general EIT collection as well. If you point your satellite dish toward DishNet's birds, you may wish to enable this feature. For best results, enable general EIT collection as well. @@ -17637,48 +17738,48 @@ - -+ ++ Interactions between inputs - Interactions between inputs + Interactions Between Inputs - -+ ++ Create a New Input Group Create a New Input Group - -+ ++ (New capture card) - (New capture card) + (New Capture Card) - -+ ++ (Delete all capture cards on %1) - (Delete all capture cards on %1) + (Delete All Capture Cards on %1) - -+ ++ (Delete all capture cards) - (Delete all capture cards) + (Delete All Capture Cards) - -+ ++ (New video source) - (New video source) + (New Video Source) - -+ ++ (Delete all video sources) - (Delete all video sources) + (Delete All Video Sources) @@ -17704,11 +17805,6 @@ - -+ -+ This will usually only work with ATSC or DVB channels, and generally provides data only for the next few days. -+ This will usually only work with ATSC or DVB channels, and generally provides data only for the next few days. -+ -+ + Video Source Setup Video Source Setup @@ -17721,243 +17817,243 @@ - -+ Arguments - Arguments +- Arguments ++ Arguments - -+ ++ File path - File path + File Path - -+ ++ Device to read audio from, if audio is separate from the video. Device to read audio from, if audio is separate from the video. - -+ ++ Signal timeout (ms) - Signal timeout (ms) + Signal Timeout (ms) - -+ ++ Maximum time (in milliseconds) MythTV waits for a signal when scanning for channels. Maximum time (in milliseconds) MythTV waits for a signal when scanning for channels. - -+ ++ Tuning timeout (ms) - Tuning timeout (ms) + Tuning Timeout (ms) - -+ ++ Maximum time (in milliseconds) MythTV waits for a channel lock. For recordings, if this time is exceeded, the recording will be marked as failed. - Maximum time (in milliseconds) MythTV waits for a channel lock. For recordings, if this time is exceeded, the recording will be marked as failed. + Maximum time (in milliseconds) MythTV waits for a channel lock. For recordings, if this time is exceeded, the recording will be marked as failed. - -+ ++ Force audio sampling rate - Force audio sampling rate + Force Audio Sampling Rate - -+ ++ If non-zero, override the audio sampling rate in the recording profile when this card is used. Use this if your capture card does not support all of the standard rates. - If non-zero, override the audio sampling rate in the recording profile when this card is used. Use this if your capture card does not support all of the standard rates. + If non-zero, override the audio sampling rate in the recording profile when this card is used. Use this if your capture card does not support all of the standard rates. - -+ ++ If enabled, drop packets from the start of a DVB recording until a sequence start header is seen. If enabled, drop packets from the start of a DVB recording until a sequence start header is seen. - -+ ++ If enabled, only open the DVB card when required, leaving it free for other programs at other times. If enabled, only open the DVB card when required, leaving it free for other programs at other times. - -+ ++ Use DVB card for active EIT scan - Use DVB card for active EIT scan + Use DVB Card for Active EIT Scan - -+ ++ If enabled, activate active scanning for program data (EIT). When this option is enabled the DVB card is constantly in-use. If enabled, activate active scanning for program data (EIT). When this option is enabled the DVB card is constantly in-use. - -+ ++ DVB tuning delay (ms) - DVB tuning delay (ms) + DVB Tuning Delay (ms) - -+ ++ Some Linux DVB drivers, in particular for the Hauppauge Nova-T, require that we slow down the tuning process by specifying a delay (in milliseconds). Some Linux DVB drivers, in particular for the Hauppauge Nova-T, require that we slow down the tuning process by specifying a delay (in milliseconds). - - -+ -+ ++ ++ Available devices - Available devices + Available Devices - -+ ++ Device ID and Tuner Number of available HDHomeRun devices. Device ID and Tuner Number of available HDHomeRun devices. - -+ ++ Device IP or ID of a VBox device. eg. '192.168.1.100' or 'vbox_3718' Device IP or ID of a VBox device. eg. '192.168.1.100' or 'vbox_3718' - -+ ++ Number and type of the tuner to use. eg '1-DVBT/T2'. Number and type of the tuner to use. eg '1-DVBT/T2'. - -+ ++ Device IP or ID, tuner number and tuner type of available VBox devices. Device IP or ID, tuner number and tuner type of available VBox devices. - -+ ++ + Use HD HomeRun for active EIT scan + Use HD HomeRun for Active EIT Scan + + -+ ++ + If enabled, activate active scanning for program data (EIT). When this option is enabled the HD HomeRun is constantly in-use. + If enabled, activate active scanning for program data (EIT). When this option is enabled the HD HomeRun is constantly in-use. + + -+ ++ V4L2 encoder devices (multirec capable) - V4L2 encoder devices (multirec capable) + V4L2 Encoder Devices (multirec capable) - -+ ++ V4L2 encoder - V4L2 encoder + V4L2 Encoder - -+ ++ V@Box TV Gateway networked tuner - V@Box TV Gateway networked tuner + V@Box TV Gateway Networked Tuner - -+ ++ Import test recorder - Import test recorder + Import Test Recorder - -+ ++ Demo test recorder - Demo test recorder + Demo Test Recorder - -+ ++ External (black box) recorder - External (black box) recorder + External (black box) Recorder - -+ ++ Input name - Input name + Input Name - -+ ++ Display name (optional) - Display name (optional) + Display Name (optional) - -+ ++ This name is displayed on screen when Live TV begins and when changing the selected input or card. If you use this, make sure the information is unique for each input. This name is displayed on screen when Live TV begins and when changing the selected input or card. If you use this, make sure the information is unique for each input. - -+ ++ Input group - Input group + Input Group - -+ ++ If enabled, MythTV will tune using only the MPEG program number. The program numbers change more often than DVB or ATSC tuning parameters, so this is slightly less reliable. This will also inhibit EIT gathering during Live TV and recording. If enabled, MythTV will tune using only the MPEG program number. The program numbers change more often than DVB or ATSC tuning parameters, so this is slightly less reliable. This will also inhibit EIT gathering during Live TV and recording. - -+ ++ Use DishNet long-term EIT data - Use DishNet long-term EIT data + Use DishNet Long-Term EIT Data - -+ ++ Input groups are only needed when two or more cards share the same resource such as a FireWire card and an analog card input controlling the same set top box. Input groups are only needed when two or more cards share the same resource such as a FireWire card and an analog card input controlling the same set top box. - -+ ++ Audio input - Audio input + Audio Input - -+ ++ If there is more than one audio input, select which one to use. If there is more than one audio input, select which one to use. @@ -18001,7 +18097,7 @@ This is updated on every successful channel change. This is updated on every successful channel change. -@@ -19082,48 +19601,48 @@ +@@ -19082,48 +19631,48 @@ The following programs will be recorded instead: @@ -18062,12 +18158,12 @@ -@@ -19136,24 +19655,23 @@ +@@ -19136,24 +19685,23 @@ Audio device is invalid or not useable. - -+ ++ Delete Delete @@ -18079,7 +18175,7 @@ - -+ ++ Use 'mythfilldatabase' or the name of a custom script that will populate the program guide info for all your video sources. Use 'mythfilldatabase' or the name of a custom script that will populate the program guide info for all your video sources. @@ -18091,7 +18187,7 @@ -@@ -19161,12 +19679,12 @@ +@@ -19161,12 +19709,12 @@ Media Monitor @@ -18106,7 +18202,7 @@ You may have to use the eject button under its tray You may have to use the eject button under its tray -@@ -19182,722 +19700,770 @@ +@@ -19182,722 +19730,769 @@ @@ -18137,10 +18233,10 @@ - -+ ++ IP address - IP address -+ Ip Address ++ IP Address - @@ -18162,245 +18258,244 @@ - -+ + Listen on All IP Addresses -+ Listen on All IP Addresses ++ Listen on All IP Addresses + + -+ ++ + Primary IP address / DNS name + Primary IP Address/DNS Name + + -+ ++ + The Primary IP address of this backend server. You can select an IP address from the list or type a DNS name or host name. Other systems will contact this server using this address. If you use a host name make sure it is assigned an ip address other than 127.0.0.1 in the hosts file. -+ The Primary IP address of this backend server. You can select an IP address from the list or type a DNS name or hostname. Other systems will contact this server using this address. If you use a hostname make sure it is assigned an ip address other than 127.0.0.1 in the hosts file. ++ The Primary IP address of this backend server. You can select an IP address from the list or type a DNS name or hostname. Other systems will contact this server using this address. If you use a hostname make sure it is assigned an IP address other than 127.0.0.1 in the hosts file. + + -+ ++ TV format - TV format + TV Format - -+ ++ The TV standard to use for viewing TV. The TV standard to use for viewing TV. - -+ ++ VBI format - VBI format + VBI Format - -+ ++ Save original files after transcoding (globally) Save original files after transcoding (globally) - -+ ++ Delete files slowly - Delete files slowly + Delete Files Slowly - -+ ++ Follow symbolic links when deleting files - Follow symbolic links when deleting files + Follow Symbolic Links When Deleting Files - -+ ++ Combination Combination - -+ ++ By default, MythTV resets the FireWire bus when a FireWire recorder stops responding to commands. If this causes problems, you can disable this behavior here. By default, MythTV resets the FireWire bus when a FireWire recorder stops responding to commands. If this causes problems, you can disable this behavior here. - -+ ++ The minimum number of seconds after a recorder becomes idle to wait before MythTV begins collecting EIT listings data. The minimum number of seconds after a recorder becomes idle to wait before MythTV begins collecting EIT listings data. - -+ ++ Delay between wake attempts (secs) - Delay between wake attempts (secs) + Delay Between Wake Attempts (secs) - -+ ++ Number of times the frontend will try to wake up the master backend. Number of times the frontend will try to wake up the master backend. - -+ ++ + The command used to wake up your master backend server (e.g. wakeonlan 00:00:00:00:00:00). + The command used to wake up your master backend server (e.g. wakeonlan 00:00:00:00:00:00). + + -+ ++ The command used to put this slave to sleep. If set, the master backend will use this command to put this slave to sleep when it is not needed for recording. The command used to put this slave to sleep. If set, the master backend will use this command to put this slave to sleep when it is not needed for recording. - -+ ++ Idle shutdown timeout (secs) - Idle shutdown timeout (secs) + Idle Shutdown Timeout (secs) - -+ ++ The number of minutes the master backend waits for a recording. If the backend is idle but a recording starts within this time period, it won't shut down. The number of minutes the master backend waits for a recording. If the backend is idle but a recording starts within this time period, it won't shut down. - -+ ++ Wakeup time format - Wakeup time format + Wakeup Time Format - -+ ++ The command used to set the wakeup time (passed as $time) for the Master Backend The command used to set the wakeup time (passed as $time) for the Master Backend - -+ ++ Server halt command - Server halt command + Server Halt Command - -+ ++ The command used to halt the backends. The command used to halt the backends. - -+ ++ A command executed before the backend would shutdown. The return value determines if the backend can shutdown. 0 - yes, 1 - restart idling, 2 - reset the backend to wait for a frontend. A command executed before the backend would shutdown. The return value determines if the backend can shutdown. 0 - yes, 1 - restart idling, 2 - reset the backend to wait for a frontend. - -+ ++ Block shutdown before client connected - Block shutdown before client connected + Block Shutdown Before Client Connected - -+ ++ Startup command - Startup command + Startup Command - -+ ++ This command is executed right after starting the BE. As a parameter '$status' is replaced by either 'auto' if the machine was started automatically or 'user' if a user switched it on. This command is executed right after starting the BE. As a parameter '$status' is replaced by either 'auto' if the machine was started automatically or 'user' if a user switched it on. - -+ ++ Maximum simultaneous jobs on this backend - Maximum simultaneous jobs on this backend + Maximum Simultaneous Jobs on This Backend - -+ ++ The Job Queue will be limited to running this many simultaneous jobs on this backend. The Job Queue will be limited to running this many simultaneous jobs on this backend. - -+ ++ Low Low - -+ ++ Medium Medium - -+ ++ The command to run whenever this User Job number is scheduled. The command to run whenever this User Job number is scheduled. - -+ ++ User Job #%1 User Job #%1 - -+ ++ Transcoder command - Transcoder command + Transcoder Command - -+ ++ The program used to transcode recordings. The default is 'mythtranscode' if this setting is empty. The program used to transcode recordings. The default is 'mythtranscode' if this setting is empty. - -+ ++ Allow %1 jobs Allow %1 jobs - -+ ++ If enabled, the master backend will include the list of recorded shows in the list of videos. This is mainly to accommodate UPnP players which do not allow more than 1 video section. - If enabled, the master backend will include the list of recorded shows in the list of videos. This is mainly to accommodate UPnP players which do not allow more than 1 video section. + If enabled, the master backend will include the list of recorded shows in the list of videos. This is mainly to accommodate UPnP players which do not allow more than 1 video section. - -+ ++ Recordings Recordings - -+ ++ Videos Videos - - -+ ++ Unless you've got good reason, don't change this. Unless you've got good reason, don't change this. @@ -18413,14 +18508,14 @@ - -+ ++ Status port - Status port + Status Port - -+ ++ Port on which the server will listen for HTTP requests, including backend status and MythXML requests. Port on which the server will listen for HTTP requests, including backend status and MythXML requests. @@ -18432,206 +18527,206 @@ - -+ ++ Security PIN (required) Security PIN (required) - -+ ++ PIN code required for a frontend to connect to the backend. Blank prevents all connections; 0000 allows any client to connect. PIN code required for a frontend to connect to the backend. Blank prevents all connections; 0000 allows any client to connect. - -+ ++ The VBI (Vertical Blanking Interval) is used to carry Teletext or Closed Captioning data. The VBI (Vertical Blanking Interval) is used to carry Teletext or Closed Captioning data. - -+ ++ Select the appropriate frequency table for your system. If you have an antenna, use a "-bcast" frequency. Select the appropriate frequency table for your system. If you have an antenna, use a "-bcast" frequency. - -+ ++ If enabled and the transcoder is active, the original files will be renamed to .old once the transcoding is complete. If enabled and the transcoder is active, the original files will be renamed to .old once the transcoding is complete. - -+ ++ Some filesystems use a lot of resources when deleting large files. If enabled, this option makes MythTV delete files slowly on this backend to lessen the impact. Some filesystems use a lot of resources when deleting large files. If enabled, this option makes MythTV delete files slowly on this backend to lessen the impact. - -+ ++ If enabled, MythTV will follow symlinks when recordings and related files are deleted, instead of deleting the symlink and leaving the actual file. If enabled, MythTV will follow symlinks when recordings and related files are deleted, instead of deleting the symlink and leaving the actual file. - -+ ++ HD ringbuffer size (kB) - HD ringbuffer size (kB) + HD Ringbuffer Size (kB) - -+ ++ The HD device ringbuffer allows the backend to weather moments of stress. The larger the ringbuffer (in kilobytes), the longer the moments of stress can be. However, setting the size too large can cause swapping, which is detrimental. The HD device ringbuffer allows the backend to weather moments of stress. The larger the ringbuffer (in kilobytes), the longer the moments of stress can be. However, setting the size too large can cause swapping, which is detrimental. - -+ ++ Storage Group disk scheduler - Storage Group disk scheduler + Storage Group Disk Scheduler - -+ ++ Balanced free space - Balanced free space + Balanced Free Space - -+ ++ Balanced percent free space - Balanced percent free space + Balanced Percent Free Space - -+ ++ Balanced disk I/O - Balanced disk I/O + Balanced Disk I/O - -+ ++ This setting controls how the Storage Group scheduling code will balance new recordings across directories. 'Balanced Free Space' is the recommended method for most users. This setting controls how the Storage Group scheduling code will balance new recordings across directories. 'Balanced Free Space' is the recommended method for most users. - -+ ++ Disable automatic database backup - Disable automatic database backup + Disable Automatic Database Backup - -+ ++ If enabled, MythTV will not backup the database before upgrades. You should therefore have your own database backup strategy in place. If enabled, MythTV will not backup the database before upgrades. You should therefore have your own database backup strategy in place. - -+ ++ Disable FireWire reset - Disable FireWire reset + Disable FireWire Reset - -+ ++ Miscellaneous status application - Miscellaneous status application + Miscellaneous Status Application - -+ ++ External application or script that outputs extra information for inclusion in the backend status page. See http://www.mythtv.org/wiki/Miscellaneous_Status_Information External application or script that outputs extra information for inclusion in the backend status page. See http://www.mythtv.org/wiki/Miscellaneous_Status_Information - -+ ++ Which tree to show a Windows Media Player client when it requests a list of videos. Which tree to show a Windows Media Player client when it requests a list of videos. - -+ ++ Automatically update program listings - Automatically update program listings + Automatically Update Program Listings - -+ ++ If enabled, the guide data program will be run automatically. If enabled, the guide data program will be run automatically. - -+ ++ Guide data program execution start - Guide data program execution start + Guide Data Program Execution Start - -+ ++ This setting and the following one define a time period when the guide data program is allowed to run. For example, setting start to 11 and end to 13 would mean that the program would only run between 11:00 AM and 1:59 PM. This setting and the following one define a time period when the guide data program is allowed to run. For example, setting start to 11 and end to 13 would mean that the program would only run between 11:00 AM and 1:59 PM. - -+ ++ Guide data program execution end - Guide data program execution end + Guide Data Program Execution End - -+ ++ This setting and the preceding one define a time period when the guide data program is allowed to run. For example, setting start to 11 and end to 13 would mean that the program would only run between 11:00 AM and 1:59 PM. This setting and the preceding one define a time period when the guide data program is allowed to run. For example, setting start to 11 and end to 13 would mean that the program would only run between 11:00 AM and 1:59 PM. - -+ ++ Run guide data program at time suggested by the grabber. Run guide data program at time suggested by the grabber. - -+ ++ If enabled, allow a DataDirect guide data provider to specify the next download time in order to distribute load on their servers. Guide data program execution start/end times are also ignored. If enabled, allow a DataDirect guide data provider to specify the next download time in order to distribute load on their servers. Guide data program execution start/end times are also ignored. - -+ ++ Guide data program - Guide data program + Guide Data Program - -+ ++ Guide data arguments - Guide data arguments + Guide Data Arguments - -+ ++ Any arguments you want passed to the guide data program. Any arguments you want passed to the guide data program. - -+ ++ Program Schedule Downloading Options Program Schedule Downloading Options @@ -18650,46 +18745,46 @@ - -+ ++ EIT transport timeout (mins) - EIT transport timeout (mins) + EIT Transport Timeout (mins) - -+ ++ Maximum time to spend waiting (in minutes) for listings data on one digital TV channel before checking for new listings data on the next channel. Maximum time to spend waiting (in minutes) for listings data on one digital TV channel before checking for new listings data on the next channel. - -+ ++ Master backend override - Master backend override + Master Backend Override - -+ ++ If enabled, the master backend will stream and delete files if it finds them in a storage directory. Useful if you are using a central storage location, like a NFS share, and your slave backend isn't running. If enabled, the master backend will stream and delete files if it finds them in a storage directory. Useful if you are using a central storage location, like a NFS share, and your slave backend isn't running. - -+ ++ Backend idle before EIT crawl (secs) - Backend idle before EIT crawl (secs) + Backend Idle Before EIT Crawl (secs) - -+ ++ Length of time the frontend waits between tries to wake up the master backend. This should be the time your master backend needs to startup. Set to 0 to disable. Length of time the frontend waits between tries to wake up the master backend. This should be the time your master backend needs to startup. Set to 0 to disable. - -+ ++ Wake attempts - Wake attempts + Wake Attempts @@ -18702,216 +18797,216 @@ - -+ ++ Sleep command - Sleep command + Sleep Command - -+ ++ The command used to wake up this slave from sleep. This setting is not used on the master backend. The command used to wake up this slave from sleep. This setting is not used on the master backend. - -+ ++ Backend stop command - Backend stop command + Backend Stop Command - -+ ++ The command used to stop the backend when running on the master backend server (e.g. sudo /etc/init.d/mythtv-backend stop) The command used to stop the backend when running on the master backend server (e.g. sudo /etc/init.d/mythtv-backend stop) - -+ ++ Backend start command - Backend start command + Backend Start Command - -+ ++ The command used to start the backend when running on the master backend server (e.g. sudo /etc/init.d/mythtv-backend start). The command used to start the backend when running on the master backend server (e.g. sudo /etc/init.d/mythtv-backend start). - -+ ++ The number of seconds the master backend idles before it shuts down all other backends. Set to 0 to disable automatic shutdown. The number of seconds the master backend idles before it shuts down all other backends. Set to 0 to disable automatic shutdown. - -+ ++ Maximum wait for recording (mins) - Maximum wait for recording (mins) + Maximum Wait for Recording (mins) - -+ ++ Startup before recording (secs) - Startup before recording (secs) + Startup Before Recording (secs) - -+ ++ The number of seconds the master backend will be woken up before a recording starts. The number of seconds the master backend will be woken up before a recording starts. - -+ ++ The format of the time string passed to the 'Command to set wakeup time' as $time. See QT::QDateTime.toString() for details. Set to 'time_t' for seconds since epoch. The format of the time string passed to the 'Command to set wakeup time' as $time. See QT::QDateTime.toString() for details. Set to 'time_t' for seconds since epoch. - -+ ++ Command to set wakeup time - Command to set wakeup time + Command to Set Wakeup Time - -+ ++ Pre-shutdown-check command - Pre-shutdown-check command + Pre-shutdown Check Command - -+ ++ If enabled, the automatic shutdown routine will be disabled until a client connects. If enabled, the automatic shutdown routine will be disabled until a client connects. - -+ ++ Job Queue check frequency (secs) - Job Queue check frequency (secs) + Job Queue Check Frequency (secs) - -+ ++ When looking for new jobs to process, the Job Queue will wait this many seconds between checks. When looking for new jobs to process, the Job Queue will wait this many seconds between checks. - -+ ++ CPU usage - CPU usage + CPU Usage - -+ ++ This setting controls approximately how much CPU jobs in the queue may consume. On 'High', all available CPU time may be used, which could cause problems on slower systems. This setting controls approximately how much CPU jobs in the queue may consume. On 'High', all available CPU time may be used, which could cause problems on slower systems. - -+ ++ Job Queue start time - Job Queue start time + Job Queue Start Time - -+ ++ This setting controls the start of the Job Queue time window, which determines when new jobs will be started. This setting controls the start of the Job Queue time window, which determines when new jobs will be started. - -+ ++ Job Queue end time - Job Queue end time + Job Queue End Time - -+ ++ This setting controls the end of the Job Queue time window, which determines when new jobs will be started. This setting controls the end of the Job Queue time window, which determines when new jobs will be started. - -+ ++ Run jobs only on original recording backend - Run jobs only on original recording backend + Run Jobs Only on Original Recording Backend - -+ ++ If enabled, jobs in the queue will be required to run on the backend that made the original recording. If enabled, jobs in the queue will be required to run on the backend that made the original recording. - -+ ++ Run transcode jobs before auto commercial detection - Run transcode jobs before auto commercial detection + Run Transcode Jobs Before Auto Commercial Detection - -+ ++ If enabled, and if both auto-transcode and commercial detection are turned ON for a recording, transcoding will run first; otherwise, commercial detection runs first. If enabled, and if both auto-transcode and commercial detection are turned ON for a recording, transcoding will run first; otherwise, commercial detection runs first. - -+ ++ Start auto-commercial-detection jobs when the recording starts - Start auto-commercial-detection jobs when the recording starts + Start Auto Commercial Detection Jobs When the Recording Starts - -+ ++ If enabled, and Auto Commercial Detection is ON for a recording, the flagging job will be started as soon as the recording starts. NOT recommended on underpowered systems. If enabled, and Auto Commercial Detection is ON for a recording, the flagging job will be started as soon as the recording starts. NOT recommended on underpowered systems. - -+ ++ User Job #%1 command - User Job #%1 command + User Job #%1 Command - -+ ++ User Job #%1 description - User Job #%1 description + User Job #%1 Description - -+ ++ The description for this User Job. The description for this User Job. - -+ ++ Allow metadata lookup jobs - Allow metadata lookup jobs + Allow Metadata Lookup Jobs - -+ ++ Allow commercial-detection jobs - Allow commercial-detection jobs + Allow Commercial Detection Jobs @@ -18921,66 +19016,74 @@ - - - -+ -+ -+ -+ ++ ++ ++ ++ If enabled, allow jobs of this type to run on this backend. If enabled, allow jobs of this type to run on this backend. - -+ ++ Allow transcoding jobs - Allow transcoding jobs + Allow Transcoding Jobs - -+ ++ Commercial-detection command - Commercial-detection command + Commercial Detection Command - -+ ++ The program used to detect commercials in a recording. The default is 'mythcommflag' if this setting is empty. The program used to detect commercials in a recording. The default is 'mythcommflag' if this setting is empty. - -+ ++ Include recordings in video list - Include recordings in video list + Include Recordings in Video List - -+ ++ Video content to show a WMP client - Video content to show a WMP client + Video Content to Show a WMP Client -+ -+ -+ Host Address Backend Setup + + +- + Host Address Backend Setup +- Host Address Backend Setup + Host Address Backend Setup -+ -+ -+ Local Backend + + +- + Local Backend +- Local Backend + Local Backend -+ -+ -+ -+ Master Backend -+ Master Backend -+ -+ -+ -+ Locale Settings -+ Locale Settings -+ -+ + + +- +- ++ + Master Backend + Master Backend + + +- ++ + Locale Settings + Locale Settings + + +- + + This server is the Master Backend + This Server is the Master Backend @@ -18994,108 +19097,94 @@ + + Master Backend Name + Master Backend Name - - -- -- Host Address Backend Setup -- Host Address Backend Setup ++ ++ + + Host name of Master Backend. This is set by selecting "This server is the Master Backend" on that server. + Host name of master backend. This is set by selecting "This server is the master backend" on that server. - - -- -- Local Backend -- Local Backend ++ ++ + + Allow Connections from all Subnets + Allow Connections from All Subnets - - -- -- -- Master Backend -- Master Backend ++ ++ + + Allow this backend to receive connections from any IP address on the internet. NOT recommended for most users. Use this only if you have secure IPV4 and IPV6 firewalls. + Allow this backend to receive connections from any IP address on the internet. NOT recommended for most users. Use this only if you have secure IPV4 and IPV6 firewalls. - - -- -- Locale Settings -- Locale Settings ++ ++ + + Listen on IPv6 address + Listen on IPv6 Address - - -- -+ ++ ++ ++ Miscellaneous Settings Miscellaneous Settings - -+ ++ File Management Settings File Management Settings - -+ ++ EIT Scanner Options EIT Scanner Options - -+ ++ Shutdown/Wakeup Options Shutdown/Wakeup Options - -+ ++ Backend Wakeup settings - Backend Wakeup settings + Backend Wakeup Settings - -+ ++ Slave Backends Slave Backends - -+ ++ Backend Control Backend Control - -+ ++ Job Queue (Backend-Specific) Job Queue (Backend-Specific) - -+ ++ Job Queue (Global) Job Queue (Global) - -+ ++ Job Queue (Job Commands) Job Queue (Job Commands) - -+ ++ UPnP Server Settings UPnP Server Settings -@@ -19915,12 +20481,12 @@ +@@ -19915,12 +20510,12 @@ No Storage Group directories are defined. You must add at least one directory to the Default Storage Group where new recordings will be stored. @@ -19110,7 +19199,7 @@ -@@ -19928,12 +20494,12 @@ +@@ -19928,12 +20523,12 @@ Card %1 (type %2) is set to start on channel %3, which does not exist. @@ -19126,7 +19215,7 @@ MythTV Setup MythTV Setup -@@ -19971,19 +20537,19 @@ +@@ -19971,19 +20566,19 @@ Backlinks @@ -19149,7 +19238,7 @@ -@@ -19994,7 +20560,7 @@ +@@ -19994,7 +20589,7 @@ No files found @@ -19158,7 +19247,7 @@ -@@ -20075,57 +20641,57 @@ +@@ -20075,57 +20670,57 @@ videos @@ -19227,7 +19316,7 @@ %1 KB %1 KB -@@ -20150,17 +20716,17 @@ +@@ -20150,17 +20745,17 @@ Match duplicates using subtitle & description @@ -19248,7 +19337,7 @@ -@@ -20180,22 +20746,22 @@ +@@ -20180,22 +20775,22 @@ Match duplicates using description @@ -19275,7 +19364,7 @@ -@@ -20221,90 +20787,90 @@ +@@ -20221,90 +20816,90 @@ Look for duplicates in previous recordings only @@ -19398,7 +19487,7 @@ Run '%1' Run '%1' -@@ -20335,97 +20901,97 @@ +@@ -20335,97 +20930,97 @@ SetParameters() called with handle == NULL! @@ -19518,7 +19607,7 @@ film film -@@ -20433,56 +20999,56 @@ +@@ -20433,56 +21028,56 @@ Error: Database not open while trying to load setting: %1 mythshutdown @@ -19559,7 +19648,7 @@ Grabbing EPG data in progress... mythshutdown - Grabbing EPG data in progress... -+ Grabbing Epg Data in Progress... ++ Grabbing EPG Data in Progress... @@ -19573,7 +19662,7 @@ Shutdown is locked mythshutdown - Shutdown is locked -+ Shutdown Is Locked ++ Shutdown is Locked @@ -19584,7 +19673,7 @@ -@@ -20500,176 +21066,176 @@ +@@ -20500,176 +21095,176 @@ About to start daily wakeup period (1) mythshutdown @@ -19603,7 +19692,7 @@ Setup is running... mythshutdown - Setup is running... -+ Setup Is Running... ++ Setup is Running... @@ -19660,7 +19749,7 @@ Next daily wakeup is tomorrow at %1 mythshutdown - Next daily wakeup is tomorrow at %1 -+ Next Daily Wakeup Is Tomorrow At %1 ++ Next Daily Wakeup is Tomorrow At %1 @@ -19674,7 +19763,7 @@ Error: no recording time is set mythshutdown - Error: no recording time is set -+ Error: No Recording Time Is Set ++ Error: No Recording Time is Set @@ -19716,14 +19805,14 @@ Program is scheduled but will wake up at next daily wakeup mythshutdown - Program is scheduled but will wake up at next daily wakeup -+ Program Is Scheduled but Will Wake Up At Next Daily Wakeup ++ Program is Scheduled but Will Wake Up At Next Daily Wakeup Daily wakeup is set but will wake up at next scheduled program mythshutdown - Daily wakeup is set but will wake up at next scheduled program -+ Daily Wakeup Is Set but Will Wake Up At Next Scheduled Program ++ Daily Wakeup is Set but Will Wake Up At Next Scheduled Program @@ -19751,7 +19840,7 @@ The next wakeup time is less than 15 mins away, not shutting down. mythshutdown - The next wakeup time is less than 15 mins away, not shutting down. -+ The Next Wakeup Time Is Less Than 15 Mins Away, Not Shutting Down. ++ The Next Wakeup Time is Less Than 15 Mins Away, Not Shutting Down. @@ -19772,7 +19861,7 @@ Everything looks fine, but reboot is needed mythshutdown - Everything looks fine, but reboot is needed -+ Everything Looks Fine, but Reboot Is Needed ++ Everything Looks Fine, but Reboot is Needed @@ -19790,9 +19879,12 @@ -@@ -20688,12 +21254,12 @@ +@@ -20686,14 +21281,14 @@ + must be yyyy-MM-ddThh:mm:ss + - +- ++ Error: stream handler died - Error: stream handler died + Error: Stream Handler Died @@ -19805,7 +19897,7 @@ -@@ -20717,6 +21283,11 @@ +@@ -20717,6 +21312,11 @@ Genre Genre @@ -19817,7 +19909,7 @@ RawSettingsEditor -@@ -20729,12 +21300,12 @@ +@@ -20729,12 +21329,12 @@ RecMetadataEdit @@ -19833,7 +19925,7 @@ No match found for this recording. You can try entering a TVDB/TMDB number, season, and episode manually. No match found for this recording. You can try entering a TVDB/TMDB number, season, and episode manually. -@@ -20742,14 +21313,18 @@ +@@ -20742,14 +21342,18 @@ RecordingProfileEditor @@ -19856,7 +19948,7 @@ -@@ -20822,128 +21397,130 @@ +@@ -20822,128 +21426,130 @@ Scanning @@ -20034,7 +20126,7 @@ -@@ -20951,168 +21528,173 @@ +@@ -20951,168 +21557,173 @@ New episode @@ -20115,7 +20207,7 @@ + The following programs will be recorded instead: - The following programs will be recorded instead: -+ Tthe Following Programs Will Be Recorded Instead: ++ The Following Programs Will Be Recorded Instead: + + + @@ -20272,7 +20364,7 @@ -@@ -21147,75 +21729,75 @@ +@@ -21147,75 +21758,75 @@ @@ -20362,7 +20454,7 @@ Default Default -@@ -21251,7 +21833,7 @@ +@@ -21251,7 +21862,7 @@ Error: This version of Myth%1 requires MySQL %2.%3.%4 or later. You seem to be running MySQL version %5. @@ -20371,7 +20463,7 @@ -@@ -21316,7 +21898,7 @@ +@@ -21316,7 +21927,7 @@ This cannot be un-done, so having a database backup would be a good idea. @@ -20380,7 +20472,7 @@ -@@ -21324,68 +21906,116 @@ +@@ -21324,68 +21935,116 @@ Could not open tuner device @@ -20448,7 +20540,7 @@ + + + The delay before showing the Loading/Playing status, in milliseconds. -+ The delay before showing the Loading/Playing status, in milliseconds. ++ The delay before showing the loading/playing status, in milliseconds. + + + @@ -20511,7 +20603,7 @@ -@@ -21395,7 +22025,7 @@ +@@ -21395,7 +22054,7 @@ Recording Status: RECORDING. @@ -20520,7 +20612,7 @@ -@@ -21405,7 +22035,7 @@ +@@ -21405,7 +22064,7 @@ Recording Status: None. @@ -20529,12 +20621,12 @@ -@@ -21426,15 +22056,15 @@ +@@ -21426,15 +22085,15 @@ StartingChannel - -+ ++ Please add channels to this source - Please add channels to this source + Please Add Channels to This Source @@ -20548,7 +20640,7 @@ %n (is) LiveTV and consume(s) %1 -@@ -21445,7 +22075,7 @@ +@@ -21445,7 +22104,7 @@ @@ -20557,7 +20649,7 @@ %n (is) Deleted and consume(s) %1 -@@ -21457,7 +22087,7 @@ +@@ -21457,7 +22116,7 @@ @@ -20566,7 +20658,7 @@ %n day(s) %n day -@@ -21568,7 +22198,7 @@ +@@ -21568,7 +22227,7 @@ Move to Default group @@ -20575,7 +20667,7 @@ -@@ -21588,7 +22218,7 @@ +@@ -21588,7 +22247,7 @@ Mythfrontend version: %1 (%2) @@ -20584,7 +20676,7 @@ -@@ -21633,7 +22263,7 @@ +@@ -21633,7 +22292,7 @@ WARNING: is mythfilldatabase running? @@ -20593,7 +20685,7 @@ -@@ -21678,47 +22308,47 @@ +@@ -21678,47 +22337,47 @@ @@ -20650,7 +20742,7 @@ On %1 from %2.%3 %4 -@@ -21726,27 +22356,27 @@ +@@ -21726,27 +22385,27 @@ %4 @@ -20683,7 +20775,7 @@ %n hour(s) %n hour -@@ -21754,7 +22384,7 @@ +@@ -21754,7 +22413,7 @@ @@ -20692,7 +20784,7 @@ %n minute(s) %n minute -@@ -21762,178 +22392,178 @@ +@@ -21762,178 +22421,178 @@ @@ -20911,7 +21003,7 @@ %n recording(s) consuming %1 (is) allowed to expire -@@ -21945,58 +22575,81 @@ +@@ -21945,58 +22604,81 @@ @@ -21010,7 +21102,7 @@ (Add New Directory) (Add New Directory) -@@ -22004,168 +22657,170 @@ +@@ -22004,168 +22686,170 @@ StorageGroupListEditor @@ -21211,9 +21303,9 @@ - - + -+ -+ -+ ++ ++ ++ Jump Back Jump Back @@ -21237,7 +21329,7 @@ Sorry, PBP only supports %n video stream(s) Sorry, PBP only supports %n video stream -@@ -22173,7 +22828,7 @@ +@@ -22173,7 +22857,7 @@ @@ -21246,7 +21338,7 @@ Sorry, PIP only supports %n video stream(s) Sorry, PIP only supports %n video stream -@@ -22181,266 +22836,266 @@ +@@ -22181,266 +22865,266 @@ @@ -21277,9 +21369,9 @@ - - + -+ -+ -+ ++ ++ ++ Jump Ahead Jump Ahead @@ -21323,7 +21415,7 @@ - - + -+ ++ Are you sure you want to delete: Are you sure you want to delete: @@ -21563,8 +21655,8 @@ - - + -+ -+ ++ ++ OK OK @@ -21582,7 +21674,7 @@ %n minute(s) -@@ -22450,425 +23105,425 @@ +@@ -22450,425 +23134,425 @@ @@ -21717,7 +21809,7 @@ - - + -+ ++ Adjust Time Stretch Adjust Time Stretch @@ -21737,7 +21829,7 @@ - - + -+ ++ Adjust Subtitle Delay Adjust Subtitle Delay @@ -21757,7 +21849,7 @@ - - + -+ ++ Adjust Audio Sync Adjust Audio Sync @@ -21870,7 +21962,7 @@ - + + -+ ++ Edit Cut Points Edit Cut Points @@ -22081,137 +22173,137 @@ - -+ ++ Disable Subtitles Disable Subtitles - -+ ++ Enable Subtitles Enable Subtitles - -+ ++ Disable Forced Subtitles Disable Forced Subtitles - -+ ++ Enable Forced Subtitles Enable Forced Subtitles - -+ ++ Close PIP(s) Close PIP -@@ -22876,7 +23531,7 @@ +@@ -22876,7 +23560,7 @@ - -+ ++ Close PBP(s) Close PBP -@@ -22884,701 +23539,701 @@ +@@ -22884,701 +23568,701 @@ - -+ ++ Playback Data Playback Data - -+ ++ DVD Root Menu DVD Root Menu - -+ ++ DVD Title Menu DVD Title Menu - -+ ++ DVD Chapter Menu DVD Chapter Menu - - -+ -+ ++ ++ Playback Compact Menu Playback Compact Menu - -+ ++ Schedule Schedule - -+ ++ Program Guide Program Guide - -+ ++ Edit Channel Edit Channel - -+ ++ Edit Recording Edit Recording - -+ ++ Jump to Program Jump to Program - - -+ -+ ++ ++ Recorded Program Recorded Program - -+ ++ Previous Channel Previous Channel - -+ ++ Toggle Teletext Menu Toggle Teletext Menu - -+ ++ Manual Zoom Mode Manual Zoom Mode - -+ ++ Channel Groups Channel Groups @@ -22223,13 +22315,13 @@ - -+ ++ Stop Transcoding Stop Transcoding - -+ ++ Begin Transcoding Begin Transcoding @@ -22258,82 +22350,82 @@ - - + -+ ++ Edit Edit - -+ ++ Default Default - -+ ++ Autodetect Autodetect - -+ ++ High Quality High Quality - -+ ++ Medium Quality Medium Quality - -+ ++ Low Quality Low Quality - -+ ++ Commercial Auto-Skip - Commercial Auto-Skip + Commercial Auto-skip - -+ ++ Turn Auto-Expire OFF - Turn Auto-Expire OFF + Turn Auto-expire Off - -+ ++ Turn Auto-Expire ON - Turn Auto-Expire ON + Turn Auto-expire On - -+ ++ Upcoming Recordings Upcoming Recordings - -+ ++ Program Finder Program Finder - -+ ++ Edit Recording Schedule Edit Recording Schedule - -+ ++ Chapter Chapter @@ -22347,14 +22439,14 @@ - - -+ -+ ++ ++ Playback Menu Playback Menu - -+ ++ Audio Audio @@ -22362,7 +22454,7 @@ - - + -+ ++ Video Video @@ -22382,7 +22474,7 @@ - - + -+ ++ Adjust Subtitle Zoom Adjust Subtitle Zoom @@ -22394,204 +22486,204 @@ - -+ ++ Advanced Advanced - -+ ++ Deinterlacer Deinterlacer - -+ ++ Subtitles Subtitles - -+ ++ Text Subtitles Text Subtitles - -+ ++ Select Teletext CC Select Teletext CC - -+ ++ Navigate Navigate - -+ ++ Top menu - Top menu + Top Menu - -+ ++ Popup menu - Popup menu + Popup Menu - -+ ++ Angle Angle - -+ ++ Title Title - -+ ++ Source Source - -+ ++ Jobs Jobs - -+ ++ Playback Playback - -+ ++ Play Play - -+ ++ Pause Pause - -+ ++ Picture-in-Picture Picture-in-Picture - -+ ++ Toggle Browse Mode Toggle Browse Mode - -+ ++ Cancel Playlist Cancel Playlist - -+ ++ Open Live TV PIP Open Live TV PIP - -+ ++ Open Live TV PBP Open Live TV PBP - -+ ++ Open Recording PIP Open Recording PIP - -+ ++ Open Recording PBP Open Recording PBP - -+ ++ Change Active Window Change Active Window - -+ ++ Swap Windows Swap Windows - -+ ++ Switch to PIP Switch to PIP - -+ ++ Switch to PBP Switch to PBP - -+ ++ No, keep it - No, keep it + No, Keep - -+ ++ Switch Input Switch Input - -+ ++ Switch Source Switch Source - -+ ++ Change Aspect Ratio Change Aspect Ratio - -+ ++ Adjust Fill Adjust Fill - - -+ -+ ++ ++ Auto Detect Auto Detect - -+ ++ Adjust Picture Adjust Picture @@ -22603,14 +22695,14 @@ - -+ ++ Visualisation Original string is in British English Visualization - -+ ++ Disable Audio Upmixer Disable Audio Upmixer @@ -22618,25 +22710,25 @@ - - + -+ ++ None None - -+ ++ 3D 3D - -+ ++ Disable Night Mode Disable Night Mode - -+ ++ Enable Night Mode Enable Night Mode @@ -22666,19 +22758,19 @@ - -+ ++ Disable External Subtitles Disable External Subtitles - -+ ++ Enable External Subtitles Enable External Subtitles - -+ ++ Toggle Toggle @@ -22690,35 +22782,35 @@ - -+ ++ (I) Interlaced (Normal) (I) - -+ ++ (i) Interlaced (Reversed) (i) - -+ ++ (P) Progressive (P) - -+ ++ MythTV is already using all available inputs for the channel you selected. If you want to watch an in-progress recording, select one from the playback menu. If you want to watch Live TV, cancel one of the in-progress recordings from the delete menu. - MythTV is already using all available inputs for the channel you selected. If you want to watch an in-progress recording, select one from the playback menu. If you want to watch Live TV, cancel one of the in-progress recordings from the delete menu. + MythTV is already using all available inputs for the channel you selected. If you want to watch an in-progress recording, select one from the playback menu. If you want to watch Live TV, cancel one of the in-progress recordings from the delete menu. - -+ ++ Video Scan Video Scan @@ -22750,9 +22842,9 @@ - - - -+ -+ -+ ++ ++ ++ Sleep Sleep @@ -22764,204 +22856,205 @@ - -+ ++ Select Audio Track Select Audio Track - -+ ++ Select Subtitle Select Subtitle - -+ ++ Select VBI CC Select VBI CC - -+ ++ Select ATSC CC Select ATSC CC - -+ ++ Edit Cut Points (Compact) Edit Cut Points (Compact) - -+ ++ Cut List Options Cut List Options - -+ ++ Auto-Expire OFF - Auto-Expire OFF + Auto-expire Off - -+ ++ Auto-Expire ON - Auto-Expire ON + Auto-expire On - -+ ++ Error: MythTV is using all inputs, but there are no active recordings? - Error: MythTV is using all inputs, but there are no active recordings? + ERROR: MythTV is using all inputs, but there are no active recordings? - -+ ++ MythTV has no capture cards defined. Please run the mythtv-setup program. MythTV has no capture cards defined. Please run the mythtv-setup program. - -+ ++ Skip Back Not Allowed Skip Back Not Allowed - -+ ++ Previous Title Previous Title - -+ ++ Skip Still Frame Skip Still Frame - -+ ++ Next Title Next Title - -+ ++ Live TV Live TV - -+ ++ this DVD this DVD - -+ ++ this Video this Video - -+ ++ this recording - this recording + this Recording - -+ ++ You are exiting %1 - You are exiting %1 + You Are Exiting %1 - -+ ++ Save this position and go to the menu - Save this position and go to the menu + Save and Exit - -+ ++ Do not save, just exit to the menu - Do not save, just exit to the menu + Exit Without Saving - -+ ++ Exit %1 Exit %1 - -+ ++ Delete this recording Delete this recording - -+ ++ Keep watching Keep watching - -+ ++ Cannot delete program - Cannot delete program +- Cannot delete program ++ Cannot delete program - -+ ++ because it is not a recording. because it is not a recording. - -+ ++ because it is in use by because it is in use by - -+ ++ Delete it, but allow it to re-record - Delete it, but allow it to re-record + Delete Recording, and Allow Re-record - -+ ++ Delete it - Delete it + Delete Recording - -+ ++ Save it so I can watch it again - Save it so I can watch it again + Keep Recording - -+ ++ Yes, and allow re-record - Yes, and allow re-record + Yes, Delete and Allow Re-record - -+ ++ Yes, delete it - Yes, delete it + Yes, Delete @@ -22971,25 +23064,25 @@ TVRec - -+ ++ Good signal seen after %1 ms Good signal seen after %1 ms - - -+ -+ ++ ++ See 'Tuning timeout' in mythtv-setup for this input. See 'Tuning timeout' in mythtv-setup for this input. - -+ ++ Taking more than %1 ms to get a lock. Taking more than %1 ms to get a lock. -@@ -23586,7 +24241,7 @@ +@@ -23586,133 +24270,133 @@ ThemeChooser @@ -22998,8 +23091,11 @@ Theme Chooser Menu Theme Chooser Menu -@@ -23596,123 +24251,123 @@ - Loading Installed Themes + + + Loading Installed Themes +- Loading Installed Themes ++ Loading Installed Themes... - @@ -23013,7 +23109,8 @@ - + Refreshing Downloadable Themes Information - Refreshing Downloadable Themes Information +- Refreshing Downloadable Themes Information ++ Refreshing Downloadable Themes Information... - @@ -23025,7 +23122,8 @@ - + Extracting Downloadable Themes Information - Extracting Downloadable Themes Information +- Extracting Downloadable Themes Information ++ Extracting Downloadable Themes Information... - @@ -23045,7 +23143,8 @@ - + Loading Downloadable Themes - Loading Downloadable Themes +- Loading Downloadable Themes ++ Loading Downloadable Themes... - @@ -23153,7 +23252,7 @@ %1 is not a user-installed theme and can not be deleted. %1 is not a user-installed theme and can not be deleted. -@@ -23976,7 +24631,7 @@ +@@ -23976,7 +24660,7 @@ To manually schedule a recording, enter a title (optional). Then set the channel, date, start time, and duration of your recording. Note that this recording will not have any listings data or other information provided by an EPG. @@ -23162,7 +23261,7 @@ -@@ -24130,7 +24785,7 @@ +@@ -24130,7 +24814,7 @@ Below you will find the program details of the selected item. There are two available screens. You can toggle between them by pressing INFO. @@ -23171,7 +23270,7 @@ -@@ -24317,7 +24972,7 @@ +@@ -24317,7 +25001,7 @@ Allow Recordings to Auto-Expire @@ -23180,7 +23279,7 @@ -@@ -24397,7 +25052,7 @@ +@@ -24397,7 +25081,7 @@ Type your tweet below. Select "Send" to submit it. @@ -23189,7 +23288,7 @@ -@@ -24452,7 +25107,7 @@ +@@ -24452,7 +25136,7 @@ WARNING: There are conflicting scheduled recordings! @@ -23198,7 +23297,7 @@ -@@ -24604,7 +25259,7 @@ +@@ -24604,7 +25288,7 @@ Graphite is a theme emphasizing MythUI interface improvements such as alpha, animation, unique layouts, and user-supplied backdrop content. It is extremely memory-hungry. @@ -23207,7 +23306,7 @@ -@@ -25307,7 +25962,7 @@ +@@ -25307,7 +25991,7 @@ Press Up/Down from letter list, to navigate to another list. Press Left/Right from Show or Episode list to navigate to another list. @@ -23216,7 +23315,7 @@ -@@ -25332,7 +25987,7 @@ +@@ -25332,7 +26016,7 @@ No videos in library, or no files found. If you have configured a video directory, press MENU and select "Scan for Changes." @@ -23225,7 +23324,7 @@ -@@ -25376,7 +26031,7 @@ +@@ -25376,7 +26060,7 @@ Designed to show off some different element arrangements. Reminder: On Watch Recordings screen [Rew] and [FF] can be used to change the Rec. Group. @@ -23234,7 +23333,7 @@ -@@ -25627,7 +26282,7 @@ +@@ -25627,7 +26311,7 @@ Protocol-Version: %1 @@ -23243,7 +23342,7 @@ -@@ -25860,7 +26515,7 @@ +@@ -25860,7 +26544,7 @@ Move the selected corner of the preview image to the corner of the TV screen. Press SELECT to edit the other corner. Press MENU for options and ESC to quit. @@ -23252,7 +23351,7 @@ -@@ -26303,7 +26958,7 @@ +@@ -26303,7 +26987,7 @@ Ok @@ -23261,7 +23360,7 @@ -@@ -26423,7 +27078,7 @@ +@@ -26423,7 +27107,7 @@ PCM-BluRay @@ -23270,7 +23369,7 @@ -@@ -26618,7 +27273,7 @@ +@@ -26618,7 +27302,7 @@ To create a custom recording rule, either select an existing rule, or create a new rule by typing in a name. Then select a rule type and hit enter. The SQL code will be transferred below, and you can edit it and insert your own program information. Finally, you can test, immediately activate, store, or cancel your rule. @@ -23279,7 +23378,7 @@ -@@ -26902,7 +27557,7 @@ +@@ -26902,7 +27586,7 @@ Let's set up your DVR! On the next few screens, we will configure your system to play back audio and video, optimize your color and contrast, and make sure we are taking advantage of all of your hardware. Press next to begin! @@ -23288,7 +23387,7 @@ -@@ -27454,7 +28109,7 @@ +@@ -27454,7 +28138,7 @@ Designed to show off some different element arrangements. Tested at 1280x720 and with Français. Reminder: On Watch Recordings screen [Rew] and [FF] can be used to change the Rec. Group. @@ -23297,7 +23396,7 @@ -@@ -28434,7 +29089,7 @@ +@@ -28434,7 +29118,7 @@ No videos in library, or no files found. If you have configured a video directory, press "M" (or the MENU key) and select "Scan for Changes." @@ -23306,7 +23405,7 @@ -@@ -28564,7 +29219,7 @@ +@@ -28564,7 +29248,7 @@ Post-Processing Options @@ -23315,7 +23414,7 @@ -@@ -28851,9 +29506,9 @@ +@@ -28851,9 +29535,9 @@ On this screen, you can add new extensions to be recognized by the Video Plugin. If a scan does not add your files, create a new extension below by clicking the "New" button. If you select "Use Default Player," the player command set for the extension will be ignored. "Ignore This File Type" prevents the items from appearing in a scan. @@ -23327,7 +23426,7 @@ -@@ -29298,7 +29953,7 @@ +@@ -29298,7 +29982,7 @@ Move the selected arrow to the corner of the TV screen. Press SELECT to edit the other arrow. Press MENU for options and ESC to quit. @@ -23336,7 +23435,7 @@ -@@ -29674,12 +30329,12 @@ +@@ -29674,12 +30358,12 @@ Arclight is a sleek theme meant for widescreen HD displays. It is high contrast and uses shapes and an attractive layout to convey information simply and consistently. @@ -23351,7 +23450,7 @@ -@@ -29699,12 +30354,12 @@ +@@ -29699,12 +30383,12 @@ A blue theme. Originally designed before the MythUI rewrite, MythCenter has been updated to take advantage of the new UI library while still maintaining the look and feel that long-time MythTV users are used to. @@ -23366,7 +23465,7 @@ -@@ -29954,7 +30609,7 @@ +@@ -29954,7 +30638,7 @@ ThemeUpdateChecker @@ -23375,7 +23474,7 @@ Version %1 of the %2 theme is now available in the Theme Chooser. The currently installed version is %3. Version %1 of the %2 theme is now available in the Theme Chooser. The currently installed version is %3. -@@ -29991,12 +30646,12 @@ +@@ -29991,12 +30675,12 @@ Exif Date (oldest first) @@ -23390,7 +23489,7 @@ -@@ -30046,7 +30701,7 @@ +@@ -30046,12 +30730,23 @@ Date Format @@ -23399,7 +23498,23 @@ Date format of thumbnail captions. Other places use the system date format. Sample shows 3rd May 2002. Date format of thumbnail captions. Other places use the system date format. Sample shows 3rd May 2002. -@@ -30087,45 +30742,46 @@ + + ++ Transcode ++ ++ Autodetect from %1 ++ Autodetect from %1 ++ ++ ++ Completed ++ Completed ++ ++ ++ + Transition + + +@@ -30087,45 +30782,46 @@ TransportList @@ -23458,7 +23573,7 @@ Delete... Delete... -@@ -30133,8 +30789,8 @@ +@@ -30133,8 +30829,8 @@ UPNPScanner @@ -23469,26 +23584,26 @@ Media Servers Media Servers -@@ -30230,89 +30886,89 @@ +@@ -30230,89 +30926,89 @@ V4L2encGroup - -+ ++ Probed info - Probed info + Probed Info - -+ ++ Failed to open - Failed to open + Failed to Open - -+ ++ Failed to probe - Failed to probe + Failed to Probe @@ -23498,21 +23613,21 @@ V4LConfigurationGroup - -+ ++ Probed info - Probed info + Probed Info - -+ ++ Failed to open - Failed to open + Failed to Open - -+ ++ Failed to probe - Failed to probe + Failed to Probe @@ -23581,12 +23696,12 @@ Done Done -@@ -30320,35 +30976,34 @@ +@@ -30320,35 +31016,34 @@ VBoxConfigurationGroup - -+ ++ Description Description @@ -23601,13 +23716,13 @@ VBoxDeviceID - -+ ++ Device ID Device ID - -+ ++ Device ID of VBox device - Device ID of VBox device + Device ID of VBox Device @@ -23619,13 +23734,13 @@ - - - -+ -+ -+ ++ ++ ++ Manually Enter IP Address Manually Enter IP Address -@@ -30449,7 +31104,7 @@ +@@ -30449,7 +31144,7 @@ Play With Trailers @@ -23634,7 +23749,7 @@ -@@ -30464,7 +31119,7 @@ +@@ -30464,7 +31159,7 @@ Scan For Changes @@ -23643,7 +23758,7 @@ -@@ -30490,12 +31145,12 @@ +@@ -30490,12 +31185,12 @@ Failed to retrieve image(s) @@ -23658,7 +23773,7 @@ -@@ -30521,12 +31176,12 @@ +@@ -30521,12 +31216,12 @@ Retrieved details for %1 @@ -23673,7 +23788,7 @@ -@@ -30706,7 +31361,7 @@ +@@ -30706,7 +31401,7 @@ Fetching details for %1 @@ -23682,7 +23797,7 @@ -@@ -30718,7 +31373,7 @@ +@@ -30718,7 +31413,7 @@ Failed to delete file @@ -23691,7 +23806,7 @@ -@@ -30901,7 +31556,7 @@ +@@ -30901,7 +31596,7 @@ Directories that hold videos @@ -23700,7 +23815,7 @@ -@@ -30911,7 +31566,7 @@ +@@ -30911,7 +31606,7 @@ Directory that holds movie posters @@ -23709,7 +23824,7 @@ -@@ -30925,37 +31580,37 @@ +@@ -30925,37 +31620,37 @@ Directory that holds movie screenshots @@ -23754,7 +23869,7 @@ -@@ -30970,7 +31625,7 @@ +@@ -30970,7 +31665,7 @@ Video Tree remembers last selected position @@ -23763,7 +23878,7 @@ -@@ -30978,58 +31633,62 @@ +@@ -30978,58 +31673,62 @@ If set, the current position in the Video Tree is persistent. @@ -23838,7 +23953,7 @@ -@@ -31057,118 +31716,117 @@ +@@ -31057,118 +31756,117 @@ VideoModeSettings @@ -23983,28 +24098,28 @@ Zoom %1x%2 @ (%3,%4) Zoom %1x%2 @ (%3,%4) -@@ -31194,17 +31852,17 @@ +@@ -31194,17 +31892,17 @@ Searching for video files - Searching for video files -+ Searching for Video Files ++ Searching for Video Files... Verifying video files - Verifying video files -+ Verifying Video Files ++ Verifying Video Files... Updating video database - Updating video database -+ Updating Video Database ++ Updating Video Database... -@@ -31212,17 +31870,17 @@ +@@ -31212,17 +31910,17 @@ Select from one of the preconfigured playback profiles. When satisfied, you can test Standard Definition and High Definition playback with the selected profile before moving on. @@ -24025,18 +24140,18 @@ -@@ -31275,56 +31933,53 @@ +@@ -31275,56 +31973,53 @@ VideoSourceEditor - -+ ++ Video sources - Video sources + Video Sources + + -+ ++ + New video source + New Video Source @@ -24060,7 +24175,7 @@ - -+ ++ Are you sure you want to delete ALL video sources? Are you sure you want to delete ALL video sources? @@ -24098,7 +24213,7 @@ Video Source Video Source -@@ -31348,93 +32003,93 @@ +@@ -31348,93 +32043,93 @@ @@ -24210,7 +24325,7 @@ Delete '%1' %2 rule? Delete '%1' %2 rule? -@@ -31442,52 +32097,52 @@ +@@ -31442,52 +32137,52 @@ WatchListSettings @@ -24279,7 +24394,7 @@ When an episode is deleted or marked as watched, other episodes of the series are excluded from the 'Watch List' for this interval of time. Daily shows also have a smaller interval based on this setting. When an episode is deleted or marked as watched, other episodes of the series are excluded from the 'Watch List' for this interval of time. Daily shows also have a smaller interval based on this setting. -@@ -31508,7 +32163,7 @@ +@@ -31508,7 +32203,7 @@ Tuner %1 is recording: @@ -24288,7 +24403,7 @@ -@@ -31519,12 +32174,12 @@ +@@ -31519,12 +32214,12 @@ There are no recordings currently taking place @@ -24303,22 +24418,22 @@ -@@ -31622,12 +32277,12 @@ +@@ -31622,12 +32317,12 @@ Cannot shutdown because MythTV is currently recording - Cannot shutdown because MythTV is currently recording -+ Cannot Shutdown Because MythTV Is Currently Recording ++ Cannot Shutdown Because MythTV is Currently Recording Cannot shutdown because MythTV is about to start recording - Cannot shutdown because MythTV is about to start recording -+ Cannot Shutdown Because MythTV Is About to Start Recording ++ Cannot Shutdown Because MythTV is About to Start Recording -@@ -31638,12 +32293,12 @@ +@@ -31638,12 +32333,12 @@ XMLTV_generic_config -- cgit v0.12