mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-31 09:21:09 +02:00
Merge branch 'pu/moviebrowser' of https://github.com/tuxbox-neutrino/gui-neutrino into ni/tuxbox
Origin commit data
------------------
Commit: 6a196e6645
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-11-02 (Wed, 02 Nov 2016)
This commit is contained in:
@@ -1826,11 +1826,12 @@ moviebrowser.edit_book_type_info1 Neue Sprunglänge (s)
|
||||
moviebrowser.edit_book_type_info2 <0 zurück , >0 vor, 0: kein
|
||||
moviebrowser.edit_serie Name der Serie
|
||||
moviebrowser.error_no_movies Keine Filme gefunden
|
||||
moviebrowser.filter_off Filter aus
|
||||
moviebrowser.foot_filter Filter:
|
||||
moviebrowser.foot_focus Fenster umschalten
|
||||
moviebrowser.foot_focus Fenster wechseln
|
||||
moviebrowser.foot_options Optionen
|
||||
moviebrowser.foot_play Film starten
|
||||
moviebrowser.foot_refresh Liste neu laden
|
||||
moviebrowser.foot_play Wiedergabe
|
||||
moviebrowser.foot_refresh Neu laden
|
||||
moviebrowser.foot_sort Sortieren:
|
||||
moviebrowser.head Meine Aufnahmen
|
||||
moviebrowser.head_filter Filme nach Kategorie filtern:
|
||||
|
@@ -1826,10 +1826,11 @@ moviebrowser.edit_book_type_info1 Enter new jump length (s)
|
||||
moviebrowser.edit_book_type_info2 <0 back , >0 for, 0: none
|
||||
moviebrowser.edit_serie Enter name of serie
|
||||
moviebrowser.error_no_movies No movies found
|
||||
moviebrowser.filter_off Filter off
|
||||
moviebrowser.foot_filter Filter:
|
||||
moviebrowser.foot_focus Switch window
|
||||
moviebrowser.foot_options Options
|
||||
moviebrowser.foot_play Start movie
|
||||
moviebrowser.foot_play Playback
|
||||
moviebrowser.foot_refresh Refresh list
|
||||
moviebrowser.foot_sort Sort:
|
||||
moviebrowser.head My recordings
|
||||
|
@@ -443,7 +443,7 @@ void CMovieBrowser::initGlobalSettings(void)
|
||||
m_settings.sorting.direction = MB_DIRECTION_DOWN;
|
||||
|
||||
m_settings.filter.item = MB_INFO_MAX_NUMBER;
|
||||
m_settings.filter.optionString = "";
|
||||
m_settings.filter.optionString = g_Locale->getText(LOCALE_OPTIONS_OFF);
|
||||
m_settings.filter.optionVar = 0;
|
||||
|
||||
m_settings.parentalLockAge = MI_PARENTAL_OVER18;
|
||||
@@ -1691,7 +1691,7 @@ void CMovieBrowser::refreshFilterList(void)
|
||||
}
|
||||
else
|
||||
{
|
||||
std::string tmp = g_Locale->getText(LOCALE_MENU_BACK);
|
||||
std::string tmp = g_Locale->getText(LOCALE_MOVIEBROWSER_FILTER_OFF);
|
||||
m_FilterLines.lineArray[0].push_back(tmp);
|
||||
|
||||
if (m_settings.filter.item == MB_INFO_FILEPATH)
|
||||
@@ -1950,14 +1950,16 @@ int CMovieBrowser::refreshFoot(bool show)
|
||||
int ok_loc_len = std::max(FOOT_FONT->getRenderWidth(g_Locale->getText(LOCALE_BOOKMARKMANAGER_SELECT), true),
|
||||
FOOT_FONT->getRenderWidth(g_Locale->getText(LOCALE_MOVIEBROWSER_FOOT_PLAY), true));
|
||||
std::string filter_text = g_Locale->getText(LOCALE_MOVIEBROWSER_FOOT_FILTER);
|
||||
filter_text += " ";
|
||||
filter_text += m_settings.filter.optionString;
|
||||
std::string sort_text = g_Locale->getText(LOCALE_MOVIEBROWSER_FOOT_SORT);
|
||||
sort_text += g_Locale->getText(m_localizedItemName[m_settings.sorting.item]);
|
||||
int sort_text_len = FOOT_FONT->getRenderWidth(g_Locale->getText(LOCALE_MOVIEBROWSER_FOOT_SORT), true);
|
||||
sort_text += " ";
|
||||
int sort_text_len = FOOT_FONT->getRenderWidth(sort_text, true);
|
||||
int len = 0;
|
||||
for (int i = 0; m_localizedItemName[i] != NONEXISTANT_LOCALE; i++)
|
||||
len = std::max(len, FOOT_FONT->getRenderWidth(g_Locale->getText(m_localizedItemName[i]), true));
|
||||
sort_text_len += len;
|
||||
sort_text += g_Locale->getText(m_localizedItemName[m_settings.sorting.item]);
|
||||
|
||||
button_label_ext footerButtons[] = {
|
||||
{ NEUTRINO_ICON_BUTTON_RED, NONEXISTANT_LOCALE, sort_text.c_str(), sort_text_len, false },
|
||||
@@ -2367,7 +2369,7 @@ bool CMovieBrowser::onButtonPressFilterList(neutrino_msg_t msg)
|
||||
if (selected_line == 0)
|
||||
{
|
||||
m_settings.filter.item = MB_INFO_MAX_NUMBER;
|
||||
m_settings.filter.optionString = "";
|
||||
m_settings.filter.optionString = g_Locale->getText(LOCALE_OPTIONS_OFF);
|
||||
m_settings.filter.optionVar = 0;
|
||||
refreshFilterList();
|
||||
m_pcFilter->setSelectedLine(0);
|
||||
|
@@ -1853,6 +1853,7 @@ typedef enum
|
||||
LOCALE_MOVIEBROWSER_EDIT_BOOK_TYPE_INFO2,
|
||||
LOCALE_MOVIEBROWSER_EDIT_SERIE,
|
||||
LOCALE_MOVIEBROWSER_ERROR_NO_MOVIES,
|
||||
LOCALE_MOVIEBROWSER_FILTER_OFF,
|
||||
LOCALE_MOVIEBROWSER_FOOT_FILTER,
|
||||
LOCALE_MOVIEBROWSER_FOOT_FOCUS,
|
||||
LOCALE_MOVIEBROWSER_FOOT_OPTIONS,
|
||||
|
@@ -1853,6 +1853,7 @@ const char * locale_real_names[] =
|
||||
"moviebrowser.edit_book_type_info2",
|
||||
"moviebrowser.edit_serie",
|
||||
"moviebrowser.error_no_movies",
|
||||
"moviebrowser.filter_off",
|
||||
"moviebrowser.foot_filter",
|
||||
"moviebrowser.foot_focus",
|
||||
"moviebrowser.foot_options",
|
||||
|
Reference in New Issue
Block a user