aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorronie <ronie>2014-01-31 01:22:27 +0100
committerronie <ronie>2014-01-31 01:22:27 +0100
commit207374882d0eceba968832ac89c09600dac095e6 (patch)
treeb1b3ed9ca9804486a8d3e10c499e28a2972796d3
parentaea43f824bc5be947af6443f8967c0b906e1a1cd (diff)
don't combine strings in a label - fixes #14885
-rwxr-xr-xlanguage/English/strings.po7
-rw-r--r--xbmc/video/windows/GUIWindowVideoNav.cpp3
2 files changed, 7 insertions, 3 deletions
diff --git a/language/English/strings.po b/language/English/strings.po
index e6c9a8933b..37ac8d79ce 100755
--- a/language/English/strings.po
+++ b/language/English/strings.po
@@ -9846,7 +9846,12 @@ msgctxt "#20321"
msgid "Scanning albums using %s"
msgstr ""
-#empty strings from id 20322 to 20323
+#empty string with id 20322
+
+#: xbmc/video/windows/GUIWindowVideoNav.cpp
+msgctxt "#20323"
+msgid "Movie plot"
+msgstr ""
msgctxt "#20324"
msgid "Play part..."
diff --git a/xbmc/video/windows/GUIWindowVideoNav.cpp b/xbmc/video/windows/GUIWindowVideoNav.cpp
index 10bd22a52d..37e01d9cf9 100644
--- a/xbmc/video/windows/GUIWindowVideoNav.cpp
+++ b/xbmc/video/windows/GUIWindowVideoNav.cpp
@@ -600,7 +600,6 @@ void CGUIWindowVideoNav::DoSearch(const CStdString& strSearch, CFileItemList& it
CStdString strGenre = g_localizeStrings.Get(515); // Genre
CStdString strActor = g_localizeStrings.Get(20337); // Actor
CStdString strDirector = g_localizeStrings.Get(20339); // Director
- CStdString strMovie = g_localizeStrings.Get(20338); // Movie
//get matching names
m_database.GetMoviesByName(strSearch, tempItems);
@@ -653,7 +652,7 @@ void CGUIWindowVideoNav::DoSearch(const CStdString& strSearch, CFileItemList& it
AppendAndClearSearchItems(tempItems, "[" + g_localizeStrings.Get(20365) + "] ", items);
m_database.GetMoviesByPlot(strSearch, tempItems);
- AppendAndClearSearchItems(tempItems, "[" + strMovie + " " + g_localizeStrings.Get(207) + "] ", items);
+ AppendAndClearSearchItems(tempItems, "[" + g_localizeStrings.Get(20323) + "] ", items);
}
void CGUIWindowVideoNav::PlayItem(int iItem)