Fixed Bug 1484

This commit is contained in:
louis 2013-12-24 11:20:25 +01:00
parent 4120b0eae2
commit 5fa365b68c
7 changed files with 40 additions and 33 deletions

View File

@ -90,3 +90,4 @@ Version 1.1.0
if "close tvguide on channel switch" is configured
- fixed wrong font for clock in horizontal view
- Added feature to jump to a specific channel with number keys
- Fixed Bug 1484

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-tvguide 0.0.1\n"
"Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2013-12-23 09:03+0100\n"
"POT-Creation-Date: 2013-12-24 11:13+0100\n"
"PO-Revision-Date: 2013-09-21 17:49+0200\n"
"Last-Translator: My friend <Sampep> Thanks David <Gabychan> <gbonich@gmail.com>\n"
"Language-Team: \n"
@ -432,6 +432,9 @@ msgstr ""
msgid "Theme"
msgstr "Plantilla"
msgid "Time to display in minutes"
msgstr "Temps a mostrar en minuts"
msgid "Rounded Corners"
msgstr "Cantells rodons"
@ -450,9 +453,6 @@ msgstr ""
msgid "Hide last Channel Group"
msgstr "Amaga el darrer grup de canals"
msgid "Time to display in minutes"
msgstr "Temps a mostrar en minuts"
msgid "Big Step (Keys 1 / 3) in hours"
msgstr "Salt (Botons 1 / 3) en hores"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-tvguide 0.0.1\n"
"Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2013-12-23 09:03+0100\n"
"POT-Creation-Date: 2013-12-24 11:13+0100\n"
"PO-Revision-Date: 2012-08-25 17:49+0200\n"
"Last-Translator: Horst\n"
"Language-Team: \n"
@ -429,6 +429,9 @@ msgstr "Entsprechendes nOpacity Theme benutzen"
msgid "Theme"
msgstr "Theme"
msgid "Time to display in minutes"
msgstr "Angezeigte Zeitspanne in Minuten"
msgid "Rounded Corners"
msgstr "Abgerundete Ecken"
@ -447,9 +450,6 @@ msgstr "Funktion der Nummerntasten"
msgid "Hide last Channel Group"
msgstr "Letzte Kanalgruppe verstecken"
msgid "Time to display in minutes"
msgstr "Angezeigte Zeitspanne in Minuten"
msgid "Big Step (Keys 1 / 3) in hours"
msgstr "Großer Sprung (Tasten 1 / 3) in Stunden"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-tvguide 1.0.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2013-12-23 09:03+0100\n"
"POT-Creation-Date: 2013-12-24 11:13+0100\n"
"PO-Revision-Date: 2013-09-25 17:49+0400\n"
"Last-Translator: AmiD, ilya\n"
"Language-Team: Russia-Cherepovets(wm.amid@gmail.com)\n"
@ -429,6 +429,9 @@ msgstr ""
msgid "Theme"
msgstr "Тема"
msgid "Time to display in minutes"
msgstr "Время показа в минутах"
msgid "Rounded Corners"
msgstr "Закруглять углы"
@ -447,9 +450,6 @@ msgstr ""
msgid "Hide last Channel Group"
msgstr "Скрывать последнюю группу каналов"
msgid "Time to display in minutes"
msgstr "Время показа в минутах"
msgid "Big Step (Keys 1 / 3) in hours"
msgstr "Прыжок (Кнопки 1 / 3) в часах"

View File

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: vdr-tvguide 1.1.0\n"
"Report-Msgid-Bugs-To: <see README>\n"
"POT-Creation-Date: 2013-12-23 09:03+0100\n"
"POT-Creation-Date: 2013-12-24 11:13+0100\n"
"PO-Revision-Date: 2013-09-15 00:12+0100\n"
"Last-Translator: Milan Hrala <hrala.milan@gmail.com>\n"
"Language-Team: \n"
@ -429,6 +429,9 @@ msgstr ""
msgid "Theme"
msgstr "Téma"
msgid "Time to display in minutes"
msgstr "Zobrazený èas v minútach"
msgid "Rounded Corners"
msgstr "Zaoblené rohy"
@ -447,9 +450,6 @@ msgstr ""
msgid "Hide last Channel Group"
msgstr "Skry» poslednú skupinu kanálov"
msgid "Time to display in minutes"
msgstr "Zobrazený èas v minútach"
msgid "Big Step (Keys 1 / 3) in hours"
msgstr "Veµké skoky (tlaèidlá 1 / 3) v hodinách"

View File

@ -434,6 +434,9 @@ void cTvGuideOsd::processKeyGreen() {
if (prev) {
readChannels(prev);
if (columns.Count() > 0) {
if (tvguideConfig.channelJumpMode == eGroupJump)
drawGridsChannelJump();
else
drawGridsChannelJump(currentCol);
}
osdManager.flush();
@ -471,6 +474,9 @@ void cTvGuideOsd::processKeyYellow() {
if (next) {
readChannels(next);
if (columns.Count() > 0) {
if (tvguideConfig.channelJumpMode == eGroupJump)
drawGridsChannelJump();
else
drawGridsChannelJump(currentCol);
}
osdManager.flush();