Skip to content

Commit

Permalink
Merge pull request #4115 from ronie/trac14885
Browse files Browse the repository at this point in the history
don't combine strings in a label - fixes #14885
  • Loading branch information
jmarshallnz committed Jan 31, 2014
2 parents aea43f8 + 2073748 commit e55212c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 3 deletions.
7 changes: 6 additions & 1 deletion language/English/strings.po
Expand Up @@ -9846,7 +9846,12 @@ msgctxt "#20321"
msgid "Scanning albums using %s" msgid "Scanning albums using %s"
msgstr "" 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" msgctxt "#20324"
msgid "Play part..." msgid "Play part..."
Expand Down
3 changes: 1 addition & 2 deletions xbmc/video/windows/GUIWindowVideoNav.cpp
Expand Up @@ -600,7 +600,6 @@ void CGUIWindowVideoNav::DoSearch(const CStdString& strSearch, CFileItemList& it
CStdString strGenre = g_localizeStrings.Get(515); // Genre CStdString strGenre = g_localizeStrings.Get(515); // Genre
CStdString strActor = g_localizeStrings.Get(20337); // Actor CStdString strActor = g_localizeStrings.Get(20337); // Actor
CStdString strDirector = g_localizeStrings.Get(20339); // Director CStdString strDirector = g_localizeStrings.Get(20339); // Director
CStdString strMovie = g_localizeStrings.Get(20338); // Movie


//get matching names //get matching names
m_database.GetMoviesByName(strSearch, tempItems); m_database.GetMoviesByName(strSearch, tempItems);
Expand Down Expand Up @@ -653,7 +652,7 @@ void CGUIWindowVideoNav::DoSearch(const CStdString& strSearch, CFileItemList& it
AppendAndClearSearchItems(tempItems, "[" + g_localizeStrings.Get(20365) + "] ", items); AppendAndClearSearchItems(tempItems, "[" + g_localizeStrings.Get(20365) + "] ", items);


m_database.GetMoviesByPlot(strSearch, tempItems); 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) void CGUIWindowVideoNav::PlayItem(int iItem)
Expand Down

0 comments on commit e55212c

Please sign in to comment.