- neutrino: add localized bouquet names

Signed-off-by: Thilo Graf <dbt@novatux.de>
This commit is contained in:
svenhoefer
2018-09-04 06:12:39 +02:00
committed by Thilo Graf
parent 9f18bf7960
commit 575357ac70
11 changed files with 46 additions and 35 deletions

View File

@@ -79,10 +79,10 @@ int CFavorites::addChannelToFavorites(bool show_list)
else
{
// -- check if Favorite Bouquet exists: if not, create it.
bouquet_id = g_bouquetManager->existsUBouquet(g_Locale->getText(LOCALE_FAVORITES_BOUQUETNAME), true);
bouquet_id = g_bouquetManager->existsUBouquet(DEFAULT_BQ_NAME_FAV, true);
if (bouquet_id == -1) {
g_bouquetManager->addBouquet(g_Locale->getText(LOCALE_FAVORITES_BOUQUETNAME), true);
bouquet_id = g_bouquetManager->existsUBouquet(g_Locale->getText(LOCALE_FAVORITES_BOUQUETNAME), true);
g_bouquetManager->addBouquet(DEFAULT_BQ_NAME_FAV, true);
bouquet_id = g_bouquetManager->existsUBouquet(DEFAULT_BQ_NAME_FAV, true);
// status |= 1;
}
}