diff options
author | jmarshallnz <jcmarsha@gmail.com> | 2014-02-24 09:01:45 +1300 |
---|---|---|
committer | jmarshallnz <jcmarsha@gmail.com> | 2014-02-24 09:01:45 +1300 |
commit | abc59871c18294e8fd499c29290a381b76841c0c (patch) | |
tree | 00a26a66f237440b2bca4bbdd70749d5a6ca4122 | |
parent | a24f446b9da93ebc4a092942402392cf09db6b8f (diff) | |
parent | d9d3959ac8b650a5b96d111db141b123a21cee4a (diff) |
Merge pull request #4270 from MartijnKaijser/addondisabled
[language] split of "Add-on disabled" string after d688682
-rwxr-xr-x | language/English/strings.po | 8 | ||||
-rw-r--r-- | xbmc/settings/dialogs/GUIDialogContentSettings.cpp | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/language/English/strings.po b/language/English/strings.po index 0db24c9f2c..b0abb1ce6e 100755 --- a/language/English/strings.po +++ b/language/English/strings.po @@ -11838,7 +11838,13 @@ msgctxt "#24023" msgid "Disabled" msgstr "" -#empty strings from id 24024 to 24026 +#. Used as an error message (triggered from content dialog) on disabled scrapers +#: xbmc/settings/dialogs/GUIDialogContentSettings.cpp +msgctxt "#24023" +msgid "Add-on disabled" +msgstr "" + +#empty strings from id 24025 to 24026 #: xbmc/addons/addon.cpp msgctxt "#24027" diff --git a/xbmc/settings/dialogs/GUIDialogContentSettings.cpp b/xbmc/settings/dialogs/GUIDialogContentSettings.cpp index 825c22ff1e..7b5aad31c4 100644 --- a/xbmc/settings/dialogs/GUIDialogContentSettings.cpp +++ b/xbmc/settings/dialogs/GUIDialogContentSettings.cpp @@ -401,7 +401,7 @@ bool CGUIDialogContentSettings::Show(ADDON::ScraperPtr& scraper, VIDEO::SScanSet dialog->m_scraper = scraper; // toast selected but disabled scrapers if (!scraper->Enabled()) - CGUIDialogKaiToast::QueueNotification(CGUIDialogKaiToast::Error, g_localizeStrings.Get(24023), scraper->Name(), 2000, true); + CGUIDialogKaiToast::QueueNotification(CGUIDialogKaiToast::Error, g_localizeStrings.Get(24024), scraper->Name(), 2000, true); } dialog->m_bScanRecursive = (settings.recurse > 0 && !settings.parent_name) || (settings.recurse > 1 && settings.parent_name); |