Conflicts:
	data/locale/deutsch.locale


Origin commit data
------------------
Branch: ni/coolstream
Commit: 66e3c79ee1
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-05-09 (Tue, 09 May 2017)



------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2017-05-09 13:19:56 +02:00
5 changed files with 21 additions and 20 deletions

View File

@@ -1,5 +1,5 @@
AUDIOSelectMenue.head Tonoptionen AUDIOSelectMenue.head Tonoptionen
EPGMenu.epgplus Vorschauübersicht EPGMenu.epgplus Vorschaubersicht
EPGMenu.eventinfo Info zur Sendung EPGMenu.eventinfo Info zur Sendung
EPGMenu.eventlist Vorschau aktuelles Programm EPGMenu.eventlist Vorschau aktuelles Programm
EPGMenu.head EPG - Programminformation EPGMenu.head EPG - Programminformation
@@ -7,7 +7,7 @@ EPGMenu.streaminfo Technische Information
EPGPlus.actions Aktionen EPGPlus.actions Aktionen
EPGPlus.bybouquet_mode bouquetweise EPGPlus.bybouquet_mode bouquetweise
EPGPlus.bypage_mode seitenweise EPGPlus.bypage_mode seitenweise
EPGPlus.head Vorschau Übersicht (EPG Plus) EPGPlus.head Vorschau-Übersicht (EPG Plus)
EPGPlus.next_bouquet Bouquet vor EPGPlus.next_bouquet Bouquet vor
EPGPlus.options Optionen EPGPlus.options Optionen
EPGPlus.page_down Seite zurück EPGPlus.page_down Seite zurück
@@ -19,7 +19,7 @@ EPGPlus.remind Vormerken
EPGPlus.scroll_mode Scroll-Modus EPGPlus.scroll_mode Scroll-Modus
EPGPlus.stretch_mode Stretch-Modus EPGPlus.stretch_mode Stretch-Modus
EPGPlus.swap_mode Blättern EPGPlus.swap_mode Blättern
EPGPlus.view_mode Modus EPGPlus.view_mode Ansicht
GENRE.ALL aus GENRE.ALL aus
GENRE.ARTS Kultur GENRE.ARTS Kultur
GENRE.ARTS.0 Kunst/Kultur GENRE.ARTS.0 Kunst/Kultur

View File

@@ -2,24 +2,24 @@ AUDIOSelectMenue.head Audio Selection
EPGMenu.epgplus Eventlist overview EPGMenu.epgplus Eventlist overview
EPGMenu.eventinfo Details current program EPGMenu.eventinfo Details current program
EPGMenu.eventlist Eventlist current programm EPGMenu.eventlist Eventlist current programm
EPGMenu.head EPG - Program Information EPGMenu.head EPG - Program information
EPGMenu.streaminfo technical information EPGMenu.streaminfo Technical information
EPGPlus.actions Actions EPGPlus.actions Actions
EPGPlus.bybouquet_mode by bouquet EPGPlus.bybouquet_mode by bouquet
EPGPlus.bypage_mode by page EPGPlus.bypage_mode by page
EPGPlus.head Eventlist Overview (EPG Plus) EPGPlus.head Eventlist overview (EPG Plus)
EPGPlus.next_bouquet next bouquet EPGPlus.next_bouquet Next bouquet
EPGPlus.options options EPGPlus.options Options
EPGPlus.page_down page down EPGPlus.page_down Page down
EPGPlus.page_up page up EPGPlus.page_up Page up
EPGPlus.prev_bouquet prev bouquet EPGPlus.prev_bouquet Prev bouquet
EPGPlus.record Record EPGPlus.record Record
EPGPlus.refresh_epg Refresh EPGPlus.refresh_epg Refresh
EPGPlus.remind Schedule EPGPlus.remind Schedule
EPGPlus.scroll_mode Scroll Mode EPGPlus.scroll_mode Scroll mode
EPGPlus.stretch_mode Stretch Mode EPGPlus.stretch_mode Stretch mode
EPGPlus.swap_mode swap mode EPGPlus.swap_mode Swap mode
EPGPlus.view_mode view mode EPGPlus.view_mode View mode
GENRE.ALL off GENRE.ALL off
GENRE.ARTS Arts GENRE.ARTS Arts
GENRE.ARTS.0 arts/culture GENRE.ARTS.0 arts/culture

View File

@@ -53,7 +53,7 @@ void CBuildInfo::initVarBuildInfo()
setWindowHeaderButtons(CComponentsHeader::CC_BTN_MENU | CComponentsHeader::CC_BTN_EXIT); setWindowHeaderButtons(CComponentsHeader::CC_BTN_MENU | CComponentsHeader::CC_BTN_EXIT);
shadow = true; shadow = CC_SHADOW_ON;
} }

View File

@@ -4,4 +4,4 @@
* to luainstance.h changes * to luainstance.h changes
*/ */
#define LUA_API_VERSION_MAJOR 1 #define LUA_API_VERSION_MAJOR 1
#define LUA_API_VERSION_MINOR 73 #define LUA_API_VERSION_MINOR 74

View File

@@ -89,12 +89,13 @@ int CLuaInstCCWindow::CCWindowNew(lua_State *L)
tableLookup(L, "name", name) || tableLookup(L, "title", name) || tableLookup(L, "caption", name); tableLookup(L, "name", name) || tableLookup(L, "title", name) || tableLookup(L, "caption", name);
tableLookup(L, "icon", icon); tableLookup(L, "icon", icon);
bool has_shadow = false; int has_shadow = CC_SHADOW_OFF;
if (!tableLookup(L, "has_shadow", has_shadow)) { if (!tableLookup(L, "has_shadow", has_shadow)) {
tmp1 = "false"; tmp1 = "false";
if (tableLookup(L, "has_shadow", tmp1)) if (tableLookup(L, "has_shadow", tmp1))
paramBoolDeprecated(L, tmp1.c_str()); paramBoolDeprecated(L, tmp1.c_str());
has_shadow = (tmp1 == "true" || tmp1 == "1" || tmp1 == "yes"); if ((tmp1 == "true" || tmp1 == "1" || tmp1 == "yes"))
has_shadow = CC_SHADOW_ON;
} }
tableLookup(L, "color_frame" , color_frame); tableLookup(L, "color_frame" , color_frame);
@@ -126,7 +127,7 @@ int CLuaInstCCWindow::CCWindowNew(lua_State *L)
CLuaCCWindow **udata = (CLuaCCWindow **) lua_newuserdata(L, sizeof(CLuaCCWindow *)); CLuaCCWindow **udata = (CLuaCCWindow **) lua_newuserdata(L, sizeof(CLuaCCWindow *));
*udata = new CLuaCCWindow(); *udata = new CLuaCCWindow();
(*udata)->w = new CComponentsWindow(x, y, dx, dy, name.c_str(), icon.c_str(), 0, has_shadow, (fb_pixel_t)color_frame, (fb_pixel_t)color_body, (fb_pixel_t)color_shadow); (*udata)->w = new CComponentsWindow(x, y, dx, dy, name.c_str(), icon.c_str(), NULL, has_shadow, (fb_pixel_t)color_frame, (fb_pixel_t)color_body, (fb_pixel_t)color_shadow);
/* Ignore percent conversion of width and height /* Ignore percent conversion of width and height
to remain compatible with the Lua API */ to remain compatible with the Lua API */
(*udata)->w->setWidth(dx); (*udata)->w->setWidth(dx);