[-]
[+]
|
Changed |
kaffeine.spec
|
|
[-]
[+]
|
Added |
kaffeine-dvb-downgrade.patch
^
|
@@ -0,0 +1,1975 @@
+diff -uNr kaffeine-0.8.8/kaffeine/src/input/dvb/channeldesc.cpp kaffeine-0.8.7/kaffeine/src/input/dvb/channeldesc.cpp
+--- kaffeine-0.8.8/kaffeine/src/input/dvb/channeldesc.cpp 2008-10-24 23:39:35.000000000 +0200
++++ kaffeine-0.8.7/kaffeine/src/input/dvb/channeldesc.cpp 2008-07-01 15:35:03.000000000 +0200
+@@ -115,8 +115,6 @@
+ coderateH=FEC_AUTO;
+ bandwidth=BANDWIDTH_AUTO;
+ snr = 0;
+- rolloff = ROLLOFF_AUTO;
+- S2 = 0;
+ }
+
+ Transponder::Transponder( const Transponder &trans )
+@@ -136,8 +134,6 @@
+ coderateL=trans.coderateL;
+ coderateH=trans.coderateH;
+ bandwidth=trans.bandwidth;
+- rolloff = trans.rolloff;
+- S2 = trans.S2;
+ }
+
+ bool Transponder::sameAs( Transponder *trans )
+diff -uNr kaffeine-0.8.8/kaffeine/src/input/dvb/channeldesc.h kaffeine-0.8.7/kaffeine/src/input/dvb/channeldesc.h
+--- kaffeine-0.8.8/kaffeine/src/input/dvb/channeldesc.h 2008-10-24 23:39:35.000000000 +0200
++++ kaffeine-0.8.7/kaffeine/src/input/dvb/channeldesc.h 2008-07-01 15:35:03.000000000 +0200
+@@ -101,8 +101,6 @@
+ fe_code_rate_t coderateH;
+ fe_bandwidth_t bandwidth;
+ int snr;
+- fe_rolloff_t rolloff;
+- char S2;
+ };
+
+ class ChannelDesc
+diff -uNr kaffeine-0.8.8/kaffeine/src/input/dvb/channeleditor.cpp kaffeine-0.8.7/kaffeine/src/input/dvb/channeleditor.cpp
+--- kaffeine-0.8.8/kaffeine/src/input/dvb/channeleditor.cpp 2008-10-24 23:39:35.000000000 +0200
++++ kaffeine-0.8.7/kaffeine/src/input/dvb/channeleditor.cpp 2008-07-01 15:35:03.000000000 +0200
+@@ -143,9 +143,6 @@
+ else channel->tp.pol = 'h';
+ channel->tp.coderateH = (fe_code_rate_t)(FEC_NONE+coderateHComb->currentItem());
+ channel->tp.inversion = (fe_spectral_inversion_t)(INVERSION_OFF+inversionComb->currentItem());
+- channel->tp.modulation = (fe_modulation_t)(QPSK+modulationComb->currentItem());
+- channel->tp.S2 = stypeComb->currentItem();
+- channel->tp.rolloff = (fe_rolloff_t)(ROLLOFF_35+rolloffComb->currentItem() );
+ }
+ else if ( channel->tp.type==FE_QAM ) {
+ channel->tp.freq = freqSpin->value();
+@@ -168,7 +165,13 @@
+ else {
+ channel->tp.freq = freqSpin->value();
+ channel->tp.inversion = (fe_spectral_inversion_t)(INVERSION_OFF+inversionComb->currentItem());
+- channel->tp.modulation = (fe_modulation_t)(QPSK+modulationComb->currentItem());
++ switch (modulationComb->currentItem()) {
++ case 0: channel->tp.modulation = QAM_64; break;
++ case 1: channel->tp.modulation = QAM_256; break;
++ case 2: channel->tp.modulation = VSB_8; break;
++ case 3: channel->tp.modulation = VSB_16; break;
++ default: channel->tp.modulation = QAM_AUTO; break;
++ }
+ }
+
+ done( Accepted );
+@@ -184,15 +187,10 @@
+ inversionComb->setCurrentItem( INVERSION_OFF+channel->tp.inversion );
+ coderateHComb->insertStringList( coderateList() );
+ coderateHComb->setCurrentItem( FEC_NONE+channel->tp.coderateH );
+- modulationComb->insertStringList( modulationList() );
+- modulationComb->setCurrentItem( QPSK+channel->tp.modulation );
+- stypeComb->insertStringList( stypeList() );
+- stypeComb->setCurrentItem( channel->tp.S2 );
+- rolloffComb->insertStringList( rolloffList() );
+- rolloffComb->setCurrentItem( ROLLOFF_35+channel->tp.rolloff );
+ transmissionComb->setEnabled( false );
+ coderateLComb->setEnabled( false );
+ bandwidthComb->setEnabled( false );
++ modulationComb->setEnabled( false );
+ hierarchyComb->setEnabled( false );
+ guardComb->setEnabled( false );
+ }
+@@ -213,8 +211,6 @@
+ bandwidthComb->setEnabled( false );
+ hierarchyComb->setEnabled( false );
+ guardComb->setEnabled( false );
+- stypeComb->setEnabled( false );
+- rolloffComb->setEnabled( false );
+ }
+
+ void ChannelEditor::initT()
+@@ -238,8 +234,6 @@
+ guardComb->setCurrentItem( GUARD_INTERVAL_1_32+channel->tp.guard );
+ srSpin->setEnabled( false );
+ polGroup->setEnabled( false );
+- stypeComb->setEnabled( false );
+- rolloffComb->setEnabled( false );
+ }
+
+ void ChannelEditor::initA()
+@@ -247,8 +241,14 @@
+ freqSpin->setValue( channel->tp.freq );
+ inversionComb->insertStringList( inversionList() );
+ inversionComb->setCurrentItem( INVERSION_OFF+channel->tp.inversion );
+- modulationComb->insertStringList( modulationList() );
+- modulationComb->setCurrentItem( QPSK+channel->tp.modulation );
++ modulationComb->insertStringList( modulationListAtsc() );
++ switch (channel->tp.modulation) {
++ case QAM_64: modulationComb->setCurrentItem(0); break;
++ case QAM_256: modulationComb->setCurrentItem(1); break;
++ case VSB_8: modulationComb->setCurrentItem(2); break;
++ case VSB_16: modulationComb->setCurrentItem(3); break;
++ default: modulationComb->setCurrentItem(4); break;
++ }
+ srSpin->setEnabled( false );
+ polGroup->setEnabled( false );
+ transmissionComb->setEnabled( false );
+@@ -257,8 +257,6 @@
+ bandwidthComb->setEnabled( false );
+ hierarchyComb->setEnabled( false );
+ guardComb->setEnabled( false );
+- stypeComb->setEnabled( false );
+- rolloffComb->setEnabled( false );
+ }
+
+ QStringList ChannelEditor::inversionList()
+@@ -273,7 +271,7 @@
+ {
+ QStringList list;
+
+- list<<"NONE"<<"1/2"<<"2/3"<<"3/4"<<"4/5"<<"5/6"<<"6/7"<<"7/8"<<"8/9"<<"AUTO"<<"3/5"<<"9/10";
++ list<<"NONE"<<"1/2"<<"2/3"<<"3/4"<<"4/5"<<"5/6"<<"6/7"<<"7/8"<<"8/9"<<"AUTO";
+ return list;
+ }
+
+@@ -281,7 +279,15 @@
+ {
+ QStringList list;
+
+- list<<"QPSK"<<"QAM 16"<<"QAM 32"<<"QAM 64"<<"QAM 128"<<"QAM 256"<<"AUTO"<<"VSB-8"<<"VSB-16"<<"8PSK"<<"16APSK"<<"DQPSK";
++ list<<"QPSK"<<"QAM 16"<<"QAM 32"<<"QAM 64"<<"QAM 128"<<"QAM 256"<<"AUTO";
++ return list;
++}
++
++QStringList ChannelEditor::modulationListAtsc()
++{
++ QStringList list;
++
++ list<<"QAM 64"<<"QAM 256"<<"VSB 8"<<"VSB 16"<<"AUTO";
+ return list;
+ }
+
+@@ -317,22 +323,6 @@
+ return list;
+ }
+
+-QStringList ChannelEditor::stypeList()
+-{
+- QStringList list;
+-
+- list<<"DVB-S"<<"DVB-S2";
+- return list;
+-}
+-
+-QStringList ChannelEditor::rolloffList()
+-{
+- QStringList list;
+-
+- list<<"35"<<"20"<<"25"<<"AUTO";
+- return list;
+-}
+-
+ ChannelEditor::~ChannelEditor()
+ {
+ }
+diff -uNr kaffeine-0.8.8/kaffeine/src/input/dvb/channeleditor.h kaffeine-0.8.7/kaffeine/src/input/dvb/channeleditor.h
+--- kaffeine-0.8.8/kaffeine/src/input/dvb/channeleditor.h 2008-10-24 23:39:35.000000000 +0200
++++ kaffeine-0.8.7/kaffeine/src/input/dvb/channeleditor.h 2008-07-01 15:35:03.000000000 +0200
+@@ -53,12 +53,11 @@
+ QStringList inversionList();
+ QStringList coderateList();
+ QStringList modulationList();
++ QStringList modulationListAtsc();
+ QStringList transmissionList();
+ QStringList bandwidthList();
+ QStringList hierarchyList();
+ QStringList guardList();
+- QStringList stypeList();
+- QStringList rolloffList();
+
+ ChannelDesc *channel;
+ QPtrList<ChannelDesc> *chandesc;
+diff -uNr kaffeine-0.8.8/kaffeine/src/input/dvb/channeleditorui.ui kaffeine-0.8.7/kaffeine/src/input/dvb/channeleditorui.ui
+--- kaffeine-0.8.8/kaffeine/src/input/dvb/channeleditorui.ui 2008-10-24 23:39:35.000000000 +0200
++++ kaffeine-0.8.7/kaffeine/src/input/dvb/channeleditorui.ui 2008-07-01 15:35:03.000000000 +0200
+@@ -9,7 +9,7 @@
+ <x>0</x>
+ <y>0</y>
+ <width>477</width>
+- <height>541</height>
++ <height>533</height>
+ </rect>
+ </property>
|
[-]
[+]
|
Deleted |
kaffeine-quote-subs.patch
^
|
@@ -1,30 +0,0 @@
---- kaffeine/src/input/audiobrowser/playlist.cpp
-+++ kaffeine/src/input/audiobrowser/playlist.cpp
-@@ -1895,7 +1895,12 @@
- {
- QString subList;
- for(unsigned int i=0; i<tmp->subtitles().count(); i++)
-- subList += tmp->subtitles()[i] + "&";
-+ {
-+ QString sub = tmp->subtitles()[i];
-+ sub.replace('%', "%25");
-+ sub.replace('&', "%26");
-+ subList += sub + "&";
-+ }
-
- entry.setAttribute("subs", subList);
- }
---- kaffeine/src/player-parts/kaffeine-part/playlistimport.cpp
-+++ kaffeine/src/player-parts/kaffeine-part/playlistimport.cpp
-@@ -69,7 +69,11 @@
- int currentSub = -1;
-
- if ((!att.value("subs").isNull()) && (!att.value("subs").isEmpty()))
-+ {
- subs = QStringList::split("&",att.value("subs"),false);
-+ subs.gres("%26", "&");
-+ subs.gres("%25", "%");
-+ }
- if ((!att.value("subs").isNull()) && (!att.value("subs").isEmpty()))
- {
- bool ok;
|
[-]
[+]
|
Deleted |
kaffeine-tmpobject.diff
^
|
@@ -1,12 +0,0 @@
---- kaffeine/src/player-parts/xine-part/kxinewidget.cpp
-+++ kaffeine/src/player-parts/xine-part/kxinewidget.cpp
-@@ -2970,7 +2970,8 @@ void KXineWidget::setStreamSaveDir(const
- if (!xine_config_lookup_entry(m_xineEngine, "misc.save_dir", &config)) return; /* older xine-lib */
-
- debugOut(QString("Set misc.save_dir to: %1").arg(dir));
-- config.str_value = QFile::encodeName(dir).data();
-+ QCString edir = QFile::encodeName(dir);
-+ config.str_value = edir.data();
- xine_config_update_entry (m_xineEngine, &config);
- }
-
|
[-]
[+]
|
Changed |
kaffeine_configure.patch
^
|
@@ -1,8 +1,8 @@
---- configure.orig 2007-04-13 17:30:17.000000000 +0200
-+++ configure 2007-04-21 14:44:58.123432178 +0200
-@@ -36244,10 +36244,10 @@
- { echo "$as_me:$LINENO: checking for XTest extension" >&5
- echo $ECHO_N "checking for XTest extension... $ECHO_C" >&6; }
+--- configure.orig 2009-05-20 13:42:39.000000000 +0200
++++ configure 2009-05-26 20:30:17.000000000 +0200
+@@ -33825,10 +33825,10 @@
+ { $as_echo "$as_me:$LINENO: checking for XTest extension" >&5
+ $as_echo_n "checking for XTest extension... " >&6; }
- if "$PKG_CONFIG" --exists xtst ; then
+ #if "$PKG_CONFIG" --exists xtst ; then
@@ -13,27 +13,27 @@
+ LIB_XTEST="-lXtst -lX11 -lpthread -lXext"
cat >>confdefs.h <<\_ACEOF
- #define HAVE_XTEST
-@@ -36255,11 +36255,11 @@
+ #define HAVE_XTEST /**/
+@@ -33836,11 +33836,11 @@
- { echo "$as_me:$LINENO: result: yes" >&5
- echo "${ECHO_T}yes" >&6; }
+ { $as_echo "$as_me:$LINENO: result: yes" >&5
+ $as_echo "yes" >&6; }
- else
- with_xtest=no
-- { echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6; }
+- { $as_echo "$as_me:$LINENO: result: no" >&5
+-$as_echo "no" >&6; }
- fi
+ #else
+ # with_xtest=no
-+ # { echo "$as_me:$LINENO: result: no" >&5
-+ #echo "${ECHO_T}no" >&6; }
++ # { $as_echo "$as_me:$LINENO: result: no" >&5
++#$as_echo "no" >&6; }
+ #fi
fi
-@@ -36282,10 +36282,10 @@
- { echo "$as_me:$LINENO: checking for Xinerama extension" >&5
- echo $ECHO_N "checking for Xinerama extension... $ECHO_C" >&6; }
+@@ -33863,10 +33863,10 @@
+ { $as_echo "$as_me:$LINENO: checking for Xinerama extension" >&5
+ $as_echo_n "checking for Xinerama extension... " >&6; }
- if "$PKG_CONFIG" --exists xinerama ; then
+ #if "$PKG_CONFIG" --exists xinerama ; then
@@ -44,26 +44,26 @@
+ LIB_XINERAMA="-lXinerama -lX11 -lpthread -lXext"
cat >>confdefs.h <<\_ACEOF
- #define HAVE_XINERAMA
-@@ -36293,11 +36293,11 @@
+ #define HAVE_XINERAMA /**/
+@@ -33874,11 +33874,11 @@
- { echo "$as_me:$LINENO: result: yes" >&5
- echo "${ECHO_T}yes" >&6; }
+ { $as_echo "$as_me:$LINENO: result: yes" >&5
+ $as_echo "yes" >&6; }
- else
- with_xinerama=no
-- { echo "$as_me:$LINENO: result: no" >&5
--echo "${ECHO_T}no" >&6; }
+- { $as_echo "$as_me:$LINENO: result: no" >&5
+-$as_echo "no" >&6; }
- fi
+ #else
+ # with_xinerama=no
-+ # { echo "$as_me:$LINENO: result: no" >&5
-+ #echo "${ECHO_T}no" >&6; }
++ # { $as_echo "$as_me:$LINENO: result: no" >&5
++#$as_echo "no" >&6; }
+ #fi
fi
---- configure.in.orig 2007-07-28 18:55:18.000000000 +0200
-+++ configure.in 2007-07-31 22:27:13.000000000 +0200
+--- configure.in.orig 2009-05-20 13:42:35.000000000 +0200
++++ configure.in 2009-05-26 20:35:24.000000000 +0200
@@ -152,16 +152,16 @@
if test "$with_xtest" != "no" ; then
AC_MSG_CHECKING([for XTest extension])
|
[-]
[+]
|
Added |
kaffeine_dvb.diff
^
|
@@ -0,0 +1,11 @@
+diff -ur kaffeine.orig/src/input/dvb/lib/libdvbapi/dvbaudio.c kaffeine/src/input/dvb/lib/libdvbapi/dvbaudio.c
+--- kaffeine.orig/src/input/dvb/lib/libdvbapi/dvbaudio.c 2008-07-01 21:11:57.000000000 +0200
++++ kaffeine/src/input/dvb/lib/libdvbapi/dvbaudio.c 2009-05-15 14:13:32.000000000 +0200
+@@ -25,6 +25,7 @@
+ #include <fcntl.h>
+ #include <unistd.h>
+ #include <sys/ioctl.h>
++#include <inttypes.h>
+ #include <linux/dvb/audio.h>
+ #include <errno.h>
+ #include "dvbaudio.h"
|
[-]
[+]
|
Deleted |
mutex.diff
^
|
@@ -1,62 +0,0 @@
---- kaffeine/src/player-parts/xine-part/kxinewidget.cpp
-+++ kaffeine/src/player-parts/xine-part/kxinewidget.cpp
-@@ -380,12 +380,13 @@
- {
- debugOut("xine event: channels changed");
- int i,channels;
-- char* lang = new char[128];
-+ char lang[128];
- QString slang;
- int num;
- QStringList tmp;
- bool update=false, sk;
-
-+ vw->m_mutex.lock();
- /*** get audio channels ***/
- tmp.append(i18n("auto"));
- channels = xine_get_stream_info(vw->m_xineStream, XINE_STREAM_INFO_MAX_AUDIO_CHANNEL);
-@@ -433,8 +434,6 @@
- vw->m_currentSub = num;
- }
-
-- delete [] lang;
--
- //check if stream is seekable
- sk = (bool)xine_get_stream_info(vw->m_xineStream, XINE_STREAM_INFO_SEEKABLE);
- if ( vw->m_trackIsSeekable!=sk ) {
-@@ -442,6 +441,7 @@
- vw->m_trackIsSeekable = sk;
- }
-
-+ vw->m_mutex.unlock();
- if ( update )
- QApplication::postEvent(vw, new QTimerEvent(TIMER_EVENT_NEW_CHANNELS));
- break;
-@@ -705,7 +705,9 @@
- }
- case TIMER_EVENT_NEW_CHANNELS:
- {
-+ m_mutex.lock();
- emit signalNewChannels(m_audioCh, m_subCh, m_currentAudio, m_currentSub);
-+ m_mutex.unlock();
- break;
- }
- case TIMER_EVENT_NEW_TITLE:
---- kaffeine/src/player-parts/xine-part/kxinewidget.h
-+++ kaffeine/src/player-parts/xine-part/kxinewidget.h
-@@ -47,6 +47,7 @@
- class QTime;
-
- #include <qtimer.h>
-+#include <qmutex.h>
- #include <qptrlist.h>
- #include <qthread.h>
- #include <X11/Xlib.h>
-@@ -485,6 +486,7 @@
- bool m_trackHasAudio;
- bool m_trackHasChapters;
- bool m_trackIsSeekable;
-+ QMutex m_mutex;
-
- /* dvb */
- signals:
|
[-]
[+]
|
Deleted |
pedantic.diff
^
|
@@ -1,10 +0,0 @@
---- kaffeine/src/input/dvb/dvbstream.cpp
-+++ kaffeine/src/input/dvb/dvbstream.cpp
-@@ -18,6 +18,7 @@
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
- */
-
-+#include "dvbsection.h"
- #include <stdio.h>
- #include <stdlib.h>
- #include <ctype.h>
|
[-]
[+]
|
Deleted |
cs.po
^
|
@@ -1,2129 +0,0 @@
-# translation of cs.po to
-# translation of cs.po to
-# translation of cs.po to
-# translation of cs.po to
-# translation of kaffeine.po to cs_CZ
-# translation of cs.po to cs_CZ
-# translation of cs.po to czech
-# translation of kaffeine.po to czech
-# This file is distributed under the same license as the PACKAGE package.
-# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER.
-# Klara Cihlarova <koty@seznam.cz>, 2003, 2004, 2005.
-# Petr Kopecký <petr.kopecky@sendmail.cz>, 2004.
-#
-msgid ""
-msgstr ""
-"Project-Id-Version: cs\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2005-03-02 14:00+0100\n"
-"PO-Revision-Date: 2005-03-30 08:45+0200\n"
-"Last-Translator: Klara Cihlarova <koty@seznam.cz>\n"
-"Language-Team: cs_CZ <cs@li.org>\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: KBabel 1.10\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-"10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: dvb/kevents.cpp:40
-msgid "EPG"
-msgstr "EPG"
-
-#: dvb/kevents.cpp:45 dvb/kevents.cpp:69
-msgid "Refresh"
-msgstr "Obnovit"
-
-#: dvb/kevents.cpp:47 dvb/kevents.cpp:70
-msgid "Current/Next"
-msgstr "Současný/následující"
-
-#: dvb/kevents.cpp:54 dvb/krecord.cpp:46
-msgid "Channel"
-msgstr "Kanál"
-
-#: dvb/kevents.cpp:55 dvb/krecord.cpp:47
-msgid "Begin"
-msgstr "Začátek"
-
-#: dvb/kevents.cpp:56 dvb/krecord.cpp:48
-msgid "Duration"
-msgstr "Trvání"
-
-#: dvb/kevents.cpp:57 playlist.cpp:84
-msgid "Title"
-msgstr "Titul"
-
-#: dvb/kevents.cpp:105
-msgid "View all programs"
-msgstr "Zobrazit všechny programy"
-
-#: dvb/kevents.cpp:107
-msgid "Add to timers"
-msgstr "Přidat do časovačů"
-
-#: dvb/ktimereditor.cpp:35 dvb/channeleditorui.cpp:345 rc.cpp:35
-msgid "Name :"
-msgstr "Jméno: "
-
-#: dvb/ktimereditor.cpp:39
-msgid "Channel :"
-msgstr "Kanál: "
-
-#: dvb/ktimereditor.cpp:43
-msgid "Begin :"
-msgstr "Začátek: "
-
-#: dvb/ktimereditor.cpp:47
-msgid "Duration :"
-msgstr "Trvání:"
-
-#: dvb/ktimereditor.cpp:51
-msgid "Record as :"
-msgstr "Nahrát jako:"
-
-#: dvb/ktimereditor.cpp:114
-msgid "Timer editor"
-msgstr "Editor časovače"
-
-#: dvb/ktimereditor.cpp:125 dvb/channeleditor.cpp:98
-msgid "You must give it a name !"
-msgstr "Musíte zadat jméno!"
-
-#: dvb/ktimereditor.cpp:130
-msgid "Name must not contain any slash( / ) !"
-msgstr "Jméno nesmí obsahovat žádná lomítka( / )!"
-
-#: dvb/ktimereditor.cpp:135
-msgid "Name must not start with ( > ) !"
-msgstr "Jméno nesmí začínat na ( > )!"
-
-#: dvb/ktimereditor.cpp:140
-msgid "Duration must be at least 1 minute !"
-msgstr "Trvání musí být minimálně 1 minuta!"
-
-#: dvb/channeleditor.cpp:60
-msgid "Initial transponder settings"
-msgstr "Počáteční nastavení transpondéru"
-
-#: dvb/channeleditor.cpp:105
-msgid "This name is not unique."
-msgstr "Jméno není unikátní."
-
-#: dvb/channeleditor.cpp:116
-msgid "Missing audio pid(s) !"
-msgstr "Chybějící audio pid!"
-
-#: dvb/audioeditor.cpp:158
-msgid "Pid must be non zero !"
-msgstr "Pid nesmí být nulové!"
-
-#: dvb/dvbpanel.cpp:57 dvb/scandialog.cpp:62 dvb/scandialogui.cpp:209
-#: rc.cpp:14
-msgid "Channels"
-msgstr "Kanály"
-
-#: dvb/dvbpanel.cpp:59 dvb/krecord.cpp:93
-msgid "Timers"
-msgstr "Časovače"
-
-#: dvb/dvbpanel.cpp:61
-msgid "Electronic Program Guide"
-msgstr "Elektronický program"
-
-#: dvb/dvbpanel.cpp:63 dvb/dvbconfig.cpp:274
-msgid "DVB settings"
-msgstr "DVB nastavení"
-
-#: dvb/dvbpanel.cpp:86
-msgid "Time shifting"
-msgstr "Posunutí času"
-
-#: dvb/dvbpanel.cpp:88
-msgid "Audio :"
-msgstr "Audio:"
-
-#: dvb/dvbpanel.cpp:114
-msgid "Broadcast"
-msgstr "Vysílání"
-
-#: dvb/dvbpanel.cpp:115 kaffeine.cpp:633
-msgid "Instant record"
-msgstr "Nahrávání"
-
-#: dvb/dvbpanel.cpp:246 dvb/dvbpanel.cpp:529
-msgid ""
-"<qt>Can't get DVB data from http://hftom.free.fr/kaxtv/dvbdata.tar.gz !<br>\t"
-"\t\tCheck your internet connection, and say Yes to try again.<br>\t\t\tOr "
-"say No to cancel.<br>\t\t\tIf you already have this archive, copy it to ~/."
-"kde/share/apps/kaffeine/dvbdata.tar.gz and say Yes.<br><br>Should I try "
-"again ?</qt>"
-msgstr ""
-"<qt>Nelze získat DVB data z http://hftom.free.fr/kaxtv/dvbdata.tar.gz!<br>\t"
-"\t\tPřekontrolujte internetové připojení a kliknutím na Ano opakujte.<br>\t\t\tNebo "
-"kliknutím na Ne zrušte.<br>\t\t\tPokud již archiv máte, překopírujte jej do adresáře "
-"~/.kde/share/apps/kaffeine/dvbdata.tar.gz a klikněte na Ano.<br>"
-"<br> Má se operace opakovat?</qt>"
-
-#: dvb/dvbpanel.cpp:342
-msgid "Timer successfully created and started."
-msgstr "Časovač úspěšně vytvořen a spuštěn."
-
-#: dvb/dvbpanel.cpp:481
-msgid "You may want to define some channel first !"
-msgstr "Nejdřív byste měli definovat nějaký kanál!"
-
-#: dvb/dvbpanel.cpp:517
-msgid "Timer successfully created."
-msgstr "Časovač úspěšně vytvořen."
-
-#: dvb/dvbpanel.cpp:690
-msgid "Still recording. Can't switch !"
-msgstr "Probíhá nahrávání. Nelze přepnout!"
-
-#: dvb/dvbpanel.cpp:694
-msgid "Can't tune dvb !"
-msgstr "Nelze naladit dvb!"
-
-#: dvb/dvbpanel.cpp:698
-msgid "Can't set pid(s)"
-msgstr "Nelze nastavit pid"
-
-#: dvb/dvbpanel.cpp:1132
-msgid "Kaffeine is still recording. Do you really want to quit ?"
-msgstr "Kaffeine stále nahrává. Skutečně ho chcete ukončit?"
-
-#: dvb/dvbpanel.cpp:1140
-msgid "Kaffeine has queued timers. Do you really want to quit ?"
-msgstr "Kaffeine obsahuje aktivní časovače. Skutečně ho chcete ukončit?"
-
|
|
Changed |
kaffeine-0.8.8.tar.bz2
^
|