Merge remote-tracking branch 'origin/acid-burn/virtualkeyboard'
authorghost <andreas.monzner@multimedia-labs.de>
Tue, 6 Sep 2011 13:20:16 +0000 (15:20 +0200)
committerghost <andreas.monzner@multimedia-labs.de>
Tue, 6 Sep 2011 13:20:16 +0000 (15:20 +0200)
49 files changed:
lib/base/thread.cpp
lib/dvb/dvb.cpp
lib/dvb/frontend.cpp
lib/dvb/frontend.h
lib/dvb/sec.cpp
lib/gdi/picexif.cpp
lib/python/Components/DreamInfoHandler.py
lib/python/Components/Network.py
lib/python/Components/NimManager.py
lib/python/Plugins/SystemPlugins/NetworkWizard/NetworkWizard.py
lib/python/Plugins/SystemPlugins/NetworkWizard/networkwizard.xml
lib/python/Plugins/SystemPlugins/NetworkWizard/plugin.py
lib/python/Plugins/SystemPlugins/SoftwareManager/BackupRestore.py
lib/python/Plugins/SystemPlugins/SoftwareManager/ImageWizard.py
lib/python/Plugins/SystemPlugins/SoftwareManager/SoftwareTools.py
lib/python/Plugins/SystemPlugins/SoftwareManager/plugin.py
lib/python/Plugins/SystemPlugins/WirelessLan/Wlan.py
lib/python/Plugins/SystemPlugins/WirelessLan/plugin.py
lib/python/Screens/NetworkSetup.py
lib/python/Screens/TaskView.py
po/ar.po
po/ca.po
po/cs.po
po/da.po
po/de.po
po/el.po
po/en.po
po/es.po
po/et.po
po/fi.po
po/fr.po
po/fy.po
po/hr.po
po/hu.po
po/is.po
po/it.po
po/lt.po
po/lv.po
po/nl.po
po/no.po
po/pl.po
po/pt.po
po/ru.po
po/sk.po
po/sl.po
po/sr.po
po/sv.po
po/tr.po
po/uk.po

index fa923de..1fda6a4 100644 (file)
@@ -58,7 +58,12 @@ int eThread::runAsync(int prio, int policy)
                pthread_attr_setschedpolicy(&attr, policy);
                pthread_attr_setschedparam(&attr, &p);
        }
-       
+
+       if (the_thread) {
+               eDebug("old thread joined %d", pthread_join(the_thread, 0));
+               the_thread = 0;
+       }
+
        if (pthread_create(&the_thread, &attr, wrapper, this))
        {
                pthread_attr_destroy(&attr);
@@ -69,7 +74,7 @@ int eThread::runAsync(int prio, int policy)
        
        pthread_attr_destroy(&attr);
        return 0;
-}                     
+}
 
 int eThread::run(int prio, int policy)
 {
index 6f9a67f..0b1bdc2 100644 (file)
@@ -145,19 +145,20 @@ eDVBAdapterLinux::eDVBAdapterLinux(int nr): m_nr(nr)
 #endif
                if (stat(filename, &s))
                        break;
-               ePtr<eDVBFrontend> fe;
+               eDVBFrontend *fe;
 
                {
                        int ok = 0;
-                       fe = new eDVBFrontend(m_nr, num_fe, ok);
+                       fe = new eDVBFrontend(m_nr, num_fe, ok, true);
                        if (ok)
-                               m_frontend.push_back(fe);
+                               m_simulate_frontend.push_back(ePtr<eDVBFrontend>(fe));
                }
+
                {
                        int ok = 0;
-                       fe = new eDVBFrontend(m_nr, num_fe, ok, true);
+                       fe = new eDVBFrontend(m_nr, num_fe, ok, false, fe);
                        if (ok)
-                               m_simulate_frontend.push_back(fe);
+                               m_frontend.push_back(ePtr<eDVBFrontend>(fe));
                }
                ++num_fe;
        }
index b5de46c..5718896 100644 (file)
@@ -453,8 +453,8 @@ DEFINE_REF(eDVBFrontend);
 
 int eDVBFrontend::PriorityOrder=0;
 
-eDVBFrontend::eDVBFrontend(int adap, int fe, int &ok, bool simulate)
-       :m_simulate(simulate), m_enabled(false), m_type(-1), m_dvbid(fe), m_slotid(fe)
+eDVBFrontend::eDVBFrontend(int adap, int fe, int &ok, bool simulate, eDVBFrontend *simulate_fe)
+       :m_simulate(simulate), m_enabled(false), m_type(-1), m_simulate_fe(simulate_fe), m_dvbid(fe), m_slotid(fe)
        ,m_fd(-1), m_rotor_mode(false), m_need_rotor_workaround(false), m_can_handle_dvbs2(false)
        ,m_state(stateClosed), m_timeout(0), m_tuneTimer(0)
 #if HAVE_DVB_API_VERSION < 3
@@ -503,10 +503,10 @@ int eDVBFrontend::openFrontend()
 #else
        dvb_frontend_info fe_info;
 #endif
-       eDebugNoSimulate("opening frontend %d", m_dvbid);
-       if (m_fd < 0)
+       if (!m_simulate)
        {
-               if (!m_simulate || m_type == -1)
+               eDebug("opening frontend %d", m_dvbid);
+               if (m_fd < 0)
                {
                        m_fd = ::open(m_filename, O_RDWR|O_NONBLOCK);
                        if (m_fd < 0)
@@ -515,70 +515,69 @@ int eDVBFrontend::openFrontend()
                                return -1;
                        }
                }
-       }
-       else
-               eWarning("frontend %d already opened", m_dvbid);
-       if (m_type == -1)
-       {
-               if (::ioctl(m_fd, FE_GET_INFO, &fe_info) < 0)
+               else
+                       eWarning("frontend %d already opened", m_dvbid);
+               if (m_type == -1)
                {
-                       eWarning("ioctl FE_GET_INFO failed");
-                       ::close(m_fd);
-                       m_fd = -1;
-                       return -1;
-               }
+                       if (::ioctl(m_fd, FE_GET_INFO, &fe_info) < 0)
+                       {
+                               eWarning("ioctl FE_GET_INFO failed");
+                               ::close(m_fd);
+                               m_fd = -1;
+                               return -1;
+                       }
 
-               switch (fe_info.type)
-               {
-               case FE_QPSK:
-                       m_type = iDVBFrontend::feSatellite;
-                       break;
-               case FE_QAM:
-                       m_type = iDVBFrontend::feCable;
-                       break;
-               case FE_OFDM:
-                       m_type = iDVBFrontend::feTerrestrial;
-                       break;
-               default:
-                       eWarning("unknown frontend type.");
-                       ::close(m_fd);
-                       m_fd = -1;
-                       return -1;
+                       switch (fe_info.type)
+                       {
+                       case FE_QPSK:
+                               m_type = iDVBFrontend::feSatellite;
+                               break;
+                       case FE_QAM:
+                               m_type = iDVBFrontend::feCable;
+                               break;
+                       case FE_OFDM:
+                               m_type = iDVBFrontend::feTerrestrial;
+                               break;
+                       default:
+                               eWarning("unknown frontend type.");
+                               ::close(m_fd);
+                               m_fd = -1;
+                               return -1;
+                       }
+                       if (m_simulate_fe)
+                               m_simulate_fe->m_type = m_type;
+                       eDebugNoSimulate("detected %s frontend", "satellite\0cable\0    terrestrial"+fe_info.type*10);
                }
-               eDebugNoSimulate("detected %s frontend", "satellite\0cable\0    terrestrial"+fe_info.type*10);
-       }
 
 #if HAVE_DVB_API_VERSION < 3
-       if (m_type == iDVBFrontend::feSatellite)
-       {
-                       if (m_secfd < 0)
-                       {
-                               if (!m_simulate)
+               if (m_type == iDVBFrontend::feSatellite)
+               {
+                               if (m_secfd < 0)
                                {
-                                       m_secfd = ::open(m_sec_filename, O_RDWR);
-                                       if (m_secfd < 0)
+                                       if (!m_simulate)
                                        {
-                                               eWarning("failed! (%s) %m", m_sec_filename);
-                                               ::close(m_fd);
-                                               m_fd=-1;
-                                               return -1;
+                                               m_secfd = ::open(m_sec_filename, O_RDWR);
+                                               if (m_secfd < 0)
+                                               {
+                                                       eWarning("failed! (%s) %m", m_sec_filename);
+                                                       ::close(m_fd);
+                                                       m_fd=-1;
+                                                       return -1;
+                                               }
                                        }
                                }
-                       }
-                       else
-                               eWarning("sec %d already opened", m_dvbid);
-       }
+                               else
+                                       eWarning("sec %d already opened", m_dvbid);
+               }
 #endif
 
-       setTone(iDVBFrontend::toneOff);
-       setVoltage(iDVBFrontend::voltageOff);
-
-       if (!m_simulate)
-       {
                m_sn = eSocketNotifier::create(eApp, m_fd, eSocketNotifier::Read, false);
                CONNECT(m_sn->activated, eDVBFrontend::feEvent);
        }
 
+       setTone(iDVBFrontend::toneOff);
+       setVoltage(iDVBFrontend::voltageOff);
+
        return 0;
 }
 
index bef4a18..5887f40 100644 (file)
@@ -72,6 +72,7 @@ private:
        bool m_simulate;
        bool m_enabled;
        int m_type;
+       eDVBFrontend *m_simulate_fe; // only used to set frontend type in dvb.cpp
        int m_dvbid;
        int m_slotid;
        int m_fd;
@@ -115,7 +116,7 @@ private:
        bool setSecSequencePos(int steps);
        static int PriorityOrder;
 public:
-       eDVBFrontend(int adap, int fe, int &ok, bool simulate=false);
+       eDVBFrontend(int adap, int fe, int &ok, bool simulate=false, eDVBFrontend *simulate_fe=NULL);
        virtual ~eDVBFrontend();
 
        int readInputpower();
index a2bc886..e4f00ad 100644 (file)
@@ -324,6 +324,10 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
                        bool diseqc13V = voltage_mode == eDVBSatelliteSwitchParameters::HV_13;
                        bool is_unicable = lnb_param.SatCR_idx != -1;
 
+                       bool useGotoXX = false;
+                       int RotorCmd=-1;
+                       int send_mask = 0;
+
                        lnb_param.guard_offset = 0; //HACK
 
                        frontend.setData(eDVBFrontend::SATCR, lnb_param.SatCR_idx);
@@ -411,6 +415,7 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
                                                eDebug("[prepare] UnicableTuningWord %#04x",lnb_param.UnicableTuningWord);
                                                eDebug("[prepare] guard_offset %d",lnb_param.guard_offset);
                                frontend.setData(eDVBFrontend::FREQ_OFFSET, (lnb_param.UnicableTuningWord & 0x3FF) *4000 + 1400000 + lof - (2 * (lnb_param.SatCRvco - (tmp1-tmp2))) );
+                               voltage = VOLTAGE(13);
                        }
 
                        if (diseqc_mode >= eDVBSatelliteDiseqcParameters::V1_0)
@@ -433,7 +438,7 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
                                        (di_param.m_toneburst_param != eDVBSatelliteDiseqcParameters::NO);
                                bool changed_burst = send_burst && (forceChanged || toneburst != lastToneburst);
 
-                               int send_mask = 0; /*
+                               /* send_mask
                                        1 must send csw
                                        2 must send ucsw
                                        4 send toneburst first
@@ -487,8 +492,7 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
 #endif
                                if (doSetVoltageToneFrontend)
                                {
-                                       int RotorCmd=-1;
-                                       bool useGotoXX = false;
+
                                        if ( diseqc_mode == eDVBSatelliteDiseqcParameters::V1_2
                                                && !sat.no_rotor_command_on_tune )
                                        {
@@ -561,7 +565,7 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
                                                        vlt = iDVBFrontend::voltage13;
                                                else if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
                                                {
-                                                       if (rotor_param.m_inputpower_parameters.m_use)
+                                                       if (rotor_param.m_inputpower_parameters.m_use && !is_unicable)
                                                                vlt = VOLTAGE(18);  // in input power mode set 18V for measure input power
                                                        else
                                                                vlt = VOLTAGE(13);  // in normal mode start turning with 13V
@@ -687,187 +691,6 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
                                                }
                                        }
 
-                                       eDebugNoSimulate("RotorCmd %02x, lastRotorCmd %02lx", RotorCmd, lastRotorCmd);
-                                       if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
-                                       {
-                                               eSecCommand::pair compare;
-                                               if (!send_mask && !is_unicable)
-                                               {
-                                                       compare.steps = +3;
-                                                       compare.tone = iDVBFrontend::toneOff;
-                                                       sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
-                                                       sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
-                                                       sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE_DISABLE_BEFORE_DISEQC]) );
-
-                                                       compare.voltage = iDVBFrontend::voltageOff;
-                                                       compare.steps = +4;
-                                                       // the next is a check if voltage is switched off.. then we first set a voltage :)
-                                                       // else we set voltage after all diseqc stuff..
-                                                       sec_sequence.push_back( eSecCommand(eSecCommand::IF_NOT_VOLTAGE_GOTO, compare) );
-
-                                                       if (rotor_param.m_inputpower_parameters.m_use)
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) ); // set 18V for measure input power
-                                                       else
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) ); // in normal mode start turning with 13V
-
-                                                       sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD]) ); // wait 750ms when voltage was disabled
-                                                       sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +9) );  // no need to send stop rotor cmd and recheck voltage
-                                               }
-                                               else
-                                                       sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_BETWEEN_SWITCH_AND_MOTOR_CMD]) ); // wait 700ms when diseqc changed
-
-                                               eDVBDiseqcCommand diseqc;
-                                               memset(diseqc.data, 0, MAX_DISEQC_LENGTH);
-                                               diseqc.len = 3;
-                                               diseqc.data[0] = 0xE0;
-                                               diseqc.data[1] = 0x31;  // positioner
-                                               diseqc.data[2] = 0x60;  // stop
-                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_ROTORPOS_VALID_GOTO, +5) );
-                                               sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
-                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
-                                               sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
-                                               // wait 150msec after send rotor stop cmd
-                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_MOTOR_STOP_CMD]) );
-
-                                               diseqc.data[0] = 0xE0;
-                                               diseqc.data[1] = 0x31;          // positioner
-                                               if ( useGotoXX )
-                                               {
-                                                       diseqc.len = 5;
-                                                       diseqc.data[2] = 0x6E;  // drive to angular position
-                                                       diseqc.data[3] = ((RotorCmd & 0xFF00) / 0x100);
-                                                       diseqc.data[4] = RotorCmd & 0xFF;
-                                               }
-                                               else
-                                               {
-                                                       diseqc.len = 4;
-                                                       diseqc.data[2] = 0x6B;  // goto stored sat position
-                                                       diseqc.data[3] = RotorCmd;
-                                                       diseqc.data[4] = 0x00;
-                                               }
-//                                             if(!is_unicable)
-                                               {
-                                                       int mrt = m_params[MOTOR_RUNNING_TIMEOUT]; // in seconds!
-                                                       if ( rotor_param.m_inputpower_parameters.m_use && !is_unicable)
-                                                       { // use measure rotor input power to detect rotor state
-                                                               bool turn_fast = need_turn_fast(rotor_param.m_inputpower_parameters.m_turning_speed);
-                                                               eSecCommand::rotor cmd;
-                                                               eSecCommand::pair compare;
-                                                               if (turn_fast)
-                                                                       compare.voltage = VOLTAGE(18);
-                                                               else
-                                                                       compare.voltage = VOLTAGE(13);
-                                                               compare.steps = +3;
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
-       // measure idle power values
-                                                               compare.steps = -2;
-                                                               if (turn_fast) {
-                                                                       sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) );  // wait 150msec after voltage change
-                                                                       sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 1) );
-                                                                       compare.val = 1;
-                                                                       sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
-                                                                       sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) );
-                                                               }
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) );  // wait 150msec before measure
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 0) );
-                                                               compare.val = 0;
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
-       ////////////////////////////
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_DISEQC_RETRYS, m_params[MOTOR_COMMAND_RETRIES]) );  // 2 retries
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, 40) );  // 2 seconds rotor start timout
-       // rotor start loop
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );  // 50msec delay
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
-                                                               cmd.direction=1;  // check for running rotor
-                                                               cmd.deltaA=rotor_param.m_inputpower_parameters.m_delta;
-                                                               cmd.steps=+5;
-                                                               cmd.okcount=0;
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );  // check if rotor has started
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) );  // timeout .. we assume now the rotor is already at the correct position
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );  // goto loop start
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_NO_MORE_ROTOR_DISEQC_RETRYS_GOTO, turn_fast ? 10 : 9 ) );  // timeout .. we assume now the rotor is already at the correct position 
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -8) );  // goto loop start
-       ////////////////////
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_MOVING) );
-                                                               if (turn_fast)
-                                                                       sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, mrt*20) );  // mrt is in seconds... our SLEEP time is 50ms.. so * 20
-       // rotor running loop
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );  // wait 50msec
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
-                                                               cmd.direction=0;  // check for stopped rotor
-                                                               cmd.steps=+3;
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) );  // timeout ? this should never happen
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );  // running loop start
-       /////////////////////
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_STOPPED) );
-                                                       }
-                                                       else
-                                                       {  // use normal turning mode
-                                                               if (curRotorPos != -1)
-                                                               {               
-                                                                       mrt = abs(curRotorPos - sat.orbital_position);
-                                                                       if (mrt > 1800)
-                                                                               mrt = 3600 - mrt;
-                                                                       if (mrt % 10)
-                                                                               mrt += 10; // round a little bit
-                                                                       mrt *= 2000;  // (we assume a very slow rotor with just 0.5 degree per second here)
-                                                                       mrt /= 10000;
-                                                                       mrt += 3; // a little bit overhead
-                                                               }
-                                                               doSetVoltageToneFrontend=false;
-                                                               doSetFrontend=false;
-                                                               eSecCommand::rotor cmd;
-                                                               eSecCommand::pair compare;
-                                                               compare.voltage = VOLTAGE(13);
-                                                               compare.steps = +3;
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD]) );  // wait 150msec after voltage change
-       
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_MOVING) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 1000) ); // sleep one second before change voltage or tone
-
-                                                               compare.voltage = voltage;
-                                                               compare.steps = +3;
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // correct final voltage?
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 2000) );  // wait 2 second before set high voltage
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
-
-                                                               compare.tone = tone;
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_FINAL_CONT_TONE_CHANGE]) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND, 0) );
-       
-                                                               cmd.direction=1;  // check for running rotor
-                                                               cmd.deltaA=0;
-                                                               cmd.steps = +3;
-                                                               cmd.okcount=0;
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, mrt*4) );  // mrt is in seconds... our SLEEP time is 250ms.. so * 4
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 250) );  // 250msec delay
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TUNER_LOCKED_GOTO, cmd ) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +5 ) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -3) );  // goto loop start
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_STOPPED) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +4) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::START_TUNE_TIMEOUT, tunetimeout) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND, 1) );
-                                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -5) );
-                                                       }
-                                                       eDebug("set rotor timeout to %d seconds", mrt);
-                                                       sec_fe->setData(eDVBFrontend::NEW_ROTOR_CMD, RotorCmd);
-                                                       sec_fe->setData(eDVBFrontend::NEW_ROTOR_POS, sat.orbital_position);
-                                               }
-                                       }
                                }
                        }
                        else
@@ -880,22 +703,6 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
                        sec_fe->setData(eDVBFrontend::NEW_UCSW, ucsw);
                        sec_fe->setData(eDVBFrontend::NEW_TONEBURST, di_param.m_toneburst_param);
 
-                       if (doSetVoltageToneFrontend && !is_unicable)
-                       {
-                               eSecCommand::pair compare;
-                               compare.voltage = voltage;
-                               compare.steps = +3;
-                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // voltage already correct ?
-                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
-                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_FINAL_VOLTAGE_CHANGE]) );
-                               compare.tone = tone;
-                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
-                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
-                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_FINAL_CONT_TONE_CHANGE]) );
-                       }
-
-                       sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_SWITCHPARMS) );
-
                        if(is_unicable)
                        {
                                // check if voltage is disabled
@@ -903,10 +710,10 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
                                compare.steps = +3;
                                compare.voltage = iDVBFrontend::voltageOff;
                                sec_sequence.push_back( eSecCommand(eSecCommand::IF_NOT_VOLTAGE_GOTO, compare) );
-                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, iDVBFrontend::voltage13) );
+                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) );
                                sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_SWITCH_CMDS] ) );
 
-                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, iDVBFrontend::voltage18_5) );
+                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) );
                                sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
                                sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_SWITCH_CMDS]) );  // wait 20 ms after voltage change
        
@@ -921,9 +728,209 @@ RESULT eDVBSatelliteEquipmentControl::prepare(iDVBFrontend &frontend, FRONTENDPA
 
                                sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
                                sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_LAST_DISEQC_CMD]) );
-                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, iDVBFrontend::voltage13) );
+                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) );
+                               if ( RotorCmd != -1 && RotorCmd != lastRotorCmd && !rotor_param.m_inputpower_parameters.m_use)
+                                       sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD]) );  // wait 150msec after voltage change
                        }
 
+                       eDebugNoSimulate("RotorCmd %02x, lastRotorCmd %02lx", RotorCmd, lastRotorCmd);
+                       if ( RotorCmd != -1 && RotorCmd != lastRotorCmd )
+                       {
+                               eSecCommand::pair compare;
+                               if (!send_mask && !is_unicable)
+                               {
+                                       compare.steps = +3;
+                                       compare.tone = iDVBFrontend::toneOff;
+                                       sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
+                                       sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, iDVBFrontend::toneOff) );
+                                       sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_CONT_TONE_DISABLE_BEFORE_DISEQC]) );
+
+                                       compare.voltage = iDVBFrontend::voltageOff;
+                                       compare.steps = +4;
+                                       // the next is a check if voltage is switched off.. then we first set a voltage :)
+                                       // else we set voltage after all diseqc stuff..
+                                       sec_sequence.push_back( eSecCommand(eSecCommand::IF_NOT_VOLTAGE_GOTO, compare) );
+
+                                       if (rotor_param.m_inputpower_parameters.m_use)
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) ); // set 18V for measure input power
+                                       else
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) ); // in normal mode start turning with 13V
+
+                                       sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_ENABLE_VOLTAGE_BEFORE_MOTOR_CMD]) ); // wait 750ms when voltage was disabled
+                                       sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +9) );  // no need to send stop rotor cmd and recheck voltage
+                               }
+                               else
+                                       sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_BETWEEN_SWITCH_AND_MOTOR_CMD]) ); // wait 700ms when diseqc changed
+
+                               eDVBDiseqcCommand diseqc;
+                               memset(diseqc.data, 0, MAX_DISEQC_LENGTH);
+                               diseqc.len = 3;
+                               diseqc.data[0] = 0xE0;
+                               diseqc.data[1] = 0x31;  // positioner
+                               diseqc.data[2] = 0x60;  // stop
+                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_ROTORPOS_VALID_GOTO, +5) );
+                               sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
+                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );
+                               sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
+                               // wait 150msec after send rotor stop cmd
+                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_MOTOR_STOP_CMD]) );
+
+                               diseqc.data[0] = 0xE0;
+                               diseqc.data[1] = 0x31;          // positioner
+                               if ( useGotoXX )
+                               {
+                                       diseqc.len = 5;
+                                       diseqc.data[2] = 0x6E;  // drive to angular position
+                                       diseqc.data[3] = ((RotorCmd & 0xFF00) / 0x100);
+                                       diseqc.data[4] = RotorCmd & 0xFF;
+                               }
+                               else
+                               {
+                                       diseqc.len = 4;
+                                       diseqc.data[2] = 0x6B;  // goto stored sat position
+                                       diseqc.data[3] = RotorCmd;
+                                       diseqc.data[4] = 0x00;
+                               }
+
+                               {
+                                       int mrt = m_params[MOTOR_RUNNING_TIMEOUT]; // in seconds!
+                                       if ( rotor_param.m_inputpower_parameters.m_use)
+                                       { // use measure rotor input power to detect rotor state
+                                               bool turn_fast = need_turn_fast(rotor_param.m_inputpower_parameters.m_turning_speed) && !is_unicable;
+                                               eSecCommand::rotor cmd;
+                                               eSecCommand::pair compare;
+                                               if (turn_fast)
+                                                       compare.voltage = VOLTAGE(18);
+                                               else
+                                                       compare.voltage = VOLTAGE(13);
+                                               compare.steps = +3;
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
+       // measure idle power values
+                                               compare.steps = -2;
+                                               if (turn_fast) {
+                                                       sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) );  // wait 150msec after voltage change
+                                                       sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 1) );
+                                                       compare.val = 1;
+                                                       sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
+                                                       sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(13)) );
+                                               }
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MEASURE_IDLE_INPUTPOWER]) );  // wait 150msec before measure
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_IDLE_INPUTPOWER, 0) );
+                                               compare.val = 0;
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_MEASURE_IDLE_WAS_NOT_OK_GOTO, compare) );
+       ////////////////////////////
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_DISEQC_RETRYS, m_params[MOTOR_COMMAND_RETRIES]) );  // 2 retries
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, 40) );  // 2 seconds rotor start timout
+       // rotor start loop
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );  // 50msec delay
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
+                                               cmd.direction=1;  // check for running rotor
+                                               cmd.deltaA=rotor_param.m_inputpower_parameters.m_delta;
+                                               cmd.steps=+5;
+                                               cmd.okcount=0;
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );  // check if rotor has started
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) );  // timeout .. we assume now the rotor is already at the correct position
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );  // goto loop start
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_NO_MORE_ROTOR_DISEQC_RETRYS_GOTO, turn_fast ? 10 : 9 ) );  // timeout .. we assume now the rotor is already at the correct position 
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -8) );  // goto loop start
+       ////////////////////
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_MOVING) );
+                                               if (turn_fast)
+                                                       sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, VOLTAGE(18)) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, mrt*20) );  // mrt is in seconds... our SLEEP time is 50ms.. so * 20
+       // rotor running loop
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 50) );  // wait 50msec
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::MEASURE_RUNNING_INPUTPOWER) );
+                                               cmd.direction=0;  // check for stopped rotor
+                                               cmd.steps=+3;
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_INPUTPOWER_DELTA_GOTO, cmd ) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +2 ) );  // timeout ? this should never happen
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -4) );  // running loop start
+       /////////////////////
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_STOPPED) );
+                                       }
+                                       else
+                                       { // use normal turning mode
+                                               if (curRotorPos != -1)
+                                               {
+                                                       mrt = abs(curRotorPos - sat.orbital_position);
+                                                       if (mrt > 1800)
+                                                               mrt = 3600 - mrt;
+                                                       if (mrt % 10)
+                                                               mrt += 10; // round a little bit
+                                                       mrt *= 2000;  // (we assume a very slow rotor with just 0.5 degree per second here)
+                                                       mrt /= 10000;
+                                                       mrt += 3; // a little bit overhead
+                                               }
+                                               doSetVoltageToneFrontend=false;
+                                               doSetFrontend=false;
+                                               eSecCommand::rotor cmd;
+                                               eSecCommand::pair compare;
+                                               compare.voltage = VOLTAGE(13);
+                                               compare.steps = +3;
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, compare.voltage) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_VOLTAGE_CHANGE_BEFORE_MOTOR_CMD]) );  // wait 150msec after voltage change
+
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::INVALIDATE_CURRENT_ROTORPARMS) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_MOVING) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SEND_DISEQC, diseqc) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 1000) ); // sleep one second before change voltage or tone
+
+                                               compare.voltage = voltage;
+                                               compare.steps = +3;
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // correct final voltage?
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 2000) );  // wait 2 second before set high voltage
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
+
+                                               compare.tone = tone;
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_FINAL_CONT_TONE_CHANGE]) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND, 0) );
+
+                                               cmd.direction=1;  // check for running rotor
+                                               cmd.deltaA=0;
+                                               cmd.steps = +3;
+                                               cmd.okcount=0;
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_TIMEOUT, mrt*4) );  // mrt is in seconds... our SLEEP time is 250ms.. so * 4
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, 250) );  // 250msec delay
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TUNER_LOCKED_GOTO, cmd ) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TIMEOUT_GOTO, +5 ) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -3) );  // goto loop start
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_ROTORPARAMS) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_ROTOR_STOPPED) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, +4) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::START_TUNE_TIMEOUT, tunetimeout) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_FRONTEND, 1) );
+                                               sec_sequence.push_back( eSecCommand(eSecCommand::GOTO, -5) );
+                                       }
+                                       eDebug("set rotor timeout to %d seconds", mrt);
+                                       sec_fe->setData(eDVBFrontend::NEW_ROTOR_CMD, RotorCmd);
+                                       sec_fe->setData(eDVBFrontend::NEW_ROTOR_POS, sat.orbital_position);
+                               }
+                       }
+
+                       if (doSetVoltageToneFrontend && !is_unicable)
+                       {
+                               eSecCommand::pair compare;
+                               compare.voltage = voltage;
+                               compare.steps = +3;
+                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_VOLTAGE_GOTO, compare) ); // voltage already correct ?
+                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_VOLTAGE, voltage) );
+                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_FINAL_VOLTAGE_CHANGE]) );
+                               compare.tone = tone;
+                               sec_sequence.push_back( eSecCommand(eSecCommand::IF_TONE_GOTO, compare) );
+                               sec_sequence.push_back( eSecCommand(eSecCommand::SET_TONE, tone) );
+                               sec_sequence.push_back( eSecCommand(eSecCommand::SLEEP, m_params[DELAY_AFTER_FINAL_CONT_TONE_CHANGE]) );
+                       }
+
+                       sec_sequence.push_back( eSecCommand(eSecCommand::UPDATE_CURRENT_SWITCHPARMS) );
+
                        if (doSetFrontend)
                        {
                                sec_sequence.push_back( eSecCommand(eSecCommand::START_TUNE_TIMEOUT, tunetimeout) );
index 2daeeff..1eacc29 100644 (file)
@@ -90,9 +90,9 @@ void Cexif::ClearExif()
 
 bool Cexif::DecodeExif(const char *filename, int Thumb)
 {
+       bool ret = false;
        FILE * hFile = fopen(filename, "r");
-       if(!hFile) return false;
-
+       if(!hFile) return ret;
 
        m_exifinfo = new EXIFINFO;
        memset(m_exifinfo,0,sizeof(EXIFINFO));
@@ -107,7 +107,8 @@ bool Cexif::DecodeExif(const char *filename, int Thumb)
        int a = fgetc(hFile);
        strcpy(m_szLastError,"EXIF-Data not found");
 
-       if (a != 0xff || fgetc(hFile) != M_SOI) return false;
+       if (a != 0xff || fgetc(hFile) != M_SOI)
+               goto decode_exif_out_false;
 
        for(;;)
        {
@@ -117,7 +118,8 @@ bool Cexif::DecodeExif(const char *filename, int Thumb)
 
                if (SectionsRead >= MAX_SECTIONS)
                {
-                       strcpy(m_szLastError,"Too many sections in jpg file"); return false;
+                       strcpy(m_szLastError,"Too many sections in jpg file");
+                       goto decode_exif_out_false;
                }
 
                for (a=0;a<7;a++)
@@ -127,13 +129,15 @@ bool Cexif::DecodeExif(const char *filename, int Thumb)
 
                        if (a >= 6)
                        {
-                               strcpy(m_szLastError,"too many padding unsigned chars\n"); return false;
+                               strcpy(m_szLastError,"too many padding unsigned chars\n");
+                               goto decode_exif_out_false;
                        }
                }
 
                if (marker == 0xff)
                {
-                       strcpy(m_szLastError,"too many padding unsigned chars!"); return false;
+                       strcpy(m_szLastError,"too many padding unsigned chars!");
+                       goto decode_exif_out_false;
                }
 
                Sections[SectionsRead].Type = marker;
@@ -145,14 +149,16 @@ bool Cexif::DecodeExif(const char *filename, int Thumb)
 
                if (itemlen < 2)
                {
-                       strcpy(m_szLastError,"invalid marker"); return false;
+                       strcpy(m_szLastError,"invalid marker");
+                       goto decode_exif_out_false;
                }
                Sections[SectionsRead].Size = itemlen;
 
                Data = (unsigned char *)malloc(itemlen);
                if (Data == NULL)
                {
-                       strcpy(m_szLastError,"Could not allocate memory"); return false;
+                       strcpy(m_szLastError,"Could not allocate memory");
+                       goto decode_exif_out_false;
                }
                Sections[SectionsRead].Data = Data;
 
@@ -163,17 +169,18 @@ bool Cexif::DecodeExif(const char *filename, int Thumb)
                got = fread(Data+2, 1, itemlen-2,hFile);
                if (got != itemlen-2)
                {
-                       strcpy(m_szLastError,"Premature end of file?"); return false;
+                       strcpy(m_szLastError,"Premature end of file?");
+                       goto decode_exif_out_false;
                }
                SectionsRead += 1;
 
                switch(marker)
                {
                case M_SOS:
-                       return true;
+                       goto decode_exif_out_true;
                case M_EOI:
                        printf("No image in jpeg!\n");
-                       return false;
+                       goto decode_exif_out_false;
                case M_COM:
                        if (HaveCom)
                        {
@@ -221,8 +228,12 @@ bool Cexif::DecodeExif(const char *filename, int Thumb)
                }
        }
 
+decode_exif_out_true:
+       ret = true;
+
+decode_exif_out_false:
        fclose(hFile);
-       return true;
+       return ret;
 }
 
 bool Cexif::process_EXIF(unsigned char * CharBuf, unsigned int length)
index 8e9c29d..8097365 100755 (executable)
@@ -84,6 +84,8 @@ class InfoHandler(xml.sax.ContentHandler):
                                self.attributes["packagename"] = str(attrs["packagename"])
                        if attrs.has_key("packagetype"):
                                self.attributes["packagetype"] = str(attrs["packagetype"])
+                       if attrs.has_key("needsRestart"):
+                               self.attributes["needsRestart"] = str(attrs["needsRestart"])
                        if attrs.has_key("shortdescription"):
                                self.attributes["shortdescription"] = str(attrs["shortdescription"])
 
@@ -120,6 +122,8 @@ class InfoHandler(xml.sax.ContentHandler):
                        self.attributes["name"] = str(data)
                if self.elements[-1] == "packagename":
                        self.attributes["packagename"] = str(data)
+               if self.elements[-1] == "needsRestart":
+                       self.attributes["needsRestart"] = str(data)
                if self.elements[-1] == "shortdescription":
                        self.attributes["shortdescription"] = str(data)
                if self.elements[-1] == "description":
index 04511d2..32b8bdb 100755 (executable)
@@ -20,9 +20,8 @@ class Network:
                self.Console = Console()
                self.LinkConsole = Console()
                self.restartConsole = Console()
-               self.deactivateConsole = Console()
                self.deactivateInterfaceConsole = Console()
-               self.activateConsole = Console()
+               self.activateInterfaceConsole = Console()
                self.resetNetworkConsole = Console()
                self.DnsConsole = Console()
                self.PingConsole = Console()
@@ -30,37 +29,29 @@ class Network:
                self.friendlyNames = {}
                self.lan_interfaces = []
                self.wlan_interfaces = []
+               self.remoteRootFS = None
                self.getInterfaces()
 
        def onRemoteRootFS(self):
-               fp = file('/proc/mounts', 'r')
-               mounts = fp.readlines()
-               fp.close()
-               for line in mounts:
-                       parts = line.strip().split(' ')
-                       if parts[1] == '/' and (parts[2] == 'nfs' or parts[2] == 'smbfs'):
-                               return True
-               return False
+               if self.remoteRootFS == None:
+                       fp = file('/proc/mounts', 'r')
+                       mounts = fp.readlines()
+                       fp.close()
+                       self.remoteRootFS = False
+                       for line in mounts:
+                               parts = line.strip().split()
+                               if parts[1] == '/' and parts[2] == 'nfs':
+                                       self.remoteRootFS = True
+                                       break
+               return self.remoteRootFS
+
+       def isBlacklisted(self, iface):
+               return iface in ('lo', 'wifi0', 'wmaster0')
 
        def getInterfaces(self, callback = None):
-               devicesPattern = re_compile('[a-z]+[0-9]+')
                self.configuredInterfaces = []
-               fp = file('/proc/net/dev', 'r')
-               result = fp.readlines()
-               fp.close()
-               for line in result:
-                       try:
-                               device = devicesPattern.search(line).group()
-                               if device in ('wifi0', 'wmaster0'):
-                                       continue
-                               self.getDataForInterface(device, callback)
-                       except AttributeError:
-                               pass
-               #print "self.ifaces:", self.ifaces
-               #self.writeNetworkConfig()
-               #print ord(' ')
-               #for line in result:
-               #       print ord(line[0])
+               for device in self.getInstalledAdapters():
+                       self.getAddrInet(device, callback)
 
        # helper function
        def regExpMatch(self, pattern, string):
@@ -69,21 +60,16 @@ class Network:
                try:
                        return pattern.search(string).group()
                except AttributeError:
-                       None
+                       return None
 
        # helper function to convert ips from a sring to a list of ints
        def convertIP(self, ip):
-               strIP = ip.split('.')
-               ip = []
-               for x in strIP:
-                       ip.append(int(x))
-               return ip
-
-       def getDataForInterface(self, iface,callback):
-               #get ip out of ip addr, as avahi sometimes overrides it in ifconfig.
+               return [ int(n) for n in ip.split('.') ]
+
+       def getAddrInet(self, iface, callback):
                if not self.Console:
                        self.Console = Console()
-               cmd = "ip -o addr"
+               cmd = "ip -o addr show dev " + iface
                self.Console.ePopen(cmd, self.IPaddrFinished, [iface,callback])
 
        def IPaddrFinished(self, result, retval, extra_args):
@@ -92,14 +78,14 @@ class Network:
                globalIPpattern = re_compile("scope global")
                ipRegexp = '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}'
                netRegexp = '[0-9]{1,2}'
-               macRegexp = '[0-9]{2}\:[0-9]{2}\:[0-9]{2}\:[a-z0-9]{2}\:[a-z0-9]{2}\:[a-z0-9]{2}'
+               macRegexp = '[0-9a-fA-F]{2}\:[0-9a-fA-F]{2}\:[0-9a-fA-F]{2}\:[0-9a-fA-F]{2}\:[0-9a-fA-F]{2}\:[0-9a-fA-F]{2}'
                ipLinePattern = re_compile('inet ' + ipRegexp + '/')
                ipPattern = re_compile(ipRegexp)
                netmaskLinePattern = re_compile('/' + netRegexp)
                netmaskPattern = re_compile(netRegexp)
                bcastLinePattern = re_compile(' brd ' + ipRegexp)
                upPattern = re_compile('UP')
-               macPattern = re_compile('[0-9]{2}\:[0-9]{2}\:[0-9]{2}\:[a-z0-9]{2}\:[a-z0-9]{2}\:[a-z0-9]{2}')
+               macPattern = re_compile(macRegexp)
                macLinePattern = re_compile('link/ether ' + macRegexp)
                
                for line in result.splitlines():
@@ -144,7 +130,7 @@ class Network:
                        print line[0:7]
                        if line[0:7] == "0.0.0.0":
                                gateway = self.regExpMatch(ipPattern, line[16:31])
-                               if gateway is not None:
+                               if gateway:
                                        data['gateway'] = self.convertIP(gateway)
                                        
                self.ifaces[iface] = data
@@ -176,8 +162,9 @@ class Network:
                                fp.write(iface["preup"])
                        if iface["predown"] is not False and not iface.has_key("configStrings"):
                                fp.write(iface["predown"])
-                       fp.write("\n")
+                       fp.write("\n")                          
                fp.close()
+               self.configuredNetworkAdapters = self.configuredInterfaces
                self.writeNameserverConfig()
 
        def writeNameserverConfig(self):
@@ -263,49 +250,13 @@ class Network:
                for line in resolv:
                        if self.regExpMatch(nameserverPattern, line) is not None:
                                ip = self.regExpMatch(ipPattern, line)
-                               if ip is not None:
+                               if ip:
                                        self.nameservers.append(self.convertIP(ip))
 
                print "nameservers:", self.nameservers
 
-       def deactivateNetworkConfig(self, callback = None):
-               if self.onRemoteRootFS():
-                       if callback is not None:
-                               callback(True)
-                       return
-               self.deactivateConsole = Console()
-               self.commands = []
-               self.commands.append("/etc/init.d/avahi-daemon stop")
-               for iface in self.ifaces.keys():
-                       cmd = "ip addr flush " + iface
-                       self.commands.append(cmd)               
-               self.commands.append("/etc/init.d/networking stop")
-               self.commands.append("killall -9 udhcpc")
-               self.commands.append("rm /var/run/udhcpc*")
-               self.deactivateConsole.eBatch(self.commands, self.deactivateNetworkFinished, callback, debug=True)
-               
-       def deactivateNetworkFinished(self,extra_args):
-               callback = extra_args
-               if len(self.deactivateConsole.appContainers) == 0:
-                       if callback is not None:
-                               callback(True)
-
-       def activateNetworkConfig(self, callback = None):
-               if self.onRemoteRootFS():
-                       if callback is not None:
-                               callback(True)
-                       return
-               self.activateConsole = Console()
-               self.commands = []
-               self.commands.append("/etc/init.d/networking start")
-               self.commands.append("/etc/init.d/avahi-daemon start")
-               self.activateConsole.eBatch(self.commands, self.activateNetworkFinished, callback, debug=True)
-               
-       def activateNetworkFinished(self,extra_args):
-               callback = extra_args
-               if len(self.activateConsole.appContainers) == 0:
-                       if callback is not None:
-                               callback(True)
+       def getInstalledAdapters(self):
+               return [x for x in listdir('/sys/class/net') if not self.isBlacklisted(x)]
 
        def getConfiguredAdapters(self):
                return self.configuredNetworkAdapters
@@ -316,47 +267,44 @@ class Network:
        def getFriendlyAdapterName(self, x):
                if x in self.friendlyNames.keys():
                        return self.friendlyNames.get(x, x)
-               else:
-                       self.friendlyNames[x] = self.getFriendlyAdapterNaming(x)
-                       return self.friendlyNames.get(x, x) # when we have no friendly name, use adapter name
+               self.friendlyNames[x] = self.getFriendlyAdapterNaming(x)
+               return self.friendlyNames.get(x, x) # when we have no friendly name, use adapter name
 
        def getFriendlyAdapterNaming(self, iface):
-               if iface.startswith('eth'):
-                       if iface not in self.lan_interfaces and len(self.lan_interfaces) == 0:
-                               self.lan_interfaces.append(iface)
-                               return _("LAN connection")
-                       elif iface not in self.lan_interfaces and len(self.lan_interfaces) >= 1:
-                               self.lan_interfaces.append(iface)
-                               return _("LAN connection") + " " + str(len(self.lan_interfaces))
+               name = None
+               if self.isWirelessInterface(iface):
+                       if iface not in self.wlan_interfaces:
+                               name = _("WLAN connection")
+                               if len(self.wlan_interfaces):
+                                       name += " " + str(len(self.wlan_interfaces)+1)
+                               self.wlan_interfaces.append(iface)                                                              
                else:
-                       if iface not in self.wlan_interfaces and len(self.wlan_interfaces) == 0:
-                               self.wlan_interfaces.append(iface)
-                               return _("WLAN connection")
-                       elif iface not in self.wlan_interfaces and len(self.wlan_interfaces) >= 1:
-                               self.wlan_interfaces.append(iface)
-                               return _("WLAN connection") + " " + str(len(self.wlan_interfaces))
-
+                       if iface not in self.lan_interfaces:
+                               name = _("LAN connection")
+                               if len(self.lan_interfaces):
+                                       name += " " + str(len(self.lan_interfaces)+1)
+                               self.lan_interfaces.append(iface)
+               return name
+       
        def getFriendlyAdapterDescription(self, iface):
-               if iface == 'eth0':
-                       return _("Internal LAN adapter.")
+               if not self.isWirelessInterface(iface):
+                       return _('Ethernet network interface')
+
+               moduledir = self.getWlanModuleDir(iface)
+               if moduledir:
+                       name = os_path.basename(os_path.realpath(moduledir))
+                       if name in ('ath_pci','ath5k'):
+                               name = 'Atheros'
+                       elif name in ('rt73','rt73usb','rt3070sta'):
+                               name = 'Ralink'
+                       elif name == 'zd1211b':
+                               name = 'Zydas'
+                       elif name == 'r871x_usb_drv':
+                               name = 'Realtek'
                else:
-                       classdir = "/sys/class/net/" + iface + "/device/"
-                       driverdir = "/sys/class/net/" + iface + "/device/driver/"
-                       if os_path.exists(classdir):
-                               files = listdir(classdir)
-                               if 'driver' in files:
-                                       if os_path.realpath(driverdir).endswith('ath_pci'):
-                                               return _("Atheros")+ " " + str(os_path.basename(os_path.realpath(driverdir))) + " " + _("WLAN adapter.") 
-                                       elif os_path.realpath(driverdir).endswith('zd1211b'):
-                                               return _("Zydas")+ " " + str(os_path.basename(os_path.realpath(driverdir))) + " " + _("WLAN adapter.") 
-                                       elif os_path.realpath(driverdir).endswith('rt73'):
-                                               return _("Ralink")+ " " + str(os_path.basename(os_path.realpath(driverdir))) + " " + _("WLAN adapter.") 
-                                       elif os_path.realpath(driverdir).endswith('rt73usb'):
-                                               return _("Ralink")+ " " + str(os_path.basename(os_path.realpath(driverdir))) + " " + _("WLAN adapter.") 
-                                       else:
-                                               return str(os_path.basename(os_path.realpath(driverdir))) + " " + _("WLAN adapter.") 
-                               else:
-                                       return _("Unknown network adapter.")
+                       name = _('Unknown')
+
+               return name + ' ' + _('wireless network interface')
 
        def getAdapterName(self, iface):
                return iface
@@ -404,16 +352,12 @@ class Network:
                                        self.nameservers[i] = newnameserver
 
        def resetNetworkConfig(self, mode='lan', callback = None):
-               if self.onRemoteRootFS():
-                       if callback is not None:
-                               callback(True)
-                       return
                self.resetNetworkConsole = Console()
                self.commands = []
                self.commands.append("/etc/init.d/avahi-daemon stop")
                for iface in self.ifaces.keys():
-                       cmd = "ip addr flush " + iface
-                       self.commands.append(cmd)               
+                       if iface != 'eth0' or not self.onRemoteRootFS():
+                               self.commands.append("ip addr flush dev " + iface)      
                self.commands.append("/etc/init.d/networking stop")
                self.commands.append("killall -9 udhcpc")
                self.commands.append("rm /var/run/udhcpc*")
@@ -487,18 +431,15 @@ class Network:
                                        statecallback(self.NetworkState)
                
        def restartNetwork(self,callback = None):
-               if self.onRemoteRootFS():
-                       if callback is not None:
-                               callback(True)
-                       return
                self.restartConsole = Console()
                self.config_ready = False
                self.msgPlugins()
                self.commands = []
                self.commands.append("/etc/init.d/avahi-daemon stop")
                for iface in self.ifaces.keys():
-                       cmd = "ip addr flush " + iface
-                       self.commands.append(cmd)               
+                       if iface != 'eth0' or not self.onRemoteRootFS():
+                               self.commands.append("ifdown " + iface)
+                               self.commands.append("ip addr flush dev " + iface)
                self.commands.append("/etc/init.d/networking stop")
                self.commands.append("killall -9 udhcpc")
                self.commands.append("rm /var/run/udhcpc*")
@@ -555,9 +496,13 @@ class Network:
                                        
        def stopDeactivateInterfaceConsole(self):
                if self.deactivateInterfaceConsole is not None:
-                       if len(self.deactivateInterfaceConsole.appContainers):
-                               for name in self.deactivateInterfaceConsole.appContainers.keys():
-                                       self.deactivateInterfaceConsole.kill(name)
+                       self.deactivateInterfaceConsole.killAll()
+                       self.deactivateInterfaceConsole = None
+
+       def stopActivateInterfaceConsole(self):
+               if self.activateInterfaceConsole is not None:
+                       self.activateInterfaceConsole.killAll()
+                       self.activateInterfaceConsole = None
                                        
        def checkforInterface(self,iface):
                if self.getAdapterAttribute(iface, 'up') is True:
@@ -590,59 +535,138 @@ class Network:
                                if len(self.DnsConsole.appContainers) == 0:
                                        statecallback(self.DnsState)
 
-       def deactivateInterface(self,iface,callback = None):
-               if self.onRemoteRootFS():
+       def deactivateInterface(self,ifaces,callback = None):
+               self.config_ready = False
+               self.msgPlugins()
+               commands = []
+               def buildCommands(iface):
+                       commands.append("ifdown " + iface)
+                       commands.append("ip addr flush dev " + iface)
+                       #wpa_supplicant sometimes doesn't quit properly on SIGTERM
+                       if os_path.exists('/var/run/wpa_supplicant/'+ iface):
+                               commands.append("wpa_cli -i" + iface + " terminate")
+                       
+               if not self.deactivateInterfaceConsole:
+                       self.deactivateInterfaceConsole = Console()
+
+               if isinstance(ifaces, (list, tuple)):
+                       for iface in ifaces:
+                               if iface != 'eth0' or not self.onRemoteRootFS():
+                                       buildCommands(iface)
+               else:
+                       if ifaces == 'eth0' and self.onRemoteRootFS():
+                               if callback is not None:
+                                       callback(True)
+                               return
+                       buildCommands(ifaces)
+               self.deactivateInterfaceConsole.eBatch(commands, self.deactivateInterfaceFinished, [ifaces,callback], debug=True)
+
+       def deactivateInterfaceFinished(self,extra_args):
+               (ifaces, callback) = extra_args
+               def checkCommandResult(iface):
+                       if self.deactivateInterfaceConsole and self.deactivateInterfaceConsole.appResults.has_key("ifdown " + iface):
+                               result = str(self.deactivateInterfaceConsole.appResults.get("ifdown " + iface)).strip("\n")
+                               if result == "ifdown: interface " + iface + " not configured":
+                                       return False
+                               else:
+                                       return True
+               #ifdown sometimes can't get the interface down.
+               if isinstance(ifaces, (list, tuple)):
+                       for iface in ifaces:
+                               if checkCommandResult(iface) is False:
+                                       Console().ePopen(("ifconfig " + iface + " down" ))
+               else:
+                       if checkCommandResult(ifaces) is False:
+                               Console().ePopen(("ifconfig " + ifaces + " down" ))
+
+               if self.deactivateInterfaceConsole:
+                       if len(self.deactivateInterfaceConsole.appContainers) == 0:
+                               if callback is not None:
+                                       callback(True)
+
+       def activateInterface(self,iface,callback = None):
+               if self.config_ready:
+                       self.config_ready = False
+                       self.msgPlugins()
+               if iface == 'eth0' and self.onRemoteRootFS():
                        if callback is not None:
                                callback(True)
                        return
-               self.deactivateInterfaceConsole = Console()
-               self.commands = []
-               cmd1 = "ip addr flush " + iface
-               cmd2 = "ifconfig " + iface + " down"
-               self.commands.append(cmd1)
-               self.commands.append(cmd2)
-               self.deactivateInterfaceConsole.eBatch(self.commands, self.deactivateInterfaceFinished, callback, debug=True)
+               if not self.activateInterfaceConsole:
+                       self.activateInterfaceConsole = Console()
+               commands = []
+               commands.append("ifup " + iface)
+               self.activateInterfaceConsole.eBatch(commands, self.activateInterfaceFinished, callback, debug=True)
 
-       def deactivateInterfaceFinished(self,extra_args):
+       def activateInterfaceFinished(self,extra_args):
                callback = extra_args
-               if self.deactivateInterfaceConsole:
-                       if len(self.deactivateInterfaceConsole.appContainers) == 0:
+               if self.activateInterfaceConsole:
+                       if len(self.activateInterfaceConsole.appContainers) == 0:
                                if callback is not None:
                                        callback(True)
 
+       def sysfsPath(self, iface):
+               return '/sys/class/net/' + iface
+
+       def isWirelessInterface(self, iface):
+               if iface in self.wlan_interfaces:
+                       return True
+
+               if os_path.isdir(self.sysfsPath(iface) + '/wireless'):
+                       return True
+
+               # r871x_usb_drv on kernel 2.6.12 is not identifiable over /sys/class/net/'ifacename'/wireless so look also inside /proc/net/wireless
+               device = re_compile('[a-z]{2,}[0-9]*:')
+               ifnames = []
+               fp = open('/proc/net/wireless', 'r')
+               for line in fp:
+                       try:
+                               ifnames.append(device.search(line).group()[:-1])
+                       except AttributeError:
+                               pass
+               if iface in ifnames:
+                       return True
+
+               return False
+
+       def getWlanModuleDir(self, iface = None):
+               devicedir = self.sysfsPath(iface) + '/device'
+               moduledir = devicedir + '/driver/module'
+               if os_path.isdir(moduledir):
+                       return moduledir
+
+               # identification is not possible over default moduledir
+               for x in listdir(devicedir):
+                       # rt3070 on kernel 2.6.18 registers wireless devices as usb_device (e.g. 1-1.3:1.0) and identification is only possible over /sys/class/net/'ifacename'/device/1-xxx
+                       if x.startswith("1-"):
+                               moduledir = devicedir + '/' + x + '/driver/module'
+                               if os_path.isdir(moduledir):
+                                       return moduledir
+               # rt73, zd1211b, r871x_usb_drv on kernel 2.6.12 can be identified over /sys/class/net/'ifacename'/device/driver, so look also here
+               moduledir = devicedir + '/driver'
+               if os_path.isdir(moduledir):
+                       return moduledir
+
+               return None
+
        def detectWlanModule(self, iface = None):
-               self.wlanmodule = None
-               classdir = "/sys/class/net/" + iface + "/device/"
-               driverdir = "/sys/class/net/" + iface + "/device/driver/"
-               if os_path.exists(classdir):
-                       classfiles = listdir(classdir)
-                       driver_found = False
-                       nl80211_found = False
-                       for x in classfiles:
-                               if x == 'driver':
-                                       driver_found = True
-                               if x.startswith('ieee80211:'):
-                                       nl80211_found = True
-
-                       if driver_found and nl80211_found:
-                               #print about.getKernelVersionString()
-                               self.wlanmodule = "nl80211"
-                       else:
-                               if driver_found and not nl80211_found:
-                                       driverfiles = listdir(driverdir)
-                                       if os_path.realpath(driverdir).endswith('ath_pci'):
-                                               if len(driverfiles) >= 1:
-                                                       self.wlanmodule = 'madwifi'
-                                       if os_path.realpath(driverdir).endswith('rt73'):
-                                               if len(driverfiles) == 2 or len(driverfiles) == 5:
-                                                       self.wlanmodule = 'ralink'                                      
-                                       if os_path.realpath(driverdir).endswith('zd1211b'):
-                                               if len(driverfiles) == 1 or len(driverfiles) == 5:
-                                                       self.wlanmodule = 'zydas'
-                       if self.wlanmodule is None:
-                               self.wlanmodule = "wext"
-                       print 'Using "%s" as wpa-supplicant driver' % (self.wlanmodule)
-                       return self.wlanmodule
+               if not self.isWirelessInterface(iface):
+                       return None
+
+               devicedir = self.sysfsPath(iface) + '/device'
+               if os_path.isdir(devicedir + '/ieee80211'):
+                       return 'nl80211'
+
+               moduledir = self.getWlanModuleDir(iface)
+               if moduledir:
+                       module = os_path.basename(os_path.realpath(moduledir))
+                       if module in ('ath_pci','ath5k'):
+                               return 'madwifi'
+                       if module in ('rt73','rt73'):
+                               return 'ralink'
+                       if module == 'zd1211b':
+                               return 'zydas'
+               return 'wext'
        
        def calc_netmask(self,nmask):
                from struct import pack, unpack
index 7f7dd5c..bd1a363 100644 (file)
@@ -1361,25 +1361,32 @@ def InitNimManager(nimmgr):
                slot_id = configElement.slot_id
                if nimmgr.nim_slots[slot_id].description == 'Alps BSBE2':
                        open("/proc/stb/frontend/%d/tone_amplitude" %(fe_id), "w").write(configElement.value)
-                       
+
        def tunerTypeChanged(nimmgr, configElement):
                fe_id = configElement.fe_id
-               print "tunerTypeChanged feid %d to mode %s" % (fe_id, configElement.value)
-               try:
-                       oldvalue = open("/sys/module/dvb_core/parameters/dvb_shutdown_timeout", "r").readline()
-                       open("/sys/module/dvb_core/parameters/dvb_shutdown_timeout", "w").write("0")
-               except:
-                       print "[info] no /sys/module/dvb_core/parameters/dvb_shutdown_timeout available"
-               frontend = eDVBResourceManager.getInstance().allocateRawChannel(fe_id).getFrontend()
-               frontend.closeFrontend()
-               open("/proc/stb/frontend/%d/mode" % (fe_id), "w").write(configElement.value)
-               frontend.reopenFrontend()
-               try:
-                       open("/sys/module/dvb_core/parameters/dvb_shutdown_timeout", "w").write(oldvalue)
-               except:
-                       print "[info] no /sys/module/dvb_core/parameters/dvb_shutdown_timeout available"
-               nimmgr.enumerateNIMs()
-       
+
+               cur_type = int(open("/proc/stb/frontend/%d/mode" % (fe_id), "r").read())
+               if cur_type != int(configElement.value):
+                       print "tunerTypeChanged feid %d from %d to mode %d" % (fe_id, cur_type, int(configElement.value))
+
+                       try:
+                               oldvalue = open("/sys/module/dvb_core/parameters/dvb_shutdown_timeout", "r").readline()
+                               open("/sys/module/dvb_core/parameters/dvb_shutdown_timeout", "w").write("0")
+                       except:
+                               print "[info] no /sys/module/dvb_core/parameters/dvb_shutdown_timeout available"
+
+                       frontend = eDVBResourceManager.getInstance().allocateRawChannel(fe_id).getFrontend()
+                       frontend.closeFrontend()
+                       open("/proc/stb/frontend/%d/mode" % (fe_id), "w").write(configElement.value)
+                       frontend.reopenFrontend()
+                       try:
+                               open("/sys/module/dvb_core/parameters/dvb_shutdown_timeout", "w").write(oldvalue)
+                       except:
+                               print "[info] no /sys/module/dvb_core/parameters/dvb_shutdown_timeout available"
+                       nimmgr.enumerateNIMs()
+               else:
+                       print "tuner type is already already %d" %cur_type
+
        empty_slots = 0
        for slot in nimmgr.nim_slots:
                x = slot.slot
index d7e8307..cb954bb 100755 (executable)
@@ -4,31 +4,10 @@ from Screens.Rc import Rc
 from Screens.MessageBox import MessageBox
 from Components.Pixmap import Pixmap, MovingPixmap, MultiPixmap
 from Components.Sources.Boolean import Boolean
-from Components.config import config, ConfigBoolean, configfile, ConfigYesNo, NoSave, ConfigSubsection, ConfigText, getConfigListEntry, ConfigSelection, ConfigPassword
 from Components.Network import iNetwork
 from Tools.Directories import resolveFilename, SCOPE_PLUGINS, SCOPE_SKIN_IMAGE
 from enigma import eTimer
-
-config.misc.firstrun = ConfigBoolean(default = True)
-list = []
-list.append("WEP")
-list.append("WPA")
-list.append("WPA2")
-list.append("WPA/WPA2")
-
-weplist = []
-weplist.append("ASCII")
-weplist.append("HEX")
-
-config.plugins.wlan = ConfigSubsection()
-config.plugins.wlan.essid = NoSave(ConfigText(default = "home", fixed_size = False))
-config.plugins.wlan.hiddenessid = NoSave(ConfigText(default = "home", fixed_size = False))
-
-config.plugins.wlan.encryption = ConfigSubsection()
-config.plugins.wlan.encryption.enabled = NoSave(ConfigYesNo(default = False))
-config.plugins.wlan.encryption.type = NoSave(ConfigSelection(list, default = "WPA/WPA2" ))
-config.plugins.wlan.encryption.wepkeytype = NoSave(ConfigSelection(weplist, default = "ASCII"))
-config.plugins.wlan.encryption.psk = NoSave(ConfigPassword(default = "mysecurewlan", fixed_size = False))
+from os import system
 
 class NetworkWizard(WizardLanguage, Rc):
        skin = """
@@ -65,8 +44,9 @@ class NetworkWizard(WizardLanguage, Rc):
                self.Adapterlist = None
                self.InterfaceState = None
                self.isInterfaceUp = None
-               self.WlanPluginInstalled = None
+               self.WlanPluginInstalled = False
                self.ap = None
+               self.w = None
                if interface is not None:
                        self.selectedInterface = interface
                else:
@@ -77,11 +57,9 @@ class NetworkWizard(WizardLanguage, Rc):
                self.AdapterRef = None
                self.APList = None
                self.newAPlist = None
-               self.WlanList = None
                self.oldlist = None
-               self.originalAth0State = None
-               self.originalEth0State = None
-               self.originalWlan0State = None
+               
+               self.originalInterfaceState = {}
                self.originalInterfaceStateChanged = False
                self.Text = None
                self.rescanTimer = eTimer()
@@ -95,65 +73,64 @@ class NetworkWizard(WizardLanguage, Rc):
                        self.close()
                
        def markDone(self):
-               self.rescanTimer.stop()
+               self.stopScan()
                del self.rescanTimer
                self.checkOldInterfaceState()
                pass
 
-       def getInstalledInterfaceCount(self):
+       def back(self):
+               self.stopScan()
+               self.ap = None
+               WizardLanguage.back(self)
+               
+       def stopScan(self):
                self.rescanTimer.stop()
+               if self.w is not None:
+                       from Plugins.SystemPlugins.WirelessLan.Wlan import iWlan
+                       iWlan.stopGetNetworkList()
+                       self.w = None
+
+       def getInstalledInterfaceCount(self):
+               self.originalInterfaceState = {}
                self.Adapterlist = iNetwork.getAdapterList()
                self.InstalledInterfaceCount = len(self.Adapterlist)
                if self.Adapterlist is not None:
                        if self.InstalledInterfaceCount == 1 and self.selectedInterface is None:
                                        self.selectedInterface = self.Adapterlist[0]
-               self.originalAth0State = iNetwork.getAdapterAttribute('ath0', 'up')
-               self.originalEth0State = iNetwork.getAdapterAttribute('eth0', 'up')
-               self.originalWlan0State = iNetwork.getAdapterAttribute('wlan0', 'up')
+               for interface in iNetwork.getAdapterList():
+                       self.originalInterfaceState[interface] = {}
+                       self.originalInterfaceState[interface]["up"] = iNetwork.getAdapterAttribute(interface, 'up')
 
        def selectInterface(self):
                self.InterfaceState = None
-               if self.selectedInterface is None and self.InstalledInterfaceCount <= 1:
-                       if self.selectedInterface == 'eth0':
-                               self.NextStep = 'nwconfig'
-                       else:
-                               self.NextStep = 'scanwlan'
-                       self.checkInterface(self.selectedInterface)
-               elif self.selectedInterface is not None and self.InstalledInterfaceCount <= 1:
-                       if self.selectedInterface == 'eth0':
-                               self.NextStep = 'nwconfig'
+               if self.selectedInterface is None:
+                       if self.InstalledInterfaceCount <= 1:
+                               if not iNetwork.isWirelessInterface(self.selectedInterface):
+                                       self.NextStep = 'nwconfig'
+                               else:
+                                       self.NextStep = 'asknetworktype'
+                               self.checkInterface(self.selectedInterface)
                        else:
-                               self.NextStep = 'scanwlan'
-                       self.checkInterface(self.selectedInterface)
-               elif self.selectedInterface is None and self.InstalledInterfaceCount > 1:
-                       self.NextStep = 'selectinterface'
-                       self.currStep = self.getStepWithID(self.NextStep)
-                       self.afterAsyncCode()
-               elif self.selectedInterface is not None and self.InstalledInterfaceCount > 1:
-                       if self.selectedInterface == 'eth0':
+                               self.NextStep = 'selectinterface'
+                               self.currStep = self.getStepWithID(self.NextStep)
+                               self.afterAsyncCode()
+               else:
+                       if not iNetwork.isWirelessInterface(self.selectedInterface):
                                self.NextStep = 'nwconfig'
                        else:
-                               self.NextStep = 'scanwlan'
+                               self.NextStep = 'asknetworktype'
                        self.checkInterface(self.selectedInterface)
-               else:
-                       self.NextStep = 'selectinterface'
-                       self.currStep = self.getStepWithID(self.NextStep)
-                       self.afterAsyncCode()                   
 
        def checkOldInterfaceState(self):
                # disable up interface if it was originally down and config is unchanged.
-               if self.originalAth0State is False and self.originalInterfaceStateChanged is False:
-                       if iNetwork.checkforInterface('ath0') is True:
-                               iNetwork.deactivateInterface('ath0')            
-               if self.originalEth0State is False and self.originalInterfaceStateChanged is False:
-                       if iNetwork.checkforInterface('eth0') is True:
-                               iNetwork.deactivateInterface('eth0')
-               if self.originalWlan0State is False and self.originalInterfaceStateChanged is False:
-                       if iNetwork.checkforInterface('wlan0') is True:
-                               iNetwork.deactivateInterface('wlan0')
+               if self.originalInterfaceStateChanged is False:
+                       for interface in self.originalInterfaceState.keys():
+                               if interface == self.selectedInterface:
+                                       if self.originalInterfaceState[interface]["up"] is False:
+                                               if iNetwork.checkforInterface(interface) is True:
+                                                       system("ifconfig " + interface + " down")
 
        def listInterfaces(self):
-               self.rescanTimer.stop()
                self.checkOldInterfaceState()
                list = [(iNetwork.getFriendlyAdapterName(x),x) for x in iNetwork.getAdapterList()]
                list.append((_("Exit network wizard"), "end"))
@@ -169,13 +146,13 @@ class NetworkWizard(WizardLanguage, Rc):
                elif index == 'eth0':
                        self.NextStep = 'nwconfig'
                else:
-                       self.NextStep = 'scanwlan'
+                       self.NextStep = 'asknetworktype'
 
        def InterfaceSelectionMoved(self):
                self.InterfaceSelect(self.selection)
                
        def checkInterface(self,iface):
-               self.rescanTimer.stop()
+               self.stopScan()
                if self.Adapterlist is None:
                        self.Adapterlist = iNetwork.getAdapterList()
                if self.NextStep is not 'end':
@@ -183,7 +160,7 @@ class NetworkWizard(WizardLanguage, Rc):
                                #Reset Network to defaults if network broken
                                iNetwork.resetNetworkConfig('lan', self.resetNetworkConfigCB)
                                self.resetRef = self.session.openWithCallback(self.resetNetworkConfigFinished, MessageBox, _("Please wait while we prepare your network interfaces..."), type = MessageBox.TYPE_INFO, enable_input = False)
-                       if iface in ('eth0', 'wlan0', 'ath0'):
+                       if iface in iNetwork.getInstalledAdapters():
                                if iface in iNetwork.configuredNetworkAdapters and len(iNetwork.configuredNetworkAdapters) == 1:
                                        if iNetwork.getAdapterAttribute(iface, 'up') is True:
                                                self.isInterfaceUp = True
@@ -232,7 +209,7 @@ class NetworkWizard(WizardLanguage, Rc):
 
        def AdapterSetupEndCB(self,data):
                if data is True:
-                       if self.selectedInterface in ('wlan0', 'ath0'):
+                       if iNetwork.isWirelessInterface(self.selectedInterface):
                                if self.WlanPluginInstalled == True:
                                        from Plugins.SystemPlugins.WirelessLan.Wlan import iStatus
                                        iStatus.getDataForInterface(self.selectedInterface,self.checkWlanStateCB)
@@ -255,7 +232,7 @@ class NetworkWizard(WizardLanguage, Rc):
                        if data is True:
                                if status is not None:
                                        text1 = _("Your Dreambox is now ready to use.\n\nYour internet connection is working now.\n\n")
-                                       text2 = _('Accesspoint:') + "\t" + str(status[self.selectedInterface]["acesspoint"]) + "\n"
+                                       text2 = _('Accesspoint:') + "\t" + str(status[self.selectedInterface]["accesspoint"]) + "\n"
                                        text3 = _('SSID:') + "\t" + str(status[self.selectedInterface]["essid"]) + "\n"
                                        text4 = _('Link Quality:') + "\t" + str(status[self.selectedInterface]["quality"])+ "\n"
                                        text5 = _('Signal Strength:') + "\t" + str(status[self.selectedInterface]["signal"]) + "\n"
@@ -265,7 +242,7 @@ class NetworkWizard(WizardLanguage, Rc):
                                        infotext = text1 + text2 + text3 + text4 + text5 + text7 +"\n" + text8
                                        self.currStep = self.getStepWithID("checkWlanstatusend")
                                        self.Text = infotext
-                                       if str(status[self.selectedInterface]["acesspoint"]) == "Not-Associated":
+                                       if str(status[self.selectedInterface]["accesspoint"]) == "Not-Associated":
                                                self.InterfaceState = False
                                        self.afterAsyncCode()
 
@@ -275,7 +252,7 @@ class NetworkWizard(WizardLanguage, Rc):
 
        def checkNetworkCB(self,data):
                if data is True:
-                       if self.selectedInterface in ('wlan0', 'ath0'):
+                       if iNetwork.isWirelessInterface(self.selectedInterface):
                                if self.WlanPluginInstalled == True:
                                        from Plugins.SystemPlugins.WirelessLan.Wlan import iStatus
                                        iStatus.getDataForInterface(self.selectedInterface,self.checkWlanStateCB)
@@ -310,96 +287,74 @@ class NetworkWizard(WizardLanguage, Rc):
                                newList.append(oldentry)
                                
                for newentry in newList:
-                       if newentry[1] == "hidden...":
-                               continue
                        self.newAPlist.append(newentry)
-               
-               if len(self.newAPlist):
-                       if "hidden..." not in self.newAPlist:
-                               self.newAPlist.append(( _("enter hidden network SSID"), "hidden..." ))
 
+               if len(self.newAPlist):
                        if (self.wizard[self.currStep].has_key("dynamiclist")):
                                currentListEntry = self["list"].getCurrent()
-                               idx = 0
-                               for entry in self.newAPlist:
-                                       if entry == currentListEntry:
-                                               newListIndex = idx
-                                       idx +=1
+                               if currentListEntry is not None:
+                                       idx = 0
+                                       for entry in self.newAPlist:
+                                               if entry == currentListEntry:
+                                                       newListIndex = idx
+                                               idx +=1
                                self.wizard[self.currStep]["evaluatedlist"] = self.newAPlist
                                self['list'].setList(self.newAPlist)
-                               self["list"].setIndex(newListIndex)
+                               if newListIndex is not None:
+                                       self["list"].setIndex(newListIndex)
                                self["list"].updateList(self.newAPlist)
 
        def listAccessPoints(self):
                self.APList = []
-               try:
-                       from Plugins.SystemPlugins.WirelessLan.Wlan import Wlan
-               except ImportError:
-                       self.APList.append( ( _("No networks found"),_("unavailable") ) )
-                       return self.APList
+               if self.WlanPluginInstalled is False:
+                       self.APList.append( ( _("No networks found"), None ) )
                else:
-                       try:
-                               self.w = Wlan(self.selectedInterface)
-                               aps = self.w.getNetworkList()
-                       except ValueError:
-                               self.APList = []
-                               self.APList.append( ( _("No networks found"),_("unavailable") ) )
-                               return self.APList
-                       else:
-                               if aps is not None:
-                                       print "[NetworkWizard.py] got Accespoints!"
-                                       tmplist = []
-                                       complist = []
-                                       for ap in aps:
-                                               a = aps[ap]
-                                               if a['active']:
-                                                       tmplist.append( (a['bssid'], a['essid']) )
-                                                       complist.append( (a['bssid'], a['essid']) )
-                                       
-                                       for entry in tmplist:
-                                               if entry[1] == "":
-                                                       for compentry in complist:
-                                                               if compentry[0] == entry[0]:
-                                                                       complist.remove(compentry)
-                                       for entry in complist:
-                                               self.APList.append( (entry[1], entry[1]) )
-       
-                               if "hidden..." not in self.APList:
-                                       self.APList.append(( _("enter hidden network SSID"), "hidden..." ))
+                       from Plugins.SystemPlugins.WirelessLan.Wlan import iWlan
+                       iWlan.setInterface(self.selectedInterface)
+                       self.w = iWlan.getInterface()
+                       aps = iWlan.getNetworkList()
+                       if aps is not None:
+                               print "[NetworkWizard.py] got Accespoints!"
+                               tmplist = []
+                               complist = []
+                               for ap in aps:
+                                       a = aps[ap]
+                                       if a['active']:
+                                               tmplist.append( (a['bssid'], a['essid']) )
+                                               complist.append( (a['bssid'], a['essid']) )
+                               
+                               for entry in tmplist:
+                                       if entry[1] == "":
+                                               for compentry in complist:
+                                                       if compentry[0] == entry[0]:
+                                                               complist.remove(compentry)
+                               for entry in complist:
+                                       self.APList.append( (entry[1], entry[1]) )
+                       if not len(aps):
+                               self.APList.append( ( _("No networks found"), None ) )
                        
-                               self.rescanTimer.start(3000)
-                               return self.APList
+               self.rescanTimer.start(4000)
+               return self.APList
 
-       def AccessPointsSelectionMade(self, index):
-               self.ap = index
-               self.WlanList = []
-               currList = []
-               if (self.wizard[self.currStep].has_key("dynamiclist")):
-                       currList = self['list'].list
-                       for entry in currList:
-                               self.WlanList.append( (entry[1], entry[0]) )
-               self.AccessPointsSelect(index)
-
-       def AccessPointsSelect(self, index):
-               self.NextStep = 'wlanconfig'
 
        def AccessPointsSelectionMoved(self):
-               self.AccessPointsSelect(self.selection)
+               self.ap = self.selection
+               self.NextStep = 'wlanconfig'
 
        def checkWlanSelection(self):
-               self.rescanTimer.stop()
+               self.stopScan()
                self.currStep = self.getStepWithID(self.NextStep)
 
        def isWlanPluginInstalled(self):
                try:
-                       from Plugins.SystemPlugins.WirelessLan.Wlan import Wlan
+                       from Plugins.SystemPlugins.WirelessLan.Wlan import iWlan
                except ImportError:
                        self.WlanPluginInstalled = False
                else:
                        self.WlanPluginInstalled = True
 
        def listChoices(self):
-               self.rescanTimer.stop()
+               self.stopScan()
                list = []
                if self.WlanPluginInstalled == True:
                        list.append((_("Configure your wireless LAN again"), "scanwlan"))
@@ -417,8 +372,7 @@ class NetworkWizard(WizardLanguage, Rc):
                        self.selectedInterface = "eth0"
                        self.NextStep = 'nwconfig'
                else:
-                       self.NextStep = 'scanwlan'
+                       self.NextStep = 'asknetworktype'
 
        def ChoicesSelectionMoved(self):
                pass
-
index c430043..0b3a298 100755 (executable)
@@ -87,13 +87,33 @@ self.selectKey("DOWN")
                         <listentry caption="Exit network wizard" step="end" />
                 </list>
         </step>
+
+        <step id="asknetworktype">
+               <condition>
+self.condition = (self.isInterfaceUp == True and self.WlanPluginInstalled == True)
+               </condition>
+                <text value="Wireless network connection setup." />
+                <displaytext value="Wireless network connection setup" />
+                <code>
+self.clearSelectedKeys()
+self.selectKey("OK")
+self.selectKey("UP")
+self.selectKey("DOWN")
+                </code>
+                <list>
+                        <listentry caption="List available networks" step="scanwlan" />
+                        <listentry caption="Manual configuration" step="wlanconfig" />
+                        <listentry caption="Exit network wizard" step="end" />
+                </list>
+        </step>
+
         <step id="scanwlan">
                <condition>
 self.condition = (self.isInterfaceUp == True and self.WlanPluginInstalled == True)
                 </condition>
                 <text value="Please select the wireless network that you want to connect to.\n\nPlease press OK to continue." />
                 <displaytext value="Select wireless network" />
-                <list type="dynamic" source="listAccessPoints" evaluation="AccessPointsSelectionMade" onselect="AccessPointsSelectionMoved" />
+                <list type="dynamic" source="listAccessPoints" onselect="AccessPointsSelectionMoved" />
                 <code>
 self.clearSelectedKeys()
 self.selectKey("OK")
@@ -138,7 +158,7 @@ self.selectKey("DOWN")
         <step id="wlanconfig">
                 <text value="Please configure your internet connection by filling out the required values.\nWhen you are ready press OK to continue." />
                 <displaytext value="Configure interface" />
-                <config screen="AdapterSetup" module="NetworkSetup" args="(self.selectedInterface,self.ap,self.WlanList)" type="ConfigList" />
+                <config screen="AdapterSetup" module="NetworkSetup" args="(self.selectedInterface,self.ap)" type="ConfigList" />
                 <code>
 self.clearSelectedKeys()
 self.selectKey("OK")
@@ -196,4 +216,3 @@ self.selectKey("OK")
         </step>
 </wizard>
 
-
index 56cebdb..30a2423 100644 (file)
@@ -1,6 +1,8 @@
 from Screens.Screen import Screen
 from Plugins.Plugin import PluginDescriptor
-from Components.config import getConfigListEntry, config
+from Components.config import getConfigListEntry, config, ConfigBoolean
+
+config.misc.firstrun = ConfigBoolean(default = True)
 
 def NetworkWizardMain(session, **kwargs):
        session.open(NetworkWizard)
index 01649bb..bfe28b4 100755 (executable)
@@ -17,10 +17,9 @@ from os import popen, path, makedirs, listdir, access, stat, rename, remove, W_O
 from time import gmtime, strftime, localtime
 from datetime import date
 
-
 config.plugins.configurationbackup = ConfigSubsection()
 config.plugins.configurationbackup.backuplocation = ConfigText(default = '/media/hdd/', visible_width = 50, fixed_size = False)
-config.plugins.configurationbackup.backupdirs = ConfigLocations(default=[eEnv.resolve('${sysconfdir}/enigma2/'), '/etc/network/interfaces', '/etc/wpa_supplicant.conf', '/etc/resolv.conf', '/etc/default_gw', '/etc/hostname'])
+config.plugins.configurationbackup.backupdirs = ConfigLocations(default=[eEnv.resolve('${sysconfdir}/enigma2/'), '/etc/network/interfaces', '/etc/wpa_supplicant.conf', '/etc/wpa_supplicant.ath0.conf', '/etc/wpa_supplicant.wlan0.conf', '/etc/resolv.conf', '/etc/default_gw', '/etc/hostname'])
 
 def getBackupPath():
        backuppath = config.plugins.configurationbackup.backuplocation.value
index 32d7140..3ea787c 100755 (executable)
@@ -13,10 +13,11 @@ from enigma import eEnv
 
 from Components.config import config, getConfigListEntry, ConfigSubsection, ConfigText, ConfigLocations, ConfigBoolean
 from Components.Harddisk import harddiskmanager
+
 config.misc.firstrun = ConfigBoolean(default = True)
 config.plugins.configurationbackup = ConfigSubsection()
 config.plugins.configurationbackup.backuplocation = ConfigText(default = '/media/hdd/', visible_width = 50, fixed_size = False)
-config.plugins.configurationbackup.backupdirs = ConfigLocations(default=[eEnv.resolve('${sysconfdir}/enigma2/'), '/etc/network/interfaces', '/etc/wpa_supplicant.conf'])
+config.plugins.configurationbackup.backupdirs = ConfigLocations(default=[eEnv.resolve('${sysconfdir}/enigma2/'), '/etc/network/interfaces', '/etc/wpa_supplicant.conf', '/etc/wpa_supplicant.ath0.conf', '/etc/wpa_supplicant.wlan0.conf', '/etc/resolv.conf', '/etc/default_gw', '/etc/hostname'])
 
 
 backupfile = "enigma2settingsbackup.tar.gz"
index 87f0a4d..ec2f82c 100755 (executable)
@@ -9,9 +9,10 @@ from Components.Ipkg import IpkgComponent
 from Components.Network import iNetwork
 from Tools.Directories import pathExists, fileExists, resolveFilename, SCOPE_METADIR
 from Tools.HardwareInfo import HardwareInfo
-import sha
-
+import hashlib
 from time import time
+from os import urandom
+
 rootkey = ['\x9f', '|', '\xe4', 'G', '\xc9', '\xb4', '\xf4', '#', '&', '\xce', '\xb3', '\xfe', '\xda', '\xc9', 'U', '`', '\xd8', '\x8c', 's', 'o', '\x90', '\x9b', '\\', 'b', '\xc0', '\x89', '\xd1', '\x8c', '\x9e', 'J', 'T', '\xc5', 'X', '\xa1', '\xb8', '\x13', '5', 'E', '\x02', '\xc9', '\xb2', '\xe6', 't', '\x89', '\xde', '\xcd', '\x9d', '\x11', '\xdd', '\xc7', '\xf4', '\xe4', '\xe4', '\xbc', '\xdb', '\x9c', '\xea', '}', '\xad', '\xda', 't', 'r', '\x9b', '\xdc', '\xbc', '\x18', '3', '\xe7', '\xaf', '|', '\xae', '\x0c', '\xe3', '\xb5', '\x84', '\x8d', '\r', '\x8d', '\x9d', '2', '\xd0', '\xce', '\xd5', 'q', '\t', '\x84', 'c', '\xa8', ')', '\x99', '\xdc', '<', '"', 'x', '\xe8', '\x87', '\x8f', '\x02', ';', 'S', 'm', '\xd5', '\xf0', '\xa3', '_', '\xb7', 'T', '\t', '\xde', '\xa7', '\xf1', '\xc9', '\xae', '\x8a', '\xd7', '\xd2', '\xcf', '\xb2', '.', '\x13', '\xfb', '\xac', 'j', '\xdf', '\xb1', '\x1d', ':', '?']
 
 def bin2long(s):
@@ -30,7 +31,7 @@ def decrypt_block(src, mod):
        if len(src) != 128 and len(src) != 202:
                return None
        dest = rsa_pub1024(src[:128], mod)
-       hash = sha.new(dest[1:107])
+       hash = hashlib.sha1(dest[1:107])
        if len(src) == 202:
                hash.update(src[131:192])       
        result = hash.digest()
@@ -46,10 +47,12 @@ def validate_cert(cert, key):
 
 def read_random():
        try:
-               fd = open("/dev/urandom", "r")
-               buf = fd.read(8)
-               fd.close()
-               return buf
+               xor = lambda a,b: ''.join(chr(ord(c)^ord(d)) for c,d in zip(a,b*100))
+               random = urandom(8)
+               x = str(time())[-8:]
+               result = xor(random, x)
+                               
+               return result
        except:
                return None
 
@@ -241,7 +244,7 @@ class SoftwareTools(DreamInfoHandler):
                        if self.NetworkConnectionAvailable == True:
                                if not self.UpdateConsole:
                                        self.UpdateConsole = Console()
-                               cmd = "opkg install enigma2-meta enigma2-plugins-meta enigma2-skins-meta"
+                               cmd = "opkg install enigma2-meta enigma2-plugins-meta enigma2-skins-meta enigma2-drivers-meta"
                                self.UpdateConsole.ePopen(cmd, self.InstallMetaPackageCB, callback)
                        else:
                                self.InstallMetaPackageCB(True)
index b3a0a17..12fd609 100644 (file)
@@ -43,10 +43,10 @@ from SoftwareTools import iSoftwareTools
 
 config.plugins.configurationbackup = ConfigSubsection()
 config.plugins.configurationbackup.backuplocation = ConfigText(default = '/media/hdd/', visible_width = 50, fixed_size = False)
-config.plugins.configurationbackup.backupdirs = ConfigLocations(default=[eEnv.resolve('${sysconfdir}/enigma2/'), '/etc/network/interfaces', '/etc/wpa_supplicant.conf', '/etc/resolv.conf', '/etc/default_gw', '/etc/hostname'])
+config.plugins.configurationbackup.backupdirs = ConfigLocations(default=[eEnv.resolve('${sysconfdir}/enigma2/'), '/etc/network/interfaces', '/etc/wpa_supplicant.conf', '/etc/wpa_supplicant.ath0.conf', '/etc/wpa_supplicant.wlan0.conf', '/etc/resolv.conf', '/etc/default_gw', '/etc/hostname'])
 
-config.plugins.SoftwareManager = ConfigSubsection()
-config.plugins.SoftwareManager.overwriteConfigFiles = ConfigSelection(
+config.plugins.softwaremanager = ConfigSubsection()
+config.plugins.softwaremanager.overwriteConfigFiles = ConfigSelection(
                                [
                                 ("Y", _("Yes, always")),
                                 ("N", _("No, never")),                          
@@ -365,7 +365,7 @@ class SoftwareManagerSetup(Screen, ConfigListScreen):
 
        def createSetup(self):
                self.list = [ ]
-               self.overwriteConfigfilesEntry = getConfigListEntry(_("Overwrite configuration files ?"), config.plugins.SoftwareManager.overwriteConfigFiles)
+               self.overwriteConfigfilesEntry = getConfigListEntry(_("Overwrite configuration files ?"), config.plugins.softwaremanager.overwriteConfigFiles)
                self.list.append(self.overwriteConfigfilesEntry)        
                self["config"].list = self.list
                self["config"].l.setSeperation(400)
@@ -489,7 +489,6 @@ class SoftwareManagerInfo(Screen):
                        self.list = []
                        backupfiles = config.plugins.configurationbackup.backupdirs.value
                        for entry in backupfiles:
-                               print entry
                                self.list.append((entry,))
                        self['list'].setList(self.list)
                        
@@ -569,6 +568,7 @@ class PluginManager(Screen, DreamInfoHandler):
                self.currentSelectedIndex = None
                self.currentSelectedPackage = None
                self.saved_currentSelectedPackage = None
+               self.restartRequired = False
                
                self.onShown.append(self.setWindowTitle)
                self.onLayoutFinish.append(self.getUpdateInfos)
@@ -892,6 +892,8 @@ class PluginManager(Screen, DreamInfoHandler):
                                        self.package = iSoftwareTools.packageDetails[0]
                                        if self.package[0].has_key("attributes"):
                                                self.attributes = self.package[0]["attributes"]
+                                               if self.attributes.has_key("needsRestart"):
+                                                       self.restartRequired = True
                                        if self.attributes.has_key("package"):
                                                self.packagefiles = self.attributes["package"]
                                        if plugin[1] == 'installed':
@@ -924,11 +926,11 @@ class PluginManager(Screen, DreamInfoHandler):
 
        def runExecuteFinished(self):
                self.reloadPluginlist()
-               restartRequired = plugins.restartRequired
-               if restartRequired:
+               if plugins.restartRequired or self.restartRequired:
                        self.session.openWithCallback(self.ExecuteReboot, MessageBox, _("Install or remove finished.") +" "+_("Do you want to reboot your Dreambox?"), MessageBox.TYPE_YESNO)
                else:
                        self.selectedFiles = []
+                       self.restartRequired = False
                        self.detailsClosed(True)
 
        def ExecuteReboot(self, result):
@@ -936,6 +938,7 @@ class PluginManager(Screen, DreamInfoHandler):
                        quitMainloop(3)
                else:
                        self.selectedFiles = []
+                       self.restartRequired = False
                        self.detailsClosed(True)
 
        def reloadPluginlist(self):
@@ -1174,7 +1177,7 @@ class PluginDetails(Screen, DreamInfoHandler):
                self.package = self.packageDetails[0]
                if self.package[0].has_key("attributes"):
                        self.attributes = self.package[0]["attributes"]
-
+               self.restartRequired = False
                self.cmdList = []
                self.oktext = _("\nAfter pressing OK, please wait!")
                self.picload = ePicLoad()
@@ -1272,6 +1275,8 @@ class PluginDetails(Screen, DreamInfoHandler):
        def go(self):
                if self.attributes.has_key("package"):
                        self.packagefiles = self.attributes["package"]
+               if self.attributes.has_key("needsRestart"):
+                       self.restartRequired = True
                self.cmdList = []
                if self.pluginstate in ('installed', 'remove'):
                        if self.packagefiles:
@@ -1293,8 +1298,7 @@ class PluginDetails(Screen, DreamInfoHandler):
 
        def runUpgradeFinished(self):
                self.reloadPluginlist()
-               restartRequired = plugins.restartRequired
-               if restartRequired:
+               if plugins.restartRequired or self.restartRequired:
                        self.session.openWithCallback(self.UpgradeReboot, MessageBox, _("Installation finished.") +" "+_("Do you want to reboot your Dreambox?"), MessageBox.TYPE_YESNO)
                else:
                        self.close(True)
@@ -1414,8 +1418,8 @@ class UpdatePlugin(Screen):
                        self.status.setText(_("Configuring"))
                        
                elif event == IpkgComponent.EVENT_MODIFIED:
-                       if config.plugins.SoftwareManager.overwriteConfigFiles.value in ("N", "Y"):
-                               self.ipkg.write(True and config.plugins.SoftwareManager.overwriteConfigFiles.value)
+                       if config.plugins.softwaremanager.overwriteConfigFiles.value in ("N", "Y"):
+                               self.ipkg.write(True and config.plugins.softwaremanager.overwriteConfigFiles.value)
                        else:
                                self.session.openWithCallback(
                                        self.modificationCallback,
index 480f201..a185157 100755 (executable)
@@ -1,36 +1,42 @@
 from Components.config import config, ConfigYesNo, NoSave, ConfigSubsection, ConfigText, ConfigSelection, ConfigPassword
 from Components.Console import Console
+from Components.Network import iNetwork
 
-from os import system
+from os import system, path as os_path
 from string import maketrans, strip
 import sys
 import types
-from re import compile as re_compile, search as re_search
+from re import compile as re_compile, search as re_search, escape as re_escape
 from pythonwifi.iwlibs import getNICnames, Wireless, Iwfreq, getWNICnames
 from pythonwifi import flags as wififlags
 
 list = []
+list.append("Unencrypted")
 list.append("WEP")
 list.append("WPA")
-list.append("WPA2")
 list.append("WPA/WPA2")
+list.append("WPA2")
 
 weplist = []
 weplist.append("ASCII")
 weplist.append("HEX")
 
 config.plugins.wlan = ConfigSubsection()
-config.plugins.wlan.essid = NoSave(ConfigText(default = "home", fixed_size = False))
-config.plugins.wlan.hiddenessid = NoSave(ConfigText(default = "home", fixed_size = False))
+config.plugins.wlan.essid = NoSave(ConfigText(default = "", fixed_size = False))
+config.plugins.wlan.hiddenessid = NoSave(ConfigYesNo(default = False))
+config.plugins.wlan.encryption = NoSave(ConfigSelection(list, default = "WPA2"))
+config.plugins.wlan.wepkeytype = NoSave(ConfigSelection(weplist, default = "ASCII"))
+config.plugins.wlan.psk = NoSave(ConfigPassword(default = "", fixed_size = False))
+
 
-config.plugins.wlan.encryption = ConfigSubsection()
-config.plugins.wlan.encryption.enabled = NoSave(ConfigYesNo(default = True))
-config.plugins.wlan.encryption.type = NoSave(ConfigSelection(list, default = "WPA/WPA2"))
-config.plugins.wlan.encryption.wepkeytype = NoSave(ConfigSelection(weplist, default = "ASCII"))
-config.plugins.wlan.encryption.psk = NoSave(ConfigPassword(default = "mysecurewlan", fixed_size = False))
+def getWlanConfigName(iface):
+       return '/etc/wpa_supplicant.' + iface + '.conf'
 
 class Wlan:
-       def __init__(self, iface):
+       def __init__(self, iface = None):
+               self.iface = iface
+               self.oldInterfaceState = None
+               
                a = ''; b = ''
                for i in range(0, 255):
                        a = a + chr(i)
@@ -39,135 +45,37 @@ class Wlan:
                        else:
                                b = b + chr(i)
                
-               self.iface = iface
-               self.wlaniface = {}
-               self.WlanConsole = Console()
                self.asciitrans = maketrans(a, b)
 
-       def stopWlanConsole(self):
-               if self.WlanConsole is not None:
-                       print "killing self.WlanConsole"
-                       self.WlanConsole = None
-                       del self.WlanConsole
-                       
-       def getDataForInterface(self, callback = None):
-               #get ip out of ip addr, as avahi sometimes overrides it in ifconfig.
-               print "self.iface im getDataForInterface",self.iface
-               if len(self.WlanConsole.appContainers) == 0:
-                       self.WlanConsole = Console()
-                       cmd = "iwconfig " + self.iface
-                       self.WlanConsole.ePopen(cmd, self.iwconfigFinished, callback)
-
-       def iwconfigFinished(self, result, retval, extra_args):
-               print "self.iface im iwconfigFinished",self.iface
-               callback = extra_args
-               data = { 'essid': False, 'frequency': False, 'acesspoint': False, 'bitrate': False, 'encryption': False, 'quality': False, 'signal': False }
-               
-               for line in result.splitlines():
-                       line = line.strip()
-                       if "ESSID" in line:
-                               if "off/any" in line:
-                                       ssid = _("No Connection")
-                               else:
-                                       if "Nickname" in line:
-                                               tmpssid=(line[line.index('ESSID')+7:line.index('"  Nickname')])
-                                               if tmpssid == '':
-                                                       ssid = _("Hidden networkname")
-                                               elif tmpssid ==' ':
-                                                       ssid = _("Hidden networkname")
-                                               else:
-                                                       ssid = tmpssid
-                                       else:
-                                               tmpssid=(line[line.index('ESSID')+7:len(line)-1])
-                                               if tmpssid == '':
-                                                       ssid = _("Hidden networkname")
-                                               elif tmpssid ==' ':
-                                                       ssid = _("Hidden networkname")
-                                               else:
-                                                       ssid = tmpssid                                          
-
-                               if ssid is not None:
-                                       data['essid'] = ssid
-                       if 'Frequency' in line:
-                               frequency = line[line.index('Frequency')+10 :line.index(' GHz')]
-                               if frequency is not None:
-                                       data['frequency'] = frequency
-                       if "Access Point" in line:
-                               ap=line[line.index('Access Point')+14:len(line)-1]
-                               if ap is not None:
-                                       data['acesspoint'] = ap
-                       if "Bit Rate" in line:
-                               br = line[line.index('Bit Rate')+9 :line.index(' Mb/s')]
-                               if br is not None:
-                                       data['bitrate'] = br
-                       if 'Encryption key' in line:
-                               if ":off" in line:
-                                   enc = _("Disabled")
-                               else:
-                                   enc = line[line.index('Encryption key')+15 :line.index('   Security')]
-                               if enc is not None:
-                                       data['encryption'] = _("Enabled")
-                       if 'Quality' in line:
-                               if "/100" in line:
-                                       qual = line[line.index('Quality')+8:line.index('/100')]
-                               else:
-                                       qual = line[line.index('Quality')+8:line.index('Sig')]
-                               if qual is not None:
-                                       data['quality'] = qual
-                       if 'Signal level' in line:
-                               signal = line[line.index('Signal level')+13 :line.index(' dBm')]
-                               if signal is not None:
-                                       data['signal'] = signal
-
-               self.wlaniface[self.iface] = data
-               
-               if len(self.WlanConsole.appContainers) == 0:
-                       print "self.wlaniface after loading:", self.wlaniface
-                       self.WlanConsole = None
-                       if callback is not None:
-                               callback(True,self.wlaniface)
-
-       def getAdapterAttribute(self, attribute):
-               if self.wlaniface.has_key(self.iface):
-                       print "self.wlaniface.has_key",self.iface
-                       if self.wlaniface[self.iface].has_key(attribute):
-                               return self.wlaniface[self.iface][attribute]
-               return None
-               
        def asciify(self, str):
                return str.translate(self.asciitrans)
-
        
        def getWirelessInterfaces(self):
-               device = re_compile('[a-z]{2,}[0-9]*:')
-               ifnames = []
+               return getWNICnames()
 
-               fp = open('/proc/net/wireless', 'r')
-               for line in fp:
-                       try:
-                               # append matching pattern, without the trailing colon
-                               ifnames.append(device.search(line).group()[:-1])
-                       except AttributeError:
-                               pass
-               return ifnames
+       def setInterface(self, iface = None):
+               self.iface = iface
+
+       def getInterface(self):
+               return self.iface
 
-       
        def getNetworkList(self):
-               system("ifconfig "+self.iface+" up")
+               if self.oldInterfaceState is None:
+                       self.oldInterfaceState = iNetwork.getAdapterAttribute(self.iface, "up")
+               if self.oldInterfaceState is False:
+                       if iNetwork.getAdapterAttribute(self.iface, "up") is False:
+                               iNetwork.setAdapterAttribute(self.iface, "up", True)
+                               system("ifconfig "+self.iface+" up")
+
                ifobj = Wireless(self.iface) # a Wireless NIC Object
-               
-               #Association mappings
-               #stats, quality, discard, missed_beacon = ifobj.getStatistics()
-               #snr = quality.signallevel - quality.noiselevel
 
                try:
                        scanresults = ifobj.scan()
                except:
                        scanresults = None
-                       print "[Wlan.py] No Wireless Networks could be found"
-               
+                       print "[Wlan.py] No wireless networks could be found"
+               aps = {}
                if scanresults is not None:
-                       aps = {}
                        (num_channels, frequencies) = ifobj.getChannelInfo()
                        index = 1
                        for result in scanresults:
@@ -188,7 +96,6 @@ class Wlan:
                                        element = element.encode()
                                        extra.append( strip(self.asciify(element)) )
                                for element in extra:
-                                       print element
                                        if 'SignalStrength' in element:
                                                signal = element[element.index('SignalStrength')+15:element.index(',L')]                                        
                                        if 'LinkQuality' in element:
@@ -207,183 +114,151 @@ class Wlan:
                                        'signal' : str(signal),
                                        'custom' : extra,
                                }
-                               #print "GOT APS ENTRY:",aps[bssid]
-                               index = index + 1
-                       return aps
 
+                               index = index + 1
+               return aps
                
-       def getStatus(self):
-               ifobj = Wireless(self.iface)
-               fq = Iwfreq()
-               try:
-                       self.channel = str(fq.getChannel(str(ifobj.getFrequency()[0:-3])))
-               except:
-                       self.channel = 0
-               status = {
-                                 'BSSID': str(ifobj.getAPaddr()), #ifobj.getStatistics()
-                                 'ESSID': str(ifobj.getEssid()),
-                                 'quality': "%s/%s" % (ifobj.getStatistics()[1].quality,ifobj.getQualityMax().quality),
-                                 'signal': str(ifobj.getStatistics()[1].siglevel-0x100) + " dBm",
-                                 'bitrate': str(ifobj.getBitrate()),
-                                 'channel': str(self.channel),
-                                 #'channel': str(fq.getChannel(str(ifobj.getFrequency()[0:-3]))),
-               }
-               
-               for (key, item) in status.items():
-                       if item is "None" or item is "":
-                                       status[key] = _("N/A")
-                               
-               return status
+       def stopGetNetworkList(self):
+               if self.oldInterfaceState is not None:
+                       if self.oldInterfaceState is False:
+                               iNetwork.setAdapterAttribute(self.iface, "up", False)
+                               system("ifconfig "+self.iface+" down")
+                               self.oldInterfaceState = None
+                               self.iface = None
 
+iWlan = Wlan()
 
 class wpaSupplicant:
        def __init__(self):
                pass
-       
                
-       def writeConfig(self):  
-                       
-                       essid = config.plugins.wlan.essid.value
-                       hiddenessid = config.plugins.wlan.hiddenessid.value
-                       encrypted = config.plugins.wlan.encryption.enabled.value
-                       encryption = config.plugins.wlan.encryption.type.value
-                       wepkeytype = config.plugins.wlan.encryption.wepkeytype.value
-                       psk = config.plugins.wlan.encryption.psk.value
-                       fp = file('/etc/wpa_supplicant.conf', 'w')
-                       fp.write('#WPA Supplicant Configuration by enigma2\n')
-                       fp.write('ctrl_interface=/var/run/wpa_supplicant\n')
-                       fp.write('eapol_version=1\n')
-                       fp.write('fast_reauth=1\n')     
-                       if essid == 'hidden...':
-                               fp.write('ap_scan=2\n')
-                       else:
-                               fp.write('ap_scan=1\n')
-                       fp.write('network={\n')
-                       if essid == 'hidden...':
-                               fp.write('\tssid="'+hiddenessid+'"\n')
+       def writeConfig(self, iface):
+               essid = config.plugins.wlan.essid.value
+               hiddenessid = config.plugins.wlan.hiddenessid.value
+               encryption = config.plugins.wlan.encryption.value
+               wepkeytype = config.plugins.wlan.wepkeytype.value
+               psk = config.plugins.wlan.psk.value
+               fp = file(getWlanConfigName(iface), 'w')
+               fp.write('#WPA Supplicant Configuration by enigma2\n')
+               fp.write('ctrl_interface=/var/run/wpa_supplicant\n')
+               fp.write('eapol_version=1\n')
+               fp.write('fast_reauth=1\n')     
+
+               if hiddenessid:
+                       fp.write('ap_scan=2\n')
+               else:
+                       fp.write('ap_scan=1\n')
+               fp.write('network={\n')
+               fp.write('\tssid="'+essid+'"\n')
+               fp.write('\tscan_ssid=0\n')                     
+               if encryption in ('WPA', 'WPA2', 'WPA/WPA2'):
+                       fp.write('\tkey_mgmt=WPA-PSK\n')
+                       if encryption == 'WPA':
+                               fp.write('\tproto=WPA\n')
+                               fp.write('\tpairwise=TKIP\n')
+                               fp.write('\tgroup=TKIP\n')
+                       elif encryption == 'WPA2':
+                               fp.write('\tproto=RSN\n')
+                               fp.write('\tpairwise=CCMP\n')
+                               fp.write('\tgroup=CCMP\n')
                        else:
-                               fp.write('\tssid="'+essid+'"\n')
-                       fp.write('\tscan_ssid=0\n')                     
-                       if encrypted:
-                               if encryption in ('WPA', 'WPA2', 'WPA/WPA2'):
-                                       fp.write('\tkey_mgmt=WPA-PSK\n')
-               
-                                       if encryption == 'WPA':
-                                               fp.write('\tproto=WPA\n')
-                                               fp.write('\tpairwise=TKIP\n')
-                                               fp.write('\tgroup=TKIP\n')
-                                       elif encryption == 'WPA2':
-                                               fp.write('\tproto=RSN\n')
-                                               fp.write('\tpairwise=CCMP\n')
-                                               fp.write('\tgroup=CCMP\n')
-                                       else:
-                                               fp.write('\tproto=WPA RSN\n')
-                                               fp.write('\tpairwise=CCMP TKIP\n')
-                                               fp.write('\tgroup=CCMP TKIP\n')
-                                       fp.write('\tpsk="'+psk+'"\n')
-                               elif encryption == 'WEP':
-                                       fp.write('\tkey_mgmt=NONE\n')
-                                       if wepkeytype == 'ASCII':
-                                               fp.write('\twep_key0="'+psk+'"\n')
-                                       else:
-                                               fp.write('\twep_key0='+psk+'\n')
+                               fp.write('\tproto=WPA RSN\n')
+                               fp.write('\tpairwise=CCMP TKIP\n')
+                               fp.write('\tgroup=CCMP TKIP\n')
+                       fp.write('\tpsk="'+psk+'"\n')
+               elif encryption == 'WEP':
+                       fp.write('\tkey_mgmt=NONE\n')
+                       if wepkeytype == 'ASCII':
+                               fp.write('\twep_key0="'+psk+'"\n')
                        else:
-                               fp.write('\tkey_mgmt=NONE\n')                   
-                       fp.write('}')
-                       fp.write('\n')
-                       fp.close()
-                       system("cat /etc/wpa_supplicant.conf")
+                               fp.write('\twep_key0='+psk+'\n')
+               else:
+                       fp.write('\tkey_mgmt=NONE\n')
+               fp.write('}')
+               fp.write('\n')
+               fp.close()
+               #system('cat ' + getWlanConfigName(iface))
                
-       def loadConfig(self):
+       def loadConfig(self,iface):
+               configfile = getWlanConfigName(iface)
+               if not os_path.exists(configfile):
+                       configfile = '/etc/wpa_supplicant.conf'
                try:
                        #parse the wpasupplicant configfile
-                       fp = file('/etc/wpa_supplicant.conf', 'r')
+                       print "[Wlan.py] parsing configfile: ",configfile
+                       fp = file(configfile, 'r')
                        supplicant = fp.readlines()
                        fp.close()
-                       ap_scan = False
                        essid = None
+                       encryption = "Unencrypted"
 
                        for s in supplicant:
                                split = s.strip().split('=',1)
                                if split[0] == 'ap_scan':
-                                       print "[Wlan.py] Got Hidden SSID Scan  Value "+split[1]
                                        if split[1] == '2':
-                                               ap_scan = True
+                                               config.plugins.wlan.hiddenessid.value = True
                                        else:
-                                               ap_scan = False
-                                               
+                                               config.plugins.wlan.hiddenessid.value = False
+
                                elif split[0] == 'ssid':
-                                       print "[Wlan.py] Got SSID "+split[1][1:-1]
                                        essid = split[1][1:-1]
-                                       
+                                       config.plugins.wlan.essid.value = essid
+
                                elif split[0] == 'proto':
-                                       config.plugins.wlan.encryption.enabled.value = True
                                        if split[1] == 'WPA' :
                                                mode = 'WPA'
                                        if split[1] == 'RSN':
                                                mode = 'WPA2'
                                        if split[1] in ('WPA RSN', 'WPA WPA2'):
                                                mode = 'WPA/WPA2'
-
-                                       config.plugins.wlan.encryption.type.value = mode
-                                       print "[Wlan.py] Got Encryption: "+mode
+                                       encryption = mode
                                        
                                elif split[0] == 'wep_key0':
-                                       config.plugins.wlan.encryption.enabled.value = True
-                                       config.plugins.wlan.encryption.type.value = 'WEP'
+                                       encryption = 'WEP'
                                        if split[1].startswith('"') and split[1].endswith('"'):
-                                               config.plugins.wlan.encryption.wepkeytype.value = 'ASCII'
-                                               config.plugins.wlan.encryption.psk.value = split[1][1:-1]
+                                               config.plugins.wlan.wepkeytype.value = 'ASCII'
+                                               config.plugins.wlan.psk.value = split[1][1:-1]
                                        else:
-                                               config.plugins.wlan.encryption.wepkeytype.value = 'HEX'
-                                               config.plugins.wlan.encryption.psk.value = split[1]                                             
+                                               config.plugins.wlan.wepkeytype.value = 'HEX'
+                                               config.plugins.wlan.psk.value = split[1]                                                
                                        
                                elif split[0] == 'psk':
-                                       config.plugins.wlan.encryption.psk.value = split[1][1:-1]
+                                       config.plugins.wlan.psk.value = split[1][1:-1]
                                else:
                                        pass
+
+                       config.plugins.wlan.encryption.value = encryption
                                
-                       if ap_scan is True:
-                               config.plugins.wlan.hiddenessid.value = essid
-                               config.plugins.wlan.essid.value = 'hidden...'
-                       else:
-                               config.plugins.wlan.hiddenessid.value = essid
-                               config.plugins.wlan.essid.value = essid
                        wsconfig = {
                                        'hiddenessid': config.plugins.wlan.hiddenessid.value,
                                        'ssid': config.plugins.wlan.essid.value,
-                                       'encryption': config.plugins.wlan.encryption.enabled.value,
-                                       'encryption_type': config.plugins.wlan.encryption.type.value,
-                                       'encryption_wepkeytype': config.plugins.wlan.encryption.wepkeytype.value,
-                                       'key': config.plugins.wlan.encryption.psk.value,
+                                       'encryption': config.plugins.wlan.encryption.value,
+                                       'wepkeytype': config.plugins.wlan.wepkeytype.value,
+                                       'key': config.plugins.wlan.psk.value,
                                }
                
                        for (key, item) in wsconfig.items():
                                if item is "None" or item is "":
                                        if key == 'hiddenessid':
-                                               wsconfig['hiddenessid'] = "home"
+                                               wsconfig['hiddenessid'] = False
                                        if key == 'ssid':
-                                               wsconfig['ssid'] = "home"
-                                       if key == 'encryption':
-                                               wsconfig['encryption'] = True                           
-                                       if key == 'encryption':
-                                               wsconfig['encryption_type'] = "WPA/WPA2"
+                                               wsconfig['ssid'] = ""
                                        if key == 'encryption':
-                                               wsconfig['encryption_wepkeytype'] = "ASCII"
-                                       if key == 'encryption':
-                                               wsconfig['key'] = "mysecurewlan"
-
+                                               wsconfig['encryption'] = "WPA2"                 
+                                       if key == 'wepkeytype':
+                                               wsconfig['wepkeytype'] = "ASCII"
+                                       if key == 'key':
+                                               wsconfig['key'] = ""
                except:
-                       print "[Wlan.py] Error parsing /etc/wpa_supplicant.conf"
+                       print "[Wlan.py] Error parsing ",configfile
                        wsconfig = {
-                                       'hiddenessid': "home",
-                                       'ssid': "home",
-                                       'encryption': True,
-                                       'encryption_type': "WPA/WPA2",
-                                       'encryption_wepkeytype': "ASCII",
-                                       'key': "mysecurewlan",
+                                       'hiddenessid': False,
+                                       'ssid': "",
+                                       'encryption': "WPA2",
+                                       'wepkeytype': "ASCII",
+                                       'key': "",
                                }
-               print "[Wlan.py] WS-CONFIG-->",wsconfig
+               #print "[Wlan.py] WS-CONFIG-->",wsconfig
                return wsconfig
 
 
@@ -391,82 +266,70 @@ class Status:
        def __init__(self):
                self.wlaniface = {}
                self.backupwlaniface = {}
+               self.statusCallback = None
                self.WlanConsole = Console()
 
        def stopWlanConsole(self):
                if self.WlanConsole is not None:
-                       print "killing self.WlanConsole"
+                       print "[iStatus] killing self.WlanConsole"
                        self.WlanConsole.killAll()
                        self.WlanConsole = None
                        
        def getDataForInterface(self, iface, callback = None):
                self.WlanConsole = Console()
                cmd = "iwconfig " + iface
-               self.WlanConsole.ePopen(cmd, self.iwconfigFinished, [iface, callback])
+               if callback is not None:
+                       self.statusCallback = callback
+               self.WlanConsole.ePopen(cmd, self.iwconfigFinished, iface)
 
        def iwconfigFinished(self, result, retval, extra_args):
-               (iface, callback) = extra_args
-               data = { 'essid': False, 'frequency': False, 'acesspoint': False, 'bitrate': False, 'encryption': False, 'quality': False, 'signal': False }
+               iface = extra_args
+               data = { 'essid': False, 'frequency': False, 'accesspoint': False, 'bitrate': False, 'encryption': False, 'quality': False, 'signal': False }
                for line in result.splitlines():
                        line = line.strip()
                        if "ESSID" in line:
                                if "off/any" in line:
-                                       ssid = _("No Connection")
+                                       ssid = "off"
                                else:
                                        if "Nickname" in line:
-                                               tmpssid=(line[line.index('ESSID')+7:line.index('"  Nickname')])
-                                               if tmpssid == '':
-                                                       ssid = _("Hidden networkname")
-                                               elif tmpssid ==' ':
-                                                       ssid = _("Hidden networkname")
-                                               else:
-                                                       ssid = tmpssid
+                                               ssid=(line[line.index('ESSID')+7:line.index('"  Nickname')])
                                        else:
-                                               tmpssid=(line[line.index('ESSID')+7:len(line)-1])
-                                               if tmpssid == '':
-                                                       ssid = _("Hidden networkname")
-                                               elif tmpssid ==' ':
-                                                       ssid = _("Hidden networkname")
-                                               else:
-                                                       ssid = tmpssid                                          
+                                               ssid=(line[line.index('ESSID')+7:len(line)-1])
                                if ssid is not None:
                                        data['essid'] = ssid
-                       if 'Frequency' in line:
+                       if "Frequency" in line:
                                frequency = line[line.index('Frequency')+10 :line.index(' GHz')]
                                if frequency is not None:
                                        data['frequency'] = frequency
                        if "Access Point" in line:
-                               ap=line[line.index('Access Point')+14:len(line)]
+                               if "Sensitivity" in line:
+                                       ap=line[line.index('Access Point')+14:line.index('   Sensitivity')]
+                               else:
+                                       ap=line[line.index('Access Point')+14:len(line)]
                                if ap is not None:
-                                       data['acesspoint'] = ap
-                                       if ap == "Not-Associated":
-                                               data['essid'] = _("No Connection")
+                                       data['accesspoint'] = ap
                        if "Bit Rate" in line:
                                if "kb" in line:
                                        br = line[line.index('Bit Rate')+9 :line.index(' kb/s')]
-                                       if br == '0':
-                                               br = _("Unsupported")
-                                       else:
-                                               br += " Mb/s"
                                else:
-                                       br = line[line.index('Bit Rate')+9 :line.index(' Mb/s')] + " Mb/s"
+                                       br = line[line.index('Bit Rate')+9 :line.index(' Mb/s')]
                                if br is not None:
                                        data['bitrate'] = br
-                       if 'Encryption key' in line:
+                       if "Encryption key" in line:
                                if ":off" in line:
-                                       if data['acesspoint'] is not "Not-Associated":
-                                               enc = _("Unsupported")
-                                       else:
-                                               enc = _("Disabled")
-                               else:
+                                       enc = "off"
+                               elif "Security" in line:
                                        enc = line[line.index('Encryption key')+15 :line.index('   Security')]
                                        if enc is not None:
-                                               enc = _("Enabled")
+                                               enc = "on"
+                               else:
+                                       enc = line[line.index('Encryption key')+15 :len(line)]
+                                       if enc is not None:
+                                               enc = "on"
                                if enc is not None:
                                        data['encryption'] = enc
                        if 'Quality' in line:
                                if "/100" in line:
-                                       #qual = line[line.index('Quality')+8:line.index('/100')]
                                        qual = line[line.index('Quality')+8:line.index('  Signal')]
                                else:
                                        qual = line[line.index('Quality')+8:line.index('Sig')]
@@ -474,8 +337,7 @@ class Status:
                                        data['quality'] = qual
                        if 'Signal level' in line:
                                if "dBm" in line:
-                                       signal = line[line.index('Signal level')+13 :line.index(' dBm')]
-                                       signal += " dBm"
+                                       signal = line[line.index('Signal level')+13 :line.index(' dBm')] + " dBm"
                                elif "/100" in line:
                                        if "Noise" in line:
                                                signal = line[line.index('Signal level')+13:line.index('  Noise')]
@@ -494,9 +356,10 @@ class Status:
                
                if self.WlanConsole is not None:
                        if len(self.WlanConsole.appContainers) == 0:
-                               print "self.wlaniface after loading:", self.wlaniface
-                               if callback is not None:
-                                       callback(True,self.wlaniface)
+                               print "[Wlan.py] self.wlaniface after loading:", self.wlaniface
+                               if self.statusCallback is not None:
+                                               self.statusCallback(True,self.wlaniface)
+                                               self.statusCallback = None
 
        def getAdapterAttribute(self, iface, attribute):
                self.iface = iface
index efec340..10213eb 100644 (file)
@@ -8,37 +8,40 @@ from Components.Sources.List import List
 from Components.MenuList import MenuList
 from Components.config import config, getConfigListEntry, ConfigYesNo, NoSave, ConfigSubsection, ConfigText, ConfigSelection, ConfigPassword
 from Components.ConfigList import ConfigListScreen
-from Components.Network import Network, iNetwork
+from Components.Network import iNetwork
 from Components.Console import Console
 from Plugins.Plugin import PluginDescriptor
 from os import system, path as os_path, listdir
 from Tools.Directories import resolveFilename, SCOPE_PLUGINS, SCOPE_SKIN_IMAGE
 from Tools.LoadPixmap import LoadPixmap
 from Tools.HardwareInfo import HardwareInfo
-from Wlan import Wlan, wpaSupplicant, iStatus
-import sha
+from Wlan import iWlan, wpaSupplicant, iStatus, getWlanConfigName
+import hashlib
+from time import time
+from os import urandom, system
+from re import escape as re_escape
 
 plugin_path = eEnv.resolve("${libdir}/enigma2/python/Plugins/SystemPlugins/WirelessLan")
 
+
 list = []
+list.append("Unencrypted")
 list.append("WEP")
 list.append("WPA")
-list.append("WPA2")
 list.append("WPA/WPA2")
+list.append("WPA2")
 
 weplist = []
 weplist.append("ASCII")
 weplist.append("HEX")
 
 config.plugins.wlan = ConfigSubsection()
-config.plugins.wlan.essid = NoSave(ConfigText(default = "home", fixed_size = False))
-config.plugins.wlan.hiddenessid = NoSave(ConfigText(default = "home", fixed_size = False))
+config.plugins.wlan.essid = NoSave(ConfigText(default = "", fixed_size = False))
+config.plugins.wlan.hiddenessid = NoSave(ConfigYesNo(default = False))
+config.plugins.wlan.encryption = NoSave(ConfigSelection(list, default = "WPA2"))
+config.plugins.wlan.wepkeytype = NoSave(ConfigSelection(weplist, default = "ASCII"))
+config.plugins.wlan.psk = NoSave(ConfigPassword(default = "", fixed_size = False))
 
-config.plugins.wlan.encryption = ConfigSubsection()
-config.plugins.wlan.encryption.enabled = NoSave(ConfigYesNo(default = False))
-config.plugins.wlan.encryption.type = NoSave(ConfigSelection(list, default = "WPA/WPA2" ))
-config.plugins.wlan.encryption.wepkeytype = NoSave(ConfigSelection(weplist, default = "ASCII"))
-config.plugins.wlan.encryption.psk = NoSave(ConfigPassword(default = "mysecurewlan", fixed_size = False))
 
 
 class WlanStatus(Screen):
@@ -46,20 +49,19 @@ class WlanStatus(Screen):
                <screen name="WlanStatus" position="center,center" size="560,400" title="Wireless Network State" >
                        <ePixmap pixmap="skin_default/buttons/red.png" position="0,0" size="140,40" alphatest="on" />
                        <widget source="key_red" render="Label" position="0,0" zPosition="1" size="140,40" font="Regular;20" halign="center" valign="center" backgroundColor="#9f1313" transparent="1" />
-       
-                       <widget source="LabelBSSID" render="Label" position="10,60" size="250,25" valign="left" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
-                       <widget source="LabelESSID" render="Label" position="10,100" size="250,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
-                       <widget source="LabelQuality" render="Label" position="10,140" size="250,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
-                       <widget source="LabelSignal" render="Label" position="10,180" size="250,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
-                       <widget source="LabelBitrate" render="Label" position="10,220" size="250,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
-                       <widget source="LabelEnc" render="Label" position="10,260" size="250,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
-                       
-                       <widget source="BSSID" render="Label" position="320,60" size="180,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
-                       <widget source="ESSID" render="Label" position="320,100" size="180,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
-                       <widget source="quality" render="Label" position="320,140" size="180,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
-                       <widget source="signal" render="Label" position="320,180" size="180,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
-                       <widget source="bitrate" render="Label" position="320,220" size="180,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
-                       <widget source="enc" render="Label" position="320,260" size="180,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+
+                       <widget source="LabelBSSID" render="Label" position="10,60" size="200,25" valign="left" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+                       <widget source="LabelESSID" render="Label" position="10,100" size="200,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+                       <widget source="LabelQuality" render="Label" position="10,140" size="200,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+                       <widget source="LabelSignal" render="Label" position="10,180" size="200,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+                       <widget source="LabelBitrate" render="Label" position="10,220" size="200,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+                       <widget source="LabelEnc" render="Label" position="10,260" size="200,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+                       <widget source="BSSID" render="Label" position="220,60" size="330,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+                       <widget source="ESSID" render="Label" position="220,100" size="330,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+                       <widget source="quality" render="Label" position="220,140" size="330,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+                       <widget source="signal" render="Label" position="220,180" size="330,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+                       <widget source="bitrate" render="Label" position="220,220" size="330,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
+                       <widget source="enc" render="Label" position="220,260" size="330,25" valign="center" font="Regular;20" transparent="1" foregroundColor="#FFFFFF" />
        
                        <ePixmap pixmap="skin_default/div-h.png" position="0,350" zPosition="1" size="560,2" />         
                        <widget source="IFtext" render="Label" position="10,355" size="120,21" zPosition="10" font="Regular;20" halign="left" backgroundColor="#25062748" transparent="1" />
@@ -105,7 +107,7 @@ class WlanStatus(Screen):
                }, -1)
                self.timer = eTimer()
                self.timer.timeout.get().append(self.resetList) 
-               self.onShown.append(lambda: self.timer.start(5000))
+               self.onShown.append(lambda: self.timer.start(8000))
                self.onLayoutFinish.append(self.layoutFinished)
                self.onClose.append(self.cleanup)
 
@@ -113,7 +115,7 @@ class WlanStatus(Screen):
                iStatus.stopWlanConsole()
                
        def layoutFinished(self):
-               self.setTitle(_("Wireless Network State"))
+               self.setTitle(_("Wireless network state"))
                
        def resetList(self):
                iStatus.getDataForInterface(self.iface,self.getInfoCB)
@@ -122,32 +124,65 @@ class WlanStatus(Screen):
                if data is not None:
                        if data is True:
                                if status is not None:
-                                       self["BSSID"].setText(status[self.iface]["acesspoint"])
-                                       self["ESSID"].setText(status[self.iface]["essid"])
-                                       self["quality"].setText(status[self.iface]["quality"])
-                                       self["signal"].setText(status[self.iface]["signal"])
-                                       self["bitrate"].setText(status[self.iface]["bitrate"])
-                                       self["enc"].setText(status[self.iface]["encryption"])
+                                       if status[self.iface]["essid"] == "off":
+                                               essid = _("No Connection")
+                                       else:
+                                               essid = status[self.iface]["essid"]
+                                       if status[self.iface]["accesspoint"] == "Not-Associated":
+                                               accesspoint = _("Not-Associated")
+                                               essid = _("No Connection")
+                                       else:
+                                               accesspoint = status[self.iface]["accesspoint"]
+                                       if self.has_key("BSSID"):
+                                               self["BSSID"].setText(accesspoint)
+                                       if self.has_key("ESSID"):
+                                               self["ESSID"].setText(essid)
+
+                                       quality = status[self.iface]["quality"]
+                                       if self.has_key("quality"):
+                                               self["quality"].setText(quality)
+                                               
+                                       if status[self.iface]["bitrate"] == '0':
+                                               bitrate = _("Unsupported")
+                                       else:
+                                               bitrate = str(status[self.iface]["bitrate"]) + " Mb/s"
+                                       if self.has_key("bitrate"):
+                                               self["bitrate"].setText(bitrate)                                        
+                                       
+                                       signal = status[self.iface]["signal"]
+                                       if self.has_key("signal"):
+                                               self["signal"].setText(signal)
+
+                                       if status[self.iface]["encryption"] == "off":
+                                               if accesspoint == "Not-Associated":
+                                                       encryption = _("Disabled")
+                                               else:
+                                                       encryption = _("Unsupported")
+                                       else:
+                                               encryption = _("Enabled")
+                                       if self.has_key("enc"):
+                                               self["enc"].setText(encryption)
                                        self.updateStatusLink(status)
 
        def exit(self):
                self.timer.stop()
-               self.close(True)        
+               self.close(True)
 
        def updateStatusbar(self):
-               self["BSSID"].setText(_("Please wait..."))
-               self["ESSID"].setText(_("Please wait..."))
-               self["quality"].setText(_("Please wait..."))
-               self["signal"].setText(_("Please wait..."))
-               self["bitrate"].setText(_("Please wait..."))
-               self["enc"].setText(_("Please wait..."))
+               wait_txt = _("Please wait...")
+               self["BSSID"].setText(wait_txt)
+               self["ESSID"].setText(wait_txt)
+               self["quality"].setText(wait_txt)
+               self["signal"].setText(wait_txt)
+               self["bitrate"].setText(wait_txt)
+               self["enc"].setText(wait_txt)
                self["IFtext"].setText(_("Network:"))
                self["IF"].setText(iNetwork.getFriendlyAdapterName(self.iface))
                self["Statustext"].setText(_("Link:"))
 
        def updateStatusLink(self,status):
                if status is not None:
-                       if status[self.iface]["acesspoint"] == "No Connection" or status[self.iface]["acesspoint"] == "Not-Associated" or status[self.iface]["acesspoint"] == False:
+                       if status[self.iface]["essid"] == "off" or status[self.iface]["accesspoint"] == "Not-Associated" or status[self.iface]["accesspoint"] == False:
                                self["statuspic"].setPixmapNum(1)
                        else:
                                self["statuspic"].setPixmapNum(0)
@@ -217,6 +252,8 @@ class WlanScan(Screen):
                        "red": self.cancel,
                        "green": self.select,
                })
+               iWlan.setInterface(self.iface)
+               self.w = iWlan.getInterface()
                self.onLayoutFinish.append(self.layoutFinished)
                self.getAccessPoints(refresh = False)
                
@@ -226,42 +263,24 @@ class WlanScan(Screen):
        def select(self):
                cur = self["list"].getCurrent()
                if cur is not None:
+                       iWlan.stopGetNetworkList()
                        self.rescanTimer.stop()
                        del self.rescanTimer
-                       if cur[1] is not None:
-                               if cur[1] == 'hidden...':
-                                       essid = cur[1]
-                               else:
-                                       essid = cur[0]
-                               self.close(essid,self.getWlanList())
+                       if cur[0] is not None:
+                               self.close(cur[0])
                        else:
-                               self.close(None,None)
+                               self.close(None)
                else:
-                       self.rescanTimer.stop()
-                       del self.rescanTimer
-                       self.close(None,None)
-       
-       def WlanSetupClosed(self, *ret):
-               if ret[0] == 2:
+                       iWlan.stopGetNetworkList()
                        self.rescanTimer.stop()
                        del self.rescanTimer
                        self.close(None)
        
        def cancel(self):
-               if self.oldInterfaceState is False:
-                       iNetwork.setAdapterAttribute(self.iface, "up", False)
-                       iNetwork.deactivateInterface(self.iface,self.deactivateInterfaceCB)
-               else:
-                       self.rescanTimer.stop()
-                       del self.rescanTimer
-                       self.close(None)
-
-       def deactivateInterfaceCB(self,data):
-               if data is not None:
-                       if data is True:
-                               self.rescanTimer.stop()
-                               del self.rescanTimer
-                               self.close(None)
+               iWlan.stopGetNetworkList()
+               self.rescanTimer.stop()
+               del self.rescanTimer
+               self.close(None)
 
        def rescanTimerFired(self):
                self.rescanTimer.stop()
@@ -270,10 +289,7 @@ class WlanScan(Screen):
        def buildEntryComponent(self, essid, bssid, encrypted, iface, maxrate, signal):
                divpng = LoadPixmap(cached=True, path=resolveFilename(SCOPE_SKIN_IMAGE, "skin_default/div-h.png"))
                encryption = encrypted and _("Yes") or _("No")
-               if bssid == 'hidden...':
-                       return((essid, bssid, None, None, None, None, divpng))
-               else:                                   
-                       return((essid, bssid, _("Signal: ") + str(signal), _("Max. Bitrate: ") + str(maxrate), _("Encrypted: ") + encryption, _("Interface: ") + str(iface), divpng))
+               return((essid, bssid, _("Signal: ") + str(signal), _("Max. Bitrate: ") + str(maxrate), _("Encrypted: ") + encryption, _("Interface: ") + str(iface), divpng))
 
        def updateAPList(self):
                newList = []
@@ -290,20 +306,19 @@ class WlanScan(Screen):
                                tmpList.append(data)
 
                if len(tmpList):
-                       if "hidden..." not in tmpList:
-                               tmpList.append( ( _("enter hidden network SSID"), "hidden...", True, self.iface, _("unavailable"), "" ) )
-       
                        for entry in tmpList:
                                self.newAPList.append(self.buildEntryComponent( entry[0], entry[1], entry[2], entry[3], entry[4], entry[5] ))
        
                        currentListEntry = self["list"].getCurrent()
-                       idx = 0
-                       for entry in self.newAPList:
-                               if entry[0] == currentListEntry[0]:
-                                       newListIndex = idx
-                               idx +=1
+                       if currentListEntry is not None:
+                               idx = 0
+                               for entry in self.newAPList:
+                                       if entry[0] == currentListEntry[0]:
+                                               newListIndex = idx
+                                       idx +=1
                        self['list'].setList(self.newAPList)
-                       self["list"].setIndex(newListIndex)
+                       if newListIndex is not None:
+                               self["list"].setIndex(newListIndex)
                        self["list"].updateList(self.newAPList)
                        self.listLength = len(self.newAPList)
                        self.buildWlanList()
@@ -312,8 +327,7 @@ class WlanScan(Screen):
        def getAccessPoints(self, refresh = False):
                self.APList = []
                self.cleanList = []
-               self.w = Wlan(self.iface)
-               aps = self.w.getNetworkList()
+               aps = iWlan.getNetworkList()
                if aps is not None:
                        print "[WirelessLan.py] got Accespoints!"
                        tmpList = []
@@ -336,9 +350,6 @@ class WlanScan(Screen):
                                else:
                                        self.oldlist[entry[0]]['data'] = entry
                
-               if "hidden..." not in self.cleanList:
-                       self.cleanList.append( ( _("enter hidden network SSID"), "hidden...", True, self.iface, _("unavailable"), "" ) )
-
                for entry in self.cleanList:
                        self.APList.append(self.buildEntryComponent( entry[0], entry[1], entry[2], entry[3], entry[4], entry[5] ))
                
@@ -351,20 +362,17 @@ class WlanScan(Screen):
 
        def setInfo(self):
                length = self.getLength()
-               if length <= 1:
-                       self["info"].setText(_("No wireless networks found! Please refresh."))
-               elif length == 2:
+               if length == 0:
+                       self["info"].setText(_("No wireless networks found! Searching..."))
+               elif length == 1:
                        self["info"].setText(_("1 wireless network found!"))
                else:
-                       self["info"].setText(str(length-1)+_(" wireless networks found!"))
+                       self["info"].setText(str(length)+_(" wireless networks found!"))
 
        def buildWlanList(self):
                self.WlanList = []
                for entry in self['list'].list:
-                       if entry[1] == "hidden...":
-                               self.WlanList.append(( "hidden...",_("enter hidden network SSID") ))#continue
-                       else:
-                               self.WlanList.append( (entry[0], entry[0]) )
+                       self.WlanList.append( (entry[0], entry[0]) )
 
        def getLength(self):
                return self.listLength          
@@ -391,7 +399,7 @@ def decrypt_block(src, mod):
        if len(src) != 128 and len(src) != 202:
                return None
        dest = rsa_pub1024(src[:128], mod)
-       hash = sha.new(dest[1:107])
+       hash = hashlib.sha1(dest[1:107])
        if len(src) == 202:
                hash.update(src[131:192])       
        result = hash.digest()
@@ -399,65 +407,69 @@ def decrypt_block(src, mod):
                return dest
        return None
 
-def validate_cert(cert, key):
+def validate_certificate(cert, key):
        buf = decrypt_block(cert[8:], key) 
        if buf is None:
                return None
        return buf[36:107] + cert[139:196]
 
-def read_random():
+def get_random():
        try:
-               fd = open("/dev/urandom", "r")
-               buf = fd.read(8)
-               fd.close()
-               return buf
+               xor = lambda a,b: ''.join(chr(ord(c)^ord(d)) for c,d in zip(a,b*100))
+               random = urandom(8)
+               x = str(time())[-8:]
+               result = xor(random, x)
+                               
+               return result
        except:
                return None
 
 def WlanStatusScreenMain(session, iface):
        session.open(WlanStatus, iface)
 
-
 def callFunction(iface):
-       w = Wlan(iface)
-       i = w.getWirelessInterfaces()
+       iWlan.setInterface(iface)
+       i = iWlan.getWirelessInterfaces()
        if i:
-               if iface in i:
+               if iface in i or iNetwork.isWirelessInterface(iface):
                        return WlanStatusScreenMain
+               return None
        return None
 
-
 def configStrings(iface):
-       hardware_info = HardwareInfo()
-       if  hardware_info.device_name != "dm7025":
+       try:
+               device = open("/proc/stb/info/model", "r").readline().strip()
+       except:
+               device = ""     
+       if device != "dm7025":
                rootkey = ['\x9f', '|', '\xe4', 'G', '\xc9', '\xb4', '\xf4', '#', '&', '\xce', '\xb3', '\xfe', '\xda', '\xc9', 'U', '`', '\xd8', '\x8c', 's', 'o', '\x90', '\x9b', '\\', 'b', '\xc0', '\x89', '\xd1', '\x8c', '\x9e', 'J', 'T', '\xc5', 'X', '\xa1', '\xb8', '\x13', '5', 'E', '\x02', '\xc9', '\xb2', '\xe6', 't', '\x89', '\xde', '\xcd', '\x9d', '\x11', '\xdd', '\xc7', '\xf4', '\xe4', '\xe4', '\xbc', '\xdb', '\x9c', '\xea', '}', '\xad', '\xda', 't', 'r', '\x9b', '\xdc', '\xbc', '\x18', '3', '\xe7', '\xaf', '|', '\xae', '\x0c', '\xe3', '\xb5', '\x84', '\x8d', '\r', '\x8d', '\x9d', '2', '\xd0', '\xce', '\xd5', 'q', '\t', '\x84', 'c', '\xa8', ')', '\x99', '\xdc', '<', '"', 'x', '\xe8', '\x87', '\x8f', '\x02', ';', 'S', 'm', '\xd5', '\xf0', '\xa3', '_', '\xb7', 'T', '\t', '\xde', '\xa7', '\xf1', '\xc9', '\xae', '\x8a', '\xd7', '\xd2', '\xcf', '\xb2', '.', '\x13', '\xfb', '\xac', 'j', '\xdf', '\xb1', '\x1d', ':', '?']
                etpm = eTPM()
                l2cert = etpm.getCert(eTPM.TPMD_DT_LEVEL2_CERT)
                if l2cert is None:
                        return
-               l2key = validate_cert(l2cert, rootkey)
+               l2key = validate_certificate(l2cert, rootkey)
                if l2key is None:
                        return
                l3cert = etpm.getCert(eTPM.TPMD_DT_LEVEL3_CERT)
                if l3cert is None:
-                       print "better run the genuine dreambox plugin"
                        return
-               l3key = validate_cert(l3cert, l2key)
+               l3key = validate_certificate(l3cert, l2key)
                if l3key is None:
                        return
-               rnd = read_random()
+               rnd = get_random()
                if rnd is None:
                        return
                val = etpm.challenge(rnd)
                result = decrypt_block(val, l3key)
-       if hardware_info.device_name == "dm7025" or result[80:88] == rnd:
+       if device == "dm7025" or result[80:88] == rnd:
                driver = iNetwork.detectWlanModule(iface)
        else:
                driver = 'dreambox'
+       print 'Using "%s" as wpa-supplicant driver' % (driver)
        ret = ""
-       if driver == 'madwifi' and config.plugins.wlan.essid.value == "hidden...":
-               ret += "\tpre-up iwconfig " + iface + " essid \"" + config.plugins.wlan.hiddenessid.value + "\" || true\n"
-       ret += "\tpre-up wpa_supplicant -i" + iface + " -c/etc/wpa_supplicant.conf -B -dd -D" + driver + " || true\n"
+       if driver == 'madwifi' and config.plugins.wlan.hiddenessid.value:
+               ret += "\tpre-up iwconfig " + iface + " essid \"" + re_escape(config.plugins.wlan.essid.value) + "\" || true\n"
+       ret += "\tpre-up wpa_supplicant -i" + iface + " -c" + getWlanConfigName(iface) + " -B -dd -D" + driver + " || true\n"
        ret += "\tpre-down wpa_cli -i" + iface + " terminate || true\n"
        return ret
 
index de2fa99..4b15ee0 100755 (executable)
@@ -11,7 +11,7 @@ from Components.Sources.List import List
 from Components.Label import Label,MultiColorLabel
 from Components.Pixmap import Pixmap,MultiPixmap
 from Components.MenuList import MenuList
-from Components.config import config, ConfigYesNo, ConfigIP, NoSave, ConfigText, ConfigPassword, ConfigSelection, getConfigListEntry, ConfigNothing
+from Components.config import config, ConfigYesNo, ConfigIP, NoSave, ConfigText, ConfigPassword, ConfigSelection, getConfigListEntry, ConfigNothing, ConfigBoolean
 from Components.ConfigList import ConfigListScreen
 from Components.PluginComponent import plugins
 from Components.MultiContent import MultiContentEntryText, MultiContentEntryPixmapAlphaTest
@@ -42,11 +42,6 @@ class NetworkAdapterSelection(Screen,HelpableScreen):
                self["key_blue"] = StaticText("")
                self["introduction"] = StaticText(self.edittext)
                
-               self.adapters = [(iNetwork.getFriendlyAdapterName(x),x) for x in iNetwork.getAdapterList()]
-               
-               if not self.adapters:
-                       self.onFirstExecBegin.append(self.NetworkFallback)
-                       
                self["OkCancelActions"] = HelpableActionMap(self, "OkCancelActions",
                        {
                        "cancel": (self.close, _("exit network interface list")),
@@ -65,6 +60,14 @@ class NetworkAdapterSelection(Screen,HelpableScreen):
                        "yellow": (self.setDefaultInterface, [_("Set interface as default Interface"),_("* Only available if more than one interface is active.")] ),
                        })
 
+               self.adapters = [(iNetwork.getFriendlyAdapterName(x),x) for x in iNetwork.getAdapterList()]
+
+               if not self.adapters:
+                       self.adapters = [(iNetwork.getFriendlyAdapterName(x),x) for x in iNetwork.getConfiguredAdapters()]
+
+               if len(self.adapters) == 0:
+                       self.adapters = [(iNetwork.getFriendlyAdapterName(x),x) for x in iNetwork.getInstalledAdapters()]
+
                self.list = []
                self["list"] = List(self.list)
                self.updateList()
@@ -80,14 +83,14 @@ class NetworkAdapterSelection(Screen,HelpableScreen):
                description = None
                interfacepng = None
 
-               if iface in iNetwork.lan_interfaces:
+               if not iNetwork.isWirelessInterface(iface):
                        if active is True:
                                interfacepng = LoadPixmap(resolveFilename(SCOPE_CURRENT_SKIN, "skin_default/icons/network_wired-active.png"))
                        elif active is False:
                                interfacepng = LoadPixmap(resolveFilename(SCOPE_CURRENT_SKIN, "skin_default/icons/network_wired-inactive.png"))
                        else:
                                interfacepng = LoadPixmap(resolveFilename(SCOPE_CURRENT_SKIN, "skin_default/icons/network_wired.png"))
-               elif iface in iNetwork.wlan_interfaces:
+               elif iNetwork.isWirelessInterface(iface):
                        if active is True:
                                interfacepng = LoadPixmap(resolveFilename(SCOPE_CURRENT_SKIN, "skin_default/icons/network_wireless-active.png"))
                        elif active is False:
@@ -132,19 +135,16 @@ class NetworkAdapterSelection(Screen,HelpableScreen):
                        fp.close()
                        default_gw = result
                                        
-               if len(self.adapters) == 0: # no interface available => display only eth0
-                       self.list.append(self.buildInterfaceList("eth0",iNetwork.getFriendlyAdapterName('eth0'),True,True ))
-               else:
-                       for x in self.adapters:
-                               if x[1] == default_gw:
-                                       default_int = True
-                               else:
-                                       default_int = False
-                               if iNetwork.getAdapterAttribute(x[1], 'up') is True:
-                                       active_int = True
-                               else:
-                                       active_int = False
-                               self.list.append(self.buildInterfaceList(x[1],_(x[0]),default_int,active_int ))
+               for x in self.adapters:
+                       if x[1] == default_gw:
+                               default_int = True
+                       else:
+                               default_int = False
+                       if iNetwork.getAdapterAttribute(x[1], 'up') is True:
+                               active_int = True
+                       else:
+                               active_int = False
+                       self.list.append(self.buildInterfaceList(x[1],_(x[0]),default_int,active_int ))
                
                if os_path.exists(resolveFilename(SCOPE_PLUGINS, "SystemPlugins/NetworkWizard/networkwizard.xml")):
                        self["key_blue"].setText(_("NetworkWizard"))
@@ -179,22 +179,6 @@ class NetworkAdapterSelection(Screen,HelpableScreen):
                else:
                        self.updateList()
 
-       def NetworkFallback(self):
-               if iNetwork.configuredNetworkAdapters.has_key('wlan0') is True:
-                       self.session.openWithCallback(self.ErrorMessageClosed, MessageBox, self.wlan_errortext, type = MessageBox.TYPE_INFO,timeout = 10)
-               if iNetwork.configuredNetworkAdapters.has_key('ath0') is True:
-                       self.session.openWithCallback(self.ErrorMessageClosed, MessageBox, self.wlan_errortext, type = MessageBox.TYPE_INFO,timeout = 10)
-               else:
-                       self.session.openWithCallback(self.ErrorMessageClosed, MessageBox, self.lan_errortext, type = MessageBox.TYPE_INFO,timeout = 10)
-
-       def ErrorMessageClosed(self, *ret):
-               if iNetwork.configuredNetworkAdapters.has_key('wlan0') is True:
-                       self.session.openWithCallback(self.AdapterSetupClosed, AdapterSetupConfiguration, 'wlan0')
-               elif iNetwork.configuredNetworkAdapters.has_key('ath0') is True:
-                       self.session.openWithCallback(self.AdapterSetupClosed, AdapterSetupConfiguration, 'ath0')
-               else:
-                       self.session.openWithCallback(self.AdapterSetupClosed, AdapterSetupConfiguration, 'eth0')
-
        def cleanup(self):
                iNetwork.stopLinkStateConsole()
                iNetwork.stopRestartConsole()
@@ -312,18 +296,17 @@ class NameserverSetup(Screen, ConfigListScreen, HelpableScreen):
 
 
 class AdapterSetup(Screen, ConfigListScreen, HelpableScreen):
-       def __init__(self, session, networkinfo, essid=None, aplist=None):
+       def __init__(self, session, networkinfo, essid=None):
                Screen.__init__(self, session)
                HelpableScreen.__init__(self)
                self.session = session
                if isinstance(networkinfo, (list, tuple)):
                        self.iface = networkinfo[0]
                        self.essid = networkinfo[1]
-                       self.aplist = networkinfo[2]
                else:
                        self.iface = networkinfo
                        self.essid = essid
-                       self.aplist = aplist
+                       
                self.extended = None
                self.applyConfigRef = None
                self.finished_cb = None
@@ -414,62 +397,36 @@ class AdapterSetup(Screen, ConfigListScreen, HelpableScreen):
                self.gatewayEntry = None
                self.hiddenSSID = None
                self.wlanSSID = None
-               self.encryptionEnabled = None
-               self.encryptionKey = None
+               self.encryption = None
                self.encryptionType = None
-               self.nwlist = None
+               self.encryptionKey = None
                self.encryptionlist = None
                self.weplist = None
                self.wsconfig = None
                self.default = None
 
-               if self.iface in iNetwork.wlan_interfaces:
-                       from Plugins.SystemPlugins.WirelessLan.Wlan import wpaSupplicant,Wlan
-                       self.w = Wlan(self.iface)
+               if iNetwork.isWirelessInterface(self.iface):
+                       from Plugins.SystemPlugins.WirelessLan.Wlan import wpaSupplicant
                        self.ws = wpaSupplicant()
                        self.encryptionlist = []
+                       self.encryptionlist.append(("Unencrypted", _("Unencrypted")))
                        self.encryptionlist.append(("WEP", _("WEP")))
                        self.encryptionlist.append(("WPA", _("WPA")))
-                       self.encryptionlist.append(("WPA2", _("WPA2")))
                        self.encryptionlist.append(("WPA/WPA2", _("WPA or WPA2")))
+                       self.encryptionlist.append(("WPA2", _("WPA2")))
                        self.weplist = []
                        self.weplist.append("ASCII")
                        self.weplist.append("HEX")
-                       if self.aplist is not None:
-                               self.nwlist = self.aplist
-                               self.nwlist.sort(key = lambda x: x[0])
-                       else:
-                               self.nwlist = []
-                               self.aps = None
-                               try:
-                                       self.aps = self.w.getNetworkList()
-                                       if self.aps is not None:
-                                               for ap in self.aps:
-                                                       a = self.aps[ap]
-                                                       if a['active']:
-                                                               if a['essid'] != '':
-                                                                       self.nwlist.append((a['essid'],a['essid']))
-                                       self.nwlist.sort(key = lambda x: x[0])
-                               except:
-                                       self.nwlist.append(("No Networks found",_("No Networks found")))
-
-                       self.wsconfig = self.ws.loadConfig()
-                       if self.essid is not None: # ssid from wlan scan
-                               self.default = self.essid
-                       else:
-                               self.default = self.wsconfig['ssid']
 
-                       if "hidden..." not in self.nwlist:
-                               self.nwlist.append(("hidden...",_("enter hidden network SSID")))
-                       if self.default not in self.nwlist:
-                               self.nwlist.append((self.default,self.default))
-                       config.plugins.wlan.essid = NoSave(ConfigSelection(self.nwlist, default = self.default ))
-                       config.plugins.wlan.hiddenessid = NoSave(ConfigText(default = self.wsconfig['hiddenessid'], visible_width = 50, fixed_size = False))
+                       self.wsconfig = self.ws.loadConfig(self.iface)
+                       if self.essid is None:
+                               self.essid = self.wsconfig['ssid']
 
-                       config.plugins.wlan.encryption.enabled = NoSave(ConfigYesNo(default = self.wsconfig['encryption'] ))
-                       config.plugins.wlan.encryption.type = NoSave(ConfigSelection(self.encryptionlist, default = self.wsconfig['encryption_type'] ))
-                       config.plugins.wlan.encryption.wepkeytype = NoSave(ConfigSelection(self.weplist, default = self.wsconfig['encryption_wepkeytype'] ))
-                       config.plugins.wlan.encryption.psk = NoSave(ConfigPassword(default = self.wsconfig['key'], visible_width = 50, fixed_size = False))
+                       config.plugins.wlan.hiddenessid = NoSave(ConfigYesNo(default = self.wsconfig['hiddenessid']))
+                       config.plugins.wlan.essid = NoSave(ConfigText(default = self.essid, visible_width = 50, fixed_size = False))
+                       config.plugins.wlan.encryption = NoSave(ConfigSelection(self.encryptionlist, default = self.wsconfig['encryption'] ))
+                       config.plugins.wlan.wepkeytype = NoSave(ConfigSelection(self.weplist, default = self.wsconfig['wepkeytype'] ))
+                       config.plugins.wlan.psk = NoSave(ConfigPassword(default = self.wsconfig['key'], visible_width = 50, fixed_size = False))
 
                self.activateInterfaceEntry = NoSave(ConfigYesNo(default=iNetwork.getAdapterAttribute(self.iface, "up") or False))
                self.dhcpConfigEntry = NoSave(ConfigYesNo(default=iNetwork.getAdapterAttribute(self.iface, "dhcp") or False))
@@ -502,6 +459,7 @@ class AdapterSetup(Screen, ConfigListScreen, HelpableScreen):
                                        self.list.append(getConfigListEntry(_('Gateway'), self.gatewayConfigEntry))
 
                        self.extended = None
+                       self.configStrings = None
                        for p in plugins.getPlugins(PluginDescriptor.WHERE_NETWORKSETUP):
                                callFnc = p.__call__["ifaceSupported"](self.iface)
                                if callFnc is not None:
@@ -509,30 +467,21 @@ class AdapterSetup(Screen, ConfigListScreen, HelpableScreen):
                                                self.extended = callFnc
                                                if p.__call__.has_key("configStrings"):
                                                        self.configStrings = p.__call__["configStrings"]
-                                               else:
-                                                       self.configStrings = None
-                                               if config.plugins.wlan.essid.value == 'hidden...':
-                                                       self.wlanSSID = getConfigListEntry(_("Network SSID"), config.plugins.wlan.essid)
-                                                       self.list.append(self.wlanSSID)
-                                                       self.hiddenSSID = getConfigListEntry(_("Hidden network SSID"), config.plugins.wlan.hiddenessid)
-                                                       self.list.append(self.hiddenSSID)
-                                               else:
-                                                       self.wlanSSID = getConfigListEntry(_("Network SSID"), config.plugins.wlan.essid)
-                                                       self.list.append(self.wlanSSID)
-                                               self.encryptionEnabled = getConfigListEntry(_("Encryption"), config.plugins.wlan.encryption.enabled)
-                                               self.list.append(self.encryptionEnabled)
-                                               
-                                               if config.plugins.wlan.encryption.enabled.value:
-                                                       self.encryptionType = getConfigListEntry(_("Encryption Type"), config.plugins.wlan.encryption.type)
-                                                       self.list.append(self.encryptionType)
-                                                       if config.plugins.wlan.encryption.type.value == 'WEP':
-                                                               self.list.append(getConfigListEntry(_("Encryption Keytype"), config.plugins.wlan.encryption.wepkeytype))
-                                                               self.encryptionKey = getConfigListEntry(_("Encryption Key"), config.plugins.wlan.encryption.psk)
-                                                               self.list.append(self.encryptionKey)
-                                                       else:
-                                                               self.encryptionKey = getConfigListEntry(_("Encryption Key"), config.plugins.wlan.encryption.psk)
-                                                               self.list.append(self.encryptionKey)
 
+                                               self.hiddenSSID = getConfigListEntry(_("Hidden network"), config.plugins.wlan.hiddenessid)
+                                               self.list.append(self.hiddenSSID)
+                                               self.wlanSSID = getConfigListEntry(_("Networkname (SSID)"), config.plugins.wlan.essid)
+                                               self.list.append(self.wlanSSID)
+                                               self.encryption = getConfigListEntry(_("Encryption"), config.plugins.wlan.encryption)
+                                               self.list.append(self.encryption)                                               
+
+                                               self.encryptionType = getConfigListEntry(_("Encryption Keytype"), config.plugins.wlan.wepkeytype)
+                                               self.encryptionKey = getConfigListEntry(_("Encryption Key"), config.plugins.wlan.psk)
+                                               
+                                               if config.plugins.wlan.encryption.value != "Unencrypted":
+                                                       if config.plugins.wlan.encryption.value == 'WEP':
+                                                               self.list.append(self.encryptionType)
+                                                       self.list.append(self.encryptionKey)
                self["config"].list = self.list
                self["config"].l.setList(self.list)
 
@@ -546,12 +495,8 @@ class AdapterSetup(Screen, ConfigListScreen, HelpableScreen):
                        self.createSetup()
                if self["config"].getCurrent() == self.gatewayEntry:
                        self.createSetup()
-               if self.iface in iNetwork.wlan_interfaces:
-                       if self["config"].getCurrent() == self.wlanSSID:
-                               self.createSetup()
-                       if self["config"].getCurrent() == self.encryptionEnabled:
-                               self.createSetup()
-                       if self["config"].getCurrent() == self.encryptionType:
+               if iNetwork.isWirelessInterface(self.iface):
+                       if self["config"].getCurrent() == self.encryption:
                                self.createSetup()
 
        def keyLeft(self):
@@ -576,7 +521,7 @@ class AdapterSetup(Screen, ConfigListScreen, HelpableScreen):
                if (ret == True):               
                        num_configured_if = len(iNetwork.getConfiguredAdapters())
                        if num_configured_if >= 1:
-                               if num_configured_if == 1 and self.iface in iNetwork.getConfiguredAdapters():
+                               if self.iface in iNetwork.getConfiguredAdapters():      
                                        self.applyConfig(True)
                                else:
                                        self.session.openWithCallback(self.secondIfaceFoundCB, MessageBox, _("A second configured interface has been found.\n\nDo you want to disable the second network interface?"), default = True)
@@ -594,11 +539,15 @@ class AdapterSetup(Screen, ConfigListScreen, HelpableScreen):
                                if interface == self.iface:
                                        continue
                                iNetwork.setAdapterAttribute(interface, "up", False)
-                               iNetwork.deactivateInterface(interface)
-                               self.applyConfig(True)
+                       iNetwork.deactivateInterface(configuredInterfaces,self.deactivateSecondInterfaceCB)
+
+       def deactivateSecondInterfaceCB(self, data):
+               if data is True:
+                       self.applyConfig(True)
 
        def applyConfig(self, ret = False):
                if (ret == True):
+                       self.applyConfigRef = None
                        iNetwork.setAdapterAttribute(self.iface, "up", self.activateInterfaceEntry.value)
                        iNetwork.setAdapterAttribute(self.iface, "dhcp", self.dhcpConfigEntry.value)
                        iNetwork.setAdapterAttribute(self.iface, "ip", self.ipConfigEntry.value)
@@ -607,17 +556,33 @@ class AdapterSetup(Screen, ConfigListScreen, HelpableScreen):
                                iNetwork.setAdapterAttribute(self.iface, "gateway", self.gatewayConfigEntry.value)
                        else:
                                iNetwork.removeAdapterAttribute(self.iface, "gateway")
-                       if self.extended is not None and self.configStrings is not None:
+
+                       if (self.extended is not None and self.configStrings is not None):
                                iNetwork.setAdapterAttribute(self.iface, "configStrings", self.configStrings(self.iface))
-                               self.ws.writeConfig()
+                               self.ws.writeConfig(self.iface)
+                               
                        if self.activateInterfaceEntry.value is False:
-                               iNetwork.deactivateInterface(self.iface)
-                       iNetwork.writeNetworkConfig()
-                       iNetwork.restartNetwork(self.applyConfigDataAvail)
-                       self.applyConfigRef = self.session.openWithCallback(self.applyConfigfinishedCB, MessageBox, _("Please wait for activation of your network configuration..."), type = MessageBox.TYPE_INFO, enable_input = False)
+                               iNetwork.deactivateInterface(self.iface,self.deactivateInterfaceCB)
+                               iNetwork.writeNetworkConfig()
+                               self.applyConfigRef = self.session.openWithCallback(self.applyConfigfinishedCB, MessageBox, _("Please wait for activation of your network configuration..."), type = MessageBox.TYPE_INFO, enable_input = False)
+                       else:
+                               if self.oldInterfaceState is False:
+                                       iNetwork.activateInterface(self.iface,self.deactivateInterfaceCB)
+                               else:
+                                       iNetwork.deactivateInterface(self.iface,self.activateInterfaceCB)
+                               iNetwork.writeNetworkConfig()
+                               self.applyConfigRef = self.session.openWithCallback(self.applyConfigfinishedCB, MessageBox, _("Please wait for activation of your network configuration..."), type = MessageBox.TYPE_INFO, enable_input = False)
                else:
                        self.keyCancel()
 
+       def deactivateInterfaceCB(self, data):
+               if data is True:
+                       self.applyConfigDataAvail(True)
+
+       def activateInterfaceCB(self, data):
+               if data is True:
+                       iNetwork.activateInterface(self.iface,self.applyConfigDataAvail)
+
        def applyConfigDataAvail(self, data):
                if data is True:
                        iNetwork.getInterfaces(self.getInterfacesDataAvail)
@@ -675,10 +640,10 @@ class AdapterSetup(Screen, ConfigListScreen, HelpableScreen):
                
        def hideInputHelp(self):
                current = self["config"].getCurrent()
-               if current == self.hiddenSSID and config.plugins.wlan.essid.value == 'hidden...':
+               if current == self.wlanSSID:
                        if current[1].help_window.instance is not None:
                                current[1].help_window.instance.hide()
-               elif current == self.encryptionKey and config.plugins.wlan.encryption.enabled.value:
+               elif current == self.encryptionKey and config.plugins.wlan.encryption.value is not "Unencrypted":
                        if current[1].help_window.instance is not None:
                                current[1].help_window.instance.hide()
 
@@ -703,7 +668,8 @@ class AdapterSetupConfiguration(Screen, HelpableScreen):
                
                self.oktext = _("Press OK on your remote control to continue.")
                self.reboottext = _("Your Dreambox will restart after pressing OK on your remote control.")
-               self.errortext = _("No working wireless network interface found.\n Please verify that you have attached a compatible WLAN device or enable your local network interface.")      
+               self.errortext = _("No working wireless network interface found.\n Please verify that you have attached a compatible WLAN device or enable your local network interface.")
+               self.missingwlanplugintxt = _("The wireless LAN plugin is not installed!\nPlease install it.")
                
                self["WizardActions"] = HelpableActionMap(self, "WizardActions",
                        {
@@ -739,30 +705,39 @@ class AdapterSetupConfiguration(Screen, HelpableScreen):
                self.onLayoutFinish.append(self.layoutFinished)
                self.onClose.append(self.cleanup)
 
+
+       def queryWirelessDevice(self,iface):
+               try:
+                       from pythonwifi.iwlibs import Wireless
+                       import errno
+               except ImportError:
+                       return False
+               else:
+                       try:
+                               ifobj = Wireless(iface) # a Wireless NIC Object
+                               wlanresponse = ifobj.getAPaddr()
+                       except IOError, (error_no, error_str):
+                               if error_no in (errno.EOPNOTSUPP, errno.ENODEV, errno.EPERM):
+                                       return False
+                               else:
+                                       print "error: ",error_no,error_str
+                                       return True
+                       else:
+                               return True
+
        def ok(self):
                self.cleanup()
                if self["menulist"].getCurrent()[1] == 'edit':
-                       if self.iface in iNetwork.wlan_interfaces:
+                       if iNetwork.isWirelessInterface(self.iface):
                                try:
                                        from Plugins.SystemPlugins.WirelessLan.plugin import WlanScan
-                                       from pythonwifi.iwlibs import Wireless
                                except ImportError:
-                                       self.session.open(MessageBox, _("The wireless LAN plugin is not installed!\nPlease install it."), type = MessageBox.TYPE_INFO,timeout = 10 )
+                                       self.session.open(MessageBox, self.missingwlanplugintxt, type = MessageBox.TYPE_INFO,timeout = 10 )
                                else:
-                                       ifobj = Wireless(self.iface) # a Wireless NIC Object
-                                       try:
-                                               self.wlanresponse = ifobj.getAPaddr()
-                                       except IOError:
-                                               self.wlanresponse = ifobj.getStatistics()
-                                       if self.wlanresponse:
-                                               if self.wlanresponse[0] not in (19,95): # 19 = 'No such device', 95 = 'Operation not supported'
-                                                       self.session.openWithCallback(self.AdapterSetupClosed, AdapterSetup,self.iface)
-                                               else:
-                                                       # Display Wlan not available Message
-                                                       self.showErrorMessage()
+                                       if self.queryWirelessDevice(self.iface):
+                                               self.session.openWithCallback(self.AdapterSetupClosed, AdapterSetup,self.iface)
                                        else:
-                                               # Display Wlan not available Message
-                                               self.showErrorMessage()
+                                               self.showErrorMessage() # Display Wlan not available Message
                        else:
                                self.session.openWithCallback(self.AdapterSetupClosed, AdapterSetup,self.iface)
                if self["menulist"].getCurrent()[1] == 'test':
@@ -772,45 +747,23 @@ class AdapterSetupConfiguration(Screen, HelpableScreen):
                if self["menulist"].getCurrent()[1] == 'scanwlan':
                        try:
                                from Plugins.SystemPlugins.WirelessLan.plugin import WlanScan
-                               from pythonwifi.iwlibs import Wireless
                        except ImportError:
-                               self.session.open(MessageBox, _("The wireless LAN plugin is not installed!\nPlease install it."), type = MessageBox.TYPE_INFO,timeout = 10 )
+                               self.session.open(MessageBox, self.missingwlanplugintxt, type = MessageBox.TYPE_INFO,timeout = 10 )
                        else:
-                               ifobj = Wireless(self.iface) # a Wireless NIC Object
-                               try:
-                                       self.wlanresponse = ifobj.getAPaddr()
-                               except IOError:
-                                       self.wlanresponse = ifobj.getStatistics()
-                               if self.wlanresponse:
-                                       if self.wlanresponse[0] not in (19,95): # 19 = 'No such device', 95 = 'Operation not supported'
-                                               self.session.openWithCallback(self.WlanScanClosed, WlanScan, self.iface)
-                                       else:
-                                               # Display Wlan not available Message
-                                               self.showErrorMessage()
+                               if self.queryWirelessDevice(self.iface):
+                                       self.session.openWithCallback(self.WlanScanClosed, WlanScan, self.iface)
                                else:
-                                       # Display Wlan not available Message
-                                       self.showErrorMessage()
+                                       self.showErrorMessage() # Display Wlan not available Message
                if self["menulist"].getCurrent()[1] == 'wlanstatus':
                        try:
                                from Plugins.SystemPlugins.WirelessLan.plugin import WlanStatus
-                               from pythonwifi.iwlibs import Wireless
                        except ImportError:
-                               self.session.open(MessageBox, _("The wireless LAN plugin is not installed!\nPlease install it."), type = MessageBox.TYPE_INFO,timeout = 10 )
-                       else:   
-                               ifobj = Wireless(self.iface) # a Wireless NIC Object
-                               try:
-                                       self.wlanresponse = ifobj.getAPaddr()
-                               except IOError:
-                                       self.wlanresponse = ifobj.getStatistics()
-                               if self.wlanresponse:
-                                       if self.wlanresponse[0] not in (19,95): # 19 = 'No such device', 95 = 'Operation not supported'
-                                               self.session.openWithCallback(self.WlanStatusClosed, WlanStatus,self.iface)
-                                       else:
-                                               # Display Wlan not available Message
-                                               self.showErrorMessage()
+                               self.session.open(MessageBox, self.missingwlanplugintxt, type = MessageBox.TYPE_INFO,timeout = 10 )
+                       else:
+                               if self.queryWirelessDevice(self.iface):
+                                       self.session.openWithCallback(self.WlanStatusClosed, WlanStatus,self.iface)
                                else:
-                                       # Display Wlan not available Message
-                                       self.showErrorMessage()
+                                       self.showErrorMessage() # Display Wlan not available Message
                if self["menulist"].getCurrent()[1] == 'lanrestart':
                        self.session.openWithCallback(self.restartLan, MessageBox, (_("Are you sure you want to restart your network interfaces?\n\n") + self.oktext ) )
                if self["menulist"].getCurrent()[1] == 'openwizard':
@@ -866,7 +819,7 @@ class AdapterSetupConfiguration(Screen, HelpableScreen):
                self["IF"].setText(iNetwork.getFriendlyAdapterName(self.iface))
                self["Statustext"].setText(_("Link:"))
                
-               if self.iface in iNetwork.wlan_interfaces:
+               if iNetwork.isWirelessInterface(self.iface):
                        try:
                                from Plugins.SystemPlugins.WirelessLan.Wlan import iStatus
                        except:
@@ -916,27 +869,16 @@ class AdapterSetupConfiguration(Screen, HelpableScreen):
 
        def AdapterSetupClosed(self, *ret):
                if ret is not None and len(ret):
-                       if ret[0] == 'ok' and (self.iface in iNetwork.wlan_interfaces) and iNetwork.getAdapterAttribute(self.iface, "up") is True:
+                       if ret[0] == 'ok' and (iNetwork.isWirelessInterface(self.iface) and iNetwork.getAdapterAttribute(self.iface, "up") is True):
                                try:
                                        from Plugins.SystemPlugins.WirelessLan.plugin import WlanStatus
-                                       from pythonwifi.iwlibs import Wireless
                                except ImportError:
-                                       self.session.open(MessageBox, _("The wireless LAN plugin is not installed!\nPlease install it."), type = MessageBox.TYPE_INFO,timeout = 10 )
+                                       self.session.open(MessageBox, self.missingwlanplugintxt, type = MessageBox.TYPE_INFO,timeout = 10 )
                                else:   
-                                       ifobj = Wireless(self.iface) # a Wireless NIC Object
-                                       try:
-                                               self.wlanresponse = ifobj.getAPaddr()
-                                       except IOError:
-                                               self.wlanresponse = ifobj.getStatistics()
-                                       if self.wlanresponse:
-                                               if self.wlanresponse[0] not in (19,95): # 19 = 'No such device', 95 = 'Operation not supported'
-                                                       self.session.openWithCallback(self.WlanStatusClosed, WlanStatus,self.iface)
-                                               else:
-                                                       # Display Wlan not available Message
-                                                       self.showErrorMessage()
+                                       if self.queryWirelessDevice(self.iface):
+                                               self.session.openWithCallback(self.WlanStatusClosed, WlanStatus,self.iface)
                                        else:
-                                               # Display Wlan not available Message
-                                               self.showErrorMessage()
+                                               self.showErrorMessage() # Display Wlan not available Message
                        else:
                                self.updateStatusbar()
                else:
@@ -950,7 +892,7 @@ class AdapterSetupConfiguration(Screen, HelpableScreen):
 
        def WlanScanClosed(self,*ret):
                if ret[0] is not None:
-                       self.session.openWithCallback(self.AdapterSetupClosed, AdapterSetup, self.iface,ret[0],ret[1])
+                       self.session.openWithCallback(self.AdapterSetupClosed, AdapterSetup, self.iface,ret[0])
                else:
                        from Plugins.SystemPlugins.WirelessLan.Wlan import iStatus
                        iStatus.stopWlanConsole()
@@ -995,6 +937,7 @@ class AdapterSetupConfiguration(Screen, HelpableScreen):
        def cleanup(self):
                iNetwork.stopLinkStateConsole()
                iNetwork.stopDeactivateInterfaceConsole()
+               iNetwork.stopActivateInterfaceConsole()
                iNetwork.stopPingConsole()
                try:
                        from Plugins.SystemPlugins.WirelessLan.Wlan import iStatus
@@ -1008,7 +951,7 @@ class AdapterSetupConfiguration(Screen, HelpableScreen):
                if data is not None:
                        if data is True:
                                if status is not None:
-                                       if status[self.iface]["acesspoint"] == "No Connection" or status[self.iface]["acesspoint"] == "Not-Associated" or status[self.iface]["acesspoint"] == False:
+                                       if status[self.iface]["essid"] == "off" or status[self.iface]["accesspoint"] == "Not-Associated" or status[self.iface]["accesspoint"] == False:
                                                self.LinkState = False
                                                self["statuspic"].setPixmapNum(1)
                                                self["statuspic"].show()
@@ -1376,7 +1319,7 @@ class NetworkAdapterTest(Screen):
 
        def LinkStatedataAvail(self,data):
                self.output = data.strip()
-               result = self.output.split('\n')
+               result = self.output.splitlines()
                pattern = re_compile("Link detected: yes")
                for item in result:
                        if re_search(pattern, item):
@@ -1430,7 +1373,7 @@ class NetworkAdapterTest(Screen):
                if data is not None:
                        if data is True:
                                if status is not None:
-                                       if status[self.iface]["acesspoint"] == "No Connection" or status[self.iface]["acesspoint"] == "Not-Associated" or status[self.iface]["acesspoint"] == False:
+                                       if status[self.iface]["essid"] == "off" or status[self.iface]["accesspoint"] == "Not-Associated" or status[self.iface]["accesspoint"] == False:
                                                self["Network"].setForegroundColorNum(1)
                                                self["Network"].setText(_("disconnected"))
                                                self["NetworkInfo_Check"].setPixmapNum(1)
index 660fb27..6e1b752 100644 (file)
@@ -108,10 +108,10 @@ class JobView(InfoBarNotifications, Screen, ConfigListScreen):
                        self.close(False)
 
        def abort(self):
-               if self.job.status in (self.job.FINISHED, self.job.FAILED):
-                       self.close(False)
-               if self["cancelable"].boolean == True:
+               if self.job.status == self.job.IN_PROGRESS and self["cancelable"].boolean == True:
                        self.job.cancel()
+               else:
+                       self.close(False)
 
        def performAfterEvent(self):
                self["config"].hide()
index 2f6ebf5..6071a81 100755 (executable)
--- a/po/ar.po
+++ b/po/ar.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2010-08-20 00:08+0200\n"
 "Last-Translator: Hazem <moustafagamal@hotmail.com>\n"
 "Language-Team: Arabic <moustafagamal@hotmail.com>\n"
@@ -192,6 +192,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -226,6 +232,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s) \n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 msgid "(ZAP)"
 msgstr "(تنقل)"
 
@@ -357,10 +367,10 @@ msgstr "؟؟"
 msgid "A"
 msgstr "أ"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -380,6 +390,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 msgid ""
 "A finished record timer wants to set your\n"
 "Dreambox to standby. Do that now?"
@@ -400,6 +413,9 @@ msgstr "دليل برامج الكترونى بيانى لكل قنوات باق
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -834,6 +850,9 @@ msgstr "أسال المستخدم"
 msgid "Aspect Ratio"
 msgstr "نسبة الجانب"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -847,6 +866,9 @@ msgstr "صوت"
 msgid "Audio Options..."
 msgstr "خيارات الصوت"
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -905,6 +927,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 msgid "Automatic"
 msgstr "آلى"
 
@@ -938,6 +969,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 msgid "Autos & Vehicles"
 msgstr "سيارات ومركبات"
 
@@ -976,6 +1025,12 @@ msgstr ""
 msgid "Back"
 msgstr "خلف"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 msgid "Background"
 msgstr "خلفيه"
 
@@ -1058,6 +1113,11 @@ msgstr "البرازيل"
 msgid "Brightness"
 msgstr "الإضاءه"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1088,6 +1148,17 @@ msgid "Bus: "
 msgstr "الناقل"
 
 msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
+msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
 "displayed."
 msgstr "بالضغط على ذر موافق من الريموت كونترول ، سيظهر شريط المعلومات"
@@ -1325,20 +1396,10 @@ msgstr "أغلق وأحفظ التغيرات"
 msgid "Close title selection"
 msgstr "إغلاق إختيار العنوان"
 
-#
-msgid "Code rate high"
-msgstr ""
-
-#
-msgid "Code rate low"
+msgid "Code rate HP"
 msgstr ""
 
-#
-msgid "Coderate HP"
-msgstr ""
-
-#
-msgid "Coderate LP"
+msgid "Code rate LP"
 msgstr ""
 
 msgid "Collection name"
@@ -1491,6 +1552,10 @@ msgstr "لا يمكن فتح صوره داخل صوره"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "تعذر التسجيل بسبب مؤقت متعارض%s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 msgid "Crashlog settings"
 msgstr "إعدادات سجل العطب"
 
@@ -1651,6 +1716,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 msgid "DVD File Browser"
 msgstr "متصفح ملفات دى فى دى"
 
@@ -1720,10 +1788,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr "اسلوب فك التشابك للمحتويات المتشابكه"
+
+msgid "Deinterlacer mode for progressive content"
+msgstr "اسلوب فك التشابك للمحتويات التقدميه"
+
 #
 msgid "Delay"
 msgstr "تأخير"
 
+msgid "Delay x seconds after service started"
+msgstr "تأخير (عدد) ثوانى بعد بدأ القناه"
+
 #
 msgid "Delete"
 msgstr "أمسح"
@@ -1890,6 +1967,12 @@ msgstr ""
 "قد يستغرق ذلك بعض الوقت !"
 
 #, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
+#, python-format
 msgid "Do you really want to delete %s?"
 msgstr "هل تريد فعلا مسح %s ؟"
 
@@ -2056,6 +2139,12 @@ msgstr ""
 msgid "Dreambox software because updates are available."
 msgstr "البرنامج التشغيلى للدريم بوكس لتوافر تحديثات"
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr "مده زمنيه"
@@ -2182,9 +2271,28 @@ msgstr "تفعيل"
 msgid "Enable /media"
 msgstr "تفعيل /الوسيط"
 
+#
+msgid "Enable 1080p24 Mode"
+msgstr "تفعيل الوضعيه 1080p24"
+
+#
+msgid "Enable 1080p25 Mode"
+msgstr "تفعيل الوضعيه 1080p25"
+
+#
+msgid "Enable 1080p30 Mode"
+msgstr "تفعيل الوضعيه 1080p30"
+
 msgid "Enable 5V for active antenna"
 msgstr "تفعيل 5ف للهوائى النشط"
 
+#
+msgid "Enable 720p24 Mode"
+msgstr "تفعيل الوضعيه 720p24"
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 msgid "Enable Cleanup Wizard?"
 msgstr "تفعيل نافذة التنظيف ؟"
 
@@ -2304,16 +2412,9 @@ msgstr ""
 "© 2006 - Stephan Reichholf"
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr ""
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
-msgid "Enter Rewind at speed"
-msgstr "أدخل سرعة الرجوع"
-
 msgid "Enter main menu..."
 msgstr "دخول القائمه الرئيسيه"
 
@@ -2371,6 +2472,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "أستونى"
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "مشاهده الحدث"
@@ -2541,6 +2645,11 @@ msgstr "تم النتهاء من إعادة تشغيل الشبكه"
 msgid "Finnish"
 msgstr "إنتهاء"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2559,16 +2668,18 @@ msgstr "نسق"
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
 "%d Timer were added and %d modified."
 msgstr ""
 "تم العثور على إجمالى %d أحداث متطابقه \n"
 "تم إضافة مؤقت %d وتم تعديل %d"
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr ""
-
-#
 msgid "Frame size in full view"
 msgstr ""
 
@@ -2609,6 +2720,9 @@ msgstr ""
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2662,6 +2776,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr ""
@@ -2734,21 +2851,24 @@ msgid "Green boost"
 msgstr "دعم أخضر"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-msgid "Guard Interval"
-msgstr "فاصل الحرس"
-
-msgid "Guard interval mode"
-msgstr "وضعية فاصل الحرس"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 msgid "HD videos"
 msgstr "فيديو فائق الوضوح"
 
@@ -2773,6 +2893,9 @@ msgstr "القرص الصلب فى وضع الاستعداد بعد"
 msgid "Help"
 msgstr "مسـاعده"
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "شبكه مخفيه SSID"
@@ -2781,11 +2904,8 @@ msgstr "شبكه مخفيه SSID"
 msgid "Hidden networkname"
 msgstr "إسم شبكه مخفى"
 
-msgid "Hierarchy Information"
-msgstr "معلومات التسلسل الهرمى"
-
-msgid "Hierarchy mode"
-msgstr "وضعية التسلسل الهرمى"
+msgid "Hierarchy info"
+msgstr ""
 
 msgid "High bitrate support"
 msgstr "دعم معدل البث العالى"
@@ -2845,12 +2965,11 @@ msgstr "مسار أيزو"
 msgid "Icelandic"
 msgstr "ايسلندى"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
-msgstr "عند تفعيل هذا سيعتبر المؤقت الحالى يسجل حدثإذا سجل على الاقل 80% منه"
+"event if it records at least 80%% of the it."
+msgstr ""
 
 msgid ""
 "If you see this, something is wrong with\n"
@@ -2944,6 +3063,12 @@ msgstr "معلومات"
 msgid "Init"
 msgstr ""
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3028,6 +3153,9 @@ msgstr "الفلاش الداخلى"
 msgid "Internal LAN adapter."
 msgstr "محول شبكه محليه داخلى"
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3215,6 +3343,11 @@ msgstr "إختيار اللغـه"
 msgid "Last config"
 msgstr "التهيئه السابقه"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "السرعه السابقه"
@@ -3271,6 +3404,9 @@ msgstr ""
 msgid "Linked titles with a DVD menu"
 msgstr ""
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "قائمة أجهزة التخزين"
@@ -3401,6 +3537,9 @@ msgstr "تحكم فى البرنامج التشغيلى للرسيفر"
 msgid "Manual Scan"
 msgstr "بحـث يدوى"
 
+msgid "Manual configuration"
+msgstr ""
+
 msgid "Manual transponder"
 msgstr "تردد يدوى"
 
@@ -3660,12 +3799,18 @@ msgstr "قائمة سجل الافلام"
 msgid "Multi EPG"
 msgstr "دليل برامج متعدد"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 msgid "Multimedia"
 msgstr "وسائط متعدده"
 
 msgid "Multiple service support"
 msgstr "دعم خدمات متعدده"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "عدة أقمار"
@@ -3734,6 +3879,9 @@ msgstr ""
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 msgid "NOW"
 msgstr "الان"
 
@@ -3758,6 +3906,9 @@ msgstr "ضبط أسم الخادم"
 msgid "Nameserver settings"
 msgstr "إعدادات اسم الخادم"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -3903,6 +4054,9 @@ msgstr "متصفح الشبكه"
 msgid "NetworkWizard"
 msgstr "نافذة إعدادات الشبكه"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr "مطلقا"
@@ -4055,6 +4209,9 @@ msgstr "لا يوجد فيديو للعرض"
 msgid "No wireless networks found! Please refresh."
 msgstr "لم يتم العثور على شبكه لاسلكيه! . من فضلك حدث"
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 msgid ""
 "No working local network adapter found.\n"
 "Please verify that you have attached a network cable and your network is "
@@ -4137,6 +4294,12 @@ msgstr "شمال"
 msgid "Norwegian"
 msgstr "نرويجى"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4150,6 +4313,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 msgid ""
 "Nothing to scan!\n"
 "Please setup your tuner settings before you start a service scan."
@@ -4186,6 +4352,9 @@ msgstr "موافق، أحذف إضافات اخرى"
 msgid "OK, remove some extensions"
 msgstr "موافق، أحذف بعض الاضافات"
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "إعدادات OSD"
@@ -4249,9 +4418,8 @@ msgstr "أفتح قائمة البلج إنز"
 msgid "Optionally enter your name if you want to."
 msgstr "أدخل اسم إذا كنت ترغب فى ذلك - إختيارى-"
 
-#
-msgid "Orbital Position"
-msgstr "الوضع المدارى"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4274,9 +4442,15 @@ msgstr ""
 msgid "PAL"
 msgstr "بال"
 
+msgid "PCR PID"
+msgstr ""
+
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "تحديث قائمة الباقات"
@@ -4667,10 +4841,6 @@ msgid "Poland"
 msgstr "بولندا"
 
 #
-msgid "Polarity"
-msgstr "القطبيه"
-
-#
 msgid "Polarization"
 msgstr "الاستقطاب"
 
@@ -4706,6 +4876,9 @@ msgstr "مدخل د"
 msgid "Portuguese"
 msgstr "برتغالى"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "الموتور"
@@ -4891,6 +5064,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 msgid "Radio"
 msgstr "راديو"
 
@@ -4985,6 +5161,9 @@ msgstr "تسجيلات"
 msgid "Recordings always have priority"
 msgstr "التسجيلات لها الأوليه دائما"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5171,6 +5350,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 msgid "Resume from last position"
 msgstr "إستعاده من الوضع السابق"
 
@@ -5204,8 +5386,7 @@ msgstr "سرعة العوده للخلف"
 msgid "Right"
 msgstr "يمين"
 
-#
-msgid "Rolloff"
+msgid "Roll-off"
 msgstr ""
 
 #
@@ -5216,6 +5397,9 @@ msgstr "سرعة توليف الموتور"
 msgid "Running"
 msgstr ""
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr "روسيا"
@@ -5227,6 +5411,21 @@ msgstr "روسى"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr "دى فى دى أحادى الطبقه"
@@ -5243,6 +5442,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "قمر"
@@ -5638,6 +5850,9 @@ msgid ""
 "(SID not found in PAT)"
 msgstr ""
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "بحث عـن القنـوات"
@@ -5762,6 +5977,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr "شاهد فى الشاشه ألإضافيه"
 
+msgid "Show info screen"
+msgstr "إظهار شاشة المعلومات"
+
 msgid "Show infobar on channel change"
 msgstr "شاهد شريط المعلومات عند تغيير القناه"
 
@@ -5771,6 +5989,9 @@ msgstr "شاهد شريط المعلومات عند تغيير الحدث"
 msgid "Show infobar on skip forward/backward"
 msgstr "شاهد شريط المعلومات عند الانتقال للأمام/الخلف"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 msgid "Show positioner movement"
 msgstr "شاهد حركة الموتور"
 
@@ -6025,6 +6246,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr "أبدا واجهة الشبكه"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "أبدأ من البدايه"
@@ -6144,6 +6368,9 @@ msgstr "الاحد"
 msgid "Sunday"
 msgstr "الاحد"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr ""
@@ -6168,11 +6395,8 @@ msgstr "الانتقال الى الفرعيه السابقه"
 msgid "Switchable tuner types:"
 msgstr ""
 
-msgid "Symbol Rate"
-msgstr "معدل الترميز"
-
-msgid "Symbolrate"
-msgstr "معدل الترميز"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6187,9 +6411,18 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr ""
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 msgid "TV System"
 msgstr "نظام التليفزبـون"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr ""
@@ -6218,6 +6451,9 @@ msgstr "تايوانى"
 msgid "Temperature and Fan control"
 msgstr "درجة الحراره والتحكم فى المروحه"
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr ""
@@ -6851,10 +7087,6 @@ msgid "Translation:"
 msgstr "ترجمه:"
 
 #
-msgid "Transmission Mode"
-msgstr "وضع الترجمه"
-
-#
 msgid "Transmission mode"
 msgstr "وضع النقل"
 
@@ -6863,10 +7095,6 @@ msgid "Transponder"
 msgstr "التردد"
 
 #
-msgid "Transponder Type"
-msgstr "نوع التردد"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -6981,6 +7209,9 @@ msgstr "تراجع عن التثبيت"
 msgid "Undo uninstall"
 msgstr "تراجع عن الغاء التثبيت"
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7007,6 +7238,9 @@ msgstr "الولايات المتحده"
 msgid "Universal LNB"
 msgstr ""
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr "محول شبكه غير معروف"
 
@@ -7113,10 +7347,6 @@ msgstr ""
 msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
-#
-msgid "Use non-smooth winding at speeds above"
-msgstr ""
-
 msgid "Use power measurement"
 msgstr "استخدم قـياس الطاقه"
 
@@ -7191,13 +7421,22 @@ msgstr ""
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 msgid "Vertical"
 msgstr "رأسى"
 
@@ -7212,6 +7451,9 @@ msgstr "نافذة الضبط الدقيق للفيديو"
 msgid "Video Output"
 msgstr "مخرج الفيديو"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "ضبط الفيديو"
@@ -7434,6 +7676,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr "واجهة الشبكه"
@@ -7586,6 +7831,11 @@ msgid "What to do with submitted crashlogs?"
 msgstr ""
 
 msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
+msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
 "timer with the same description already exists in the timer list."
 msgstr ""
@@ -7623,6 +7873,15 @@ msgstr "شبكه لا سلكيه"
 msgid "Wireless Network State"
 msgstr "حالة الشبكه اللاسلكيه"
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -7824,6 +8083,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "لايمكنك مسح هذه !"
@@ -7998,6 +8263,9 @@ msgstr "إسمك (إختيارى):"
 msgid "Your network configuration has been activated."
 msgstr "تم تنشيط تكوين الشبكه"
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 msgid "Your network mount has been activated."
 msgstr "تم تنشيط إعتلاء الشبكه."
 
@@ -8193,6 +8461,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -8210,6 +8484,9 @@ msgstr "مسارات الصوت"
 msgid "auto"
 msgstr "تلقائى"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 msgid "available"
 msgstr "متاح"
 
@@ -8236,6 +8513,10 @@ msgid "blue"
 msgstr "أزرق"
 
 #
+msgid "bob"
+msgstr "شعبى"
+
+#
 #, python-format
 msgid "burn audio track (%s)"
 msgstr ""
@@ -8273,6 +8554,9 @@ msgstr "مسح قائمة العرض"
 msgid "complex"
 msgstr "مركب"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "قائمه الضبط"
@@ -8298,6 +8582,12 @@ msgstr "لا يمكن حذفها"
 msgid "create directory"
 msgstr "إنشاء دليل"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -8310,6 +8600,9 @@ msgstr "يومى"
 msgid "day"
 msgstr "يوم"
 
+msgid "default"
+msgstr "إفتراضى"
+
 msgid "delete"
 msgstr "مسح"
 
@@ -8361,6 +8654,9 @@ msgstr ""
 msgid "done!"
 msgstr "تم !"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 msgid "edit alternatives"
 msgstr "تحرير البدائل"
 
@@ -8594,6 +8890,9 @@ msgstr "دقيقه"
 msgid "minutes"
 msgstr "دقائق"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 msgid "month"
 msgstr "شهر"
 
@@ -8760,9 +9059,6 @@ msgstr "أحمر"
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr "حذف مدخلأسم الخادم"
@@ -9045,6 +9341,10 @@ msgstr ""
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 msgid "unavailable"
 msgstr "غير متاح"
 
@@ -9107,6 +9407,9 @@ msgstr "اسبوعى"
 msgid "whitelist"
 msgstr "القائمه البيضاء"
 
+msgid "wireless network interface"
+msgstr ""
+
 msgid "working"
 msgstr "يعمل"
 
@@ -9183,15 +9486,6 @@ msgstr "تم الانتقال"
 #~ msgid "Default settings"
 #~ msgstr "الاعـدادات الافتـراضيه"
 
-#~ msgid "Deinterlacer mode for interlaced content"
-#~ msgstr "اسلوب فك التشابك للمحتويات المتشابكه"
-
-#~ msgid "Deinterlacer mode for progressive content"
-#~ msgstr "اسلوب فك التشابك للمحتويات التقدميه"
-
-#~ msgid "Delay x seconds after service started"
-#~ msgstr "تأخير (عدد) ثوانى بعد بدأ القناه"
-
 #~ msgid "Destination directory"
 #~ msgstr "الدليل الوجهه"
 
@@ -9215,25 +9509,12 @@ msgstr "تم الانتقال"
 #~ "الحالى؟"
 
 #
-#~ msgid "Enable 1080p24 Mode"
-#~ msgstr "تفعيل الوضعيه 1080p24"
-
-#
-#~ msgid "Enable 1080p25 Mode"
-#~ msgstr "تفعيل الوضعيه 1080p25"
-
-#
-#~ msgid "Enable 1080p30 Mode"
-#~ msgstr "تفعيل الوضعيه 1080p30"
-
-#
-#~ msgid "Enable 720p24 Mode"
-#~ msgstr "تفعيل الوضعيه 720p24"
-
-#
 #~ msgid "End"
 #~ msgstr "النهايه"
 
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "أدخل سرعة الرجوع"
+
 #
 #~ msgid "Expert Setup"
 #~ msgstr "قائمه اعدادت الخبراء"
@@ -9246,10 +9527,29 @@ msgstr "تم الانتقال"
 #~ msgid "Games / Plugins"
 #~ msgstr "العاب/بلج إنز"
 
+#~ msgid "Guard Interval"
+#~ msgstr "فاصل الحرس"
+
+#~ msgid "Guard interval mode"
+#~ msgstr "وضعية فاصل الحرس"
+
 #
 #~ msgid "Hide error windows"
 #~ msgstr "إخفاء نافذه الاخطاء"
 
+#~ msgid "Hierarchy Information"
+#~ msgstr "معلومات التسلسل الهرمى"
+
+#~ msgid "Hierarchy mode"
+#~ msgstr "وضعية التسلسل الهرمى"
+
+#
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "عند تفعيل هذا سيعتبر المؤقت الحالى يسجل حدثإذا سجل على الاقل 80% منه"
+
 #~ msgid "Image flash utility"
 #~ msgstr "استخدام شحن الفلاش"
 
@@ -9285,6 +9585,10 @@ msgstr "تم الانتقال"
 #~ msgstr "لاشيئ متصل"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "الوضع المدارى"
+
+#
 #~ msgid "Page"
 #~ msgstr "صفحه"
 
@@ -9317,6 +9621,10 @@ msgstr "تم الانتقال"
 #~ msgstr "من فضلك إختار الدليل الهدف أو الوسيط"
 
 #
+#~ msgid "Polarity"
+#~ msgstr "القطبيه"
+
+#
 #~ msgid "Positioner mode"
 #~ msgstr "Rotorart"
 
@@ -9373,9 +9681,6 @@ msgstr "تم الانتقال"
 #~ msgid "Show Satposition"
 #~ msgstr "مشاهده وضع القمر"
 
-#~ msgid "Show info screen"
-#~ msgstr "إظهار شاشة المعلومات"
-
 #
 #~ msgid "Skip confirmations"
 #~ msgstr "تخطى التأكيد"
@@ -9392,6 +9697,12 @@ msgstr "تم الانتقال"
 #~ msgid "Stereo"
 #~ msgstr "ستيريـو"
 
+#~ msgid "Symbol Rate"
+#~ msgstr "معدل الترميز"
+
+#~ msgid "Symbolrate"
+#~ msgstr "معدل الترميز"
+
 #
 #~ msgid "Thanks for using the wizard. Your box is now ready to use."
 #~ msgstr "شكرا، الرسيفر جاهز للاستخدام الان"
@@ -9456,6 +9767,14 @@ msgstr "تم الانتقال"
 #~ "2-أعد الكهرباء وأضغط على ذر DOWN الموجود فى مقدمه الجهاز لمدة 10 ثوانى \n"
 #~ "3-أنتظر الأقلاع ثم أتبع التعليمات على الشاشه ."
 
+#
+#~ msgid "Transmission Mode"
+#~ msgstr "وضع الترجمه"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "نوع التردد"
+
 #~ msgid ""
 #~ "USB stick wizard finished. Your dreambox will now restart with your new "
 #~ "image!"
@@ -9502,13 +9821,6 @@ msgstr "تم الانتقال"
 #~ "هل تريد وضع رقم سرى الان؟"
 
 #
-#~ msgid "bob"
-#~ msgstr "شعبى"
-
-#~ msgid "default"
-#~ msgstr "إفتراضى"
-
-#
 #~ msgid "empty/unknown"
 #~ msgstr "فارغ/غير معروف"
 
index ed5e7b1..55e65ff 100755 (executable)
--- a/po/ca.po
+++ b/po/ca.po
@@ -8,7 +8,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ca\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2007-08-14 10:23+0200\n"
 "Last-Translator: Oriol Pellicer <oriol@elsud.org>\n"
 "Language-Team: \n"
@@ -177,6 +177,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -215,6 +221,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAPPEJAR)"
@@ -375,10 +385,10 @@ msgstr "?"
 msgid "A"
 msgstr "Un"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -397,6 +407,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -420,6 +433,9 @@ msgstr ""
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -867,6 +883,9 @@ msgstr ""
 msgid "Aspect Ratio"
 msgstr "Relació d'aspecte"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -881,6 +900,9 @@ msgstr "So"
 msgid "Audio Options..."
 msgstr "Opcions d'àudio"
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -947,6 +969,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr ""
@@ -981,6 +1012,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1023,6 +1072,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr ""
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr ""
@@ -1117,6 +1172,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Brillantor"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1146,6 +1206,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1413,21 +1484,11 @@ msgstr ""
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Velocitat de codi alta"
-
-#
-msgid "Code rate low"
-msgstr "Velocitat de codi baixa"
-
-#
-msgid "Coderate HP"
-msgstr "Velocitat de codi HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Velocitat de codi LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1611,6 +1672,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr ""
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr ""
@@ -1790,6 +1855,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1875,10 +1943,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Retard"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Esborrar"
@@ -2060,6 +2137,12 @@ msgid ""
 "This could take lots of time!"
 msgstr ""
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2253,6 +2336,12 @@ msgstr ""
 msgid "Dreambox software because updates are available."
 msgstr ""
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2394,10 +2483,25 @@ msgstr "Activar"
 msgid "Enable /media"
 msgstr ""
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Activar 5V per a antena activa"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2518,18 +2622,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr ""
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr ""
-
-#
 msgid "Enter main menu..."
 msgstr "Entrar al menú principal..."
 
@@ -2600,6 +2696,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Veure programes"
@@ -2799,6 +2898,11 @@ msgstr ""
 msgid "Finnish"
 msgstr "Finlandès"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2818,15 +2922,17 @@ msgstr ""
 msgid "Format"
 msgstr ""
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
 msgstr ""
 
 #
@@ -2873,6 +2979,9 @@ msgstr ""
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2927,6 +3036,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Gènere"
@@ -3005,23 +3117,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Interval de guarda"
-
-#
-msgid "Guard interval mode"
-msgstr "Mode interval segur"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3050,6 +3163,9 @@ msgstr "Posar el disc dur en repòs després de"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr ""
@@ -3058,13 +3174,8 @@ msgstr ""
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Informació jeràrquica"
-
-#
-msgid "Hierarchy mode"
-msgstr "Mode jeràrquic"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3135,11 +3246,10 @@ msgstr ""
 msgid "Icelandic"
 msgstr "Islandès"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3234,6 +3344,12 @@ msgstr "Informació"
 msgid "Init"
 msgstr "Iniciar"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3335,6 +3451,9 @@ msgstr "Flash interna"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3532,6 +3651,11 @@ msgstr "Selecció d'idioma"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr ""
@@ -3589,6 +3713,9 @@ msgstr ""
 msgid "Linked titles with a DVD menu"
 msgstr ""
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Dispositius d'emmagatzematge"
@@ -3726,6 +3853,9 @@ msgstr ""
 msgid "Manual Scan"
 msgstr "Recerca manual"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Transponedor manual"
@@ -4013,6 +4143,9 @@ msgstr ""
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr ""
@@ -4021,6 +4154,9 @@ msgstr ""
 msgid "Multiple service support"
 msgstr "Suport per a serveis múltiples"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4090,6 +4226,9 @@ msgstr ""
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "ARA"
@@ -4119,6 +4258,9 @@ msgstr "Configuració dels DNS"
 msgid "Nameserver settings"
 msgstr ""
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4274,6 +4416,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr ""
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4442,6 +4587,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4527,6 +4675,12 @@ msgstr "Nord"
 msgid "Norwegian"
 msgstr "Noruec"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4538,6 +4692,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4577,6 +4734,9 @@ msgstr ""
 msgid "OK, remove some extensions"
 msgstr ""
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "Config OSD"
@@ -4646,9 +4806,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr ""
 
-#
-msgid "Orbital Position"
-msgstr "Posició orbital"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4671,11 +4830,17 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 #, fuzzy
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Actualització de la llista de paquets"
@@ -5114,10 +5279,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Polaritat"
-
-#
 msgid "Polarization"
 msgstr "Polarització"
 
@@ -5153,6 +5314,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portuguès"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Motor"
@@ -5368,6 +5532,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr ""
@@ -5478,6 +5645,9 @@ msgstr ""
 msgid "Recordings always have priority"
 msgstr "Les gravacions tenen prioritat"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5699,6 +5869,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr ""
@@ -5739,10 +5912,8 @@ msgstr ""
 msgid "Right"
 msgstr "Dreta"
 
-#
-#, fuzzy
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5752,6 +5923,9 @@ msgstr "Velocitat de rotació del motor"
 msgid "Running"
 msgstr "Mostrant"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5764,6 +5938,21 @@ msgstr "Rus"
 msgid "S-Video"
 msgstr "S-Vídeo"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5780,6 +5969,19 @@ msgstr ""
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Dis"
@@ -6242,6 +6444,9 @@ msgstr ""
 "No s'ha trobat el canal!\n"
 "(No s'ha trobat el SID al PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Buscar canals"
@@ -6374,6 +6579,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Mostrar la barra d'info canviant de canal"
@@ -6386,6 +6594,9 @@ msgstr "Mostrar la barra en canviar el programa"
 msgid "Show infobar on skip forward/backward"
 msgstr "Mostrar la barra anant endavant/enrere"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Mostrar el moviment del motor"
@@ -6655,6 +6866,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr ""
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr ""
@@ -6778,6 +6992,9 @@ msgstr "Diu"
 msgid "Sunday"
 msgstr "Diumenge"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Intercanviar canals"
@@ -6802,13 +7019,8 @@ msgstr "Canviar al subservei anterior"
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Velocitat de símbol"
-
-#
-msgid "Symbolrate"
-msgstr "Velocitat de símbol"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6823,10 +7035,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr ""
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "Sistema de TV"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr ""
@@ -6859,6 +7080,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Terrestre"
@@ -7492,10 +7716,6 @@ msgid "Translation:"
 msgstr ""
 
 #
-msgid "Transmission Mode"
-msgstr "Mode Transmissió"
-
-#
 msgid "Transmission mode"
 msgstr "Mode transmissió"
 
@@ -7504,10 +7724,6 @@ msgid "Transponder"
 msgstr "Transponedor"
 
 #
-msgid "Transponder Type"
-msgstr "Tipus Transponedor"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7634,6 +7850,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7662,6 +7881,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "LNB universal"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7776,10 +7998,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr ""
-
-#
 msgid "Use power measurement"
 msgstr "Utilitza les mesures de corrent"
 
@@ -7862,13 +8080,22 @@ msgstr ""
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr ""
@@ -7885,6 +8112,9 @@ msgstr ""
 msgid "Video Output"
 msgstr ""
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr ""
@@ -8125,6 +8355,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr ""
@@ -8264,6 +8497,11 @@ msgstr "Què vols buscar?"
 msgid "What to do with submitted crashlogs?"
 msgstr ""
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8300,6 +8538,15 @@ msgstr ""
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8519,6 +8766,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Això no es pot eliminar!"
@@ -8695,6 +8948,9 @@ msgstr ""
 msgid "Your network configuration has been activated."
 msgstr ""
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -8912,6 +9168,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -8930,6 +9192,9 @@ msgstr ""
 msgid "auto"
 msgstr ""
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr ""
@@ -8962,6 +9227,9 @@ msgstr "llista negra"
 msgid "blue"
 msgstr ""
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9003,6 +9271,9 @@ msgstr "netejar la llista"
 msgid "complex"
 msgstr "complexe"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "menú configuració"
@@ -9034,6 +9305,12 @@ msgstr ""
 msgid "create directory"
 msgstr ""
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9046,6 +9323,9 @@ msgstr "diàriament"
 msgid "day"
 msgstr ""
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "esborrar"
@@ -9105,6 +9385,9 @@ msgstr "no gravar"
 msgid "done!"
 msgstr "fet!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "editar alternatives"
@@ -9385,6 +9668,9 @@ msgstr "minut"
 msgid "minutes"
 msgstr "minuts"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr ""
@@ -9586,9 +9872,6 @@ msgstr ""
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr ""
@@ -9925,6 +10208,10 @@ msgstr ""
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr ""
@@ -9995,6 +10282,9 @@ msgstr "setmanalment"
 msgid "whitelist"
 msgstr "llista blanca"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr ""
@@ -10124,6 +10414,22 @@ msgstr "zappejat"
 #~ msgstr "Escull origen"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Velocitat de codi alta"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Velocitat de codi baixa"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Velocitat de codi HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Velocitat de codi LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Tarja Compact Flash"
 
@@ -10240,6 +10546,22 @@ msgstr "zappejat"
 #~ msgstr "Jocs / plugins"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Interval de guarda"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Mode interval segur"
+
+#
+#~ msgid "Hierarchy Information"
+#~ msgstr "Informació jeràrquica"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Mode jeràrquic"
+
+#
 #~ msgid "Image-Upgrade"
 #~ msgstr "Actualització imatge"
 
@@ -10280,6 +10602,10 @@ msgstr "zappejat"
 #~ msgstr "Actualització online"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Posició orbital"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Altres..."
 
@@ -10296,6 +10622,10 @@ msgstr "zappejat"
 #~ msgstr "Sisplau selecciona la paraula a filtrar..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polaritat"
+
+#
 #~ msgid "RSS Feed URI"
 #~ msgstr "URI del Feed RSS"
 
@@ -10341,6 +10671,11 @@ msgstr "zappejat"
 #~ msgstr "S'ha restaurat la configuració. Prem OK per a activar-la."
 
 #
+#, fuzzy
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
+#
 #~ msgid "Save current project to disk"
 #~ msgstr "Grava el projecte actual al disc"
 
@@ -10383,6 +10718,14 @@ msgstr "zappejat"
 #~ msgstr "Stèreo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Velocitat de símbol"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Velocitat de símbol"
+
+#
 #~ msgid "The pin code has been changed successfully."
 #~ msgstr "S'ha canviat el pin correctament"
 
@@ -10395,6 +10738,14 @@ msgstr "zappejat"
 #~ msgstr "Actualment això no està suportat."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Mode Transmissió"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Tipus Transponedor"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
index 9c492d6..0887e8e 100755 (executable)
--- a/po/cs.po
+++ b/po/cs.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2008-09-28 18:09+0100\n"
 "Last-Translator: ws79 <ws79@centrum.cz>\n"
 "Language-Team: \n"
@@ -171,6 +171,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -209,6 +215,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(Přepnout)"
@@ -365,10 +375,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -389,6 +399,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -409,6 +422,9 @@ msgstr "Grafické EPG pro všechny stanice ve specifickém bukletu"
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -856,6 +872,9 @@ msgstr "Zeptat se"
 msgid "Aspect Ratio"
 msgstr "Poměr"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -870,6 +889,9 @@ msgstr "Zvuk"
 msgid "Audio Options..."
 msgstr "Nastavení zvuku..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -936,6 +958,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Automatické"
@@ -970,6 +1001,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1012,6 +1061,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Zpět"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr ""
@@ -1106,6 +1161,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Světlost"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1135,6 +1195,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Sběrnice: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1401,21 +1472,11 @@ msgstr ""
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Vysoká kódová rychlost"
-
-#
-msgid "Code rate low"
-msgstr "Nízká kódová rychlost"
-
-#
-msgid "Coderate HP"
-msgstr "Rychlost HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Rychlost LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1599,6 +1660,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr ""
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr ""
@@ -1778,6 +1843,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1863,10 +1931,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Zpožděni"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Vymazat"
@@ -2052,6 +2129,12 @@ msgstr ""
 "Opravdu chcete zkontrolovat souborový systém?\n"
 "Může to trvat dlouho!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2245,6 +2328,12 @@ msgstr ""
 msgid "Dreambox software because updates are available."
 msgstr ""
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2386,10 +2475,25 @@ msgstr "Povolit"
 msgid "Enable /media"
 msgstr ""
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Povolit 5V pro aktivní anténu"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2510,18 +2614,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Začít přetáčení vpřed na rychlosti"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Začít přetáčení zpět na rychlosti"
-
-#
 msgid "Enter main menu..."
 msgstr "Vstoupit do menu..."
 
@@ -2592,6 +2688,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Zobrazení události"
@@ -2790,6 +2889,11 @@ msgstr ""
 msgid "Finnish"
 msgstr "Finsky"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2809,16 +2913,18 @@ msgstr ""
 msgid "Format"
 msgstr ""
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Počet opakování obrázku během skokového přetáčení"
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
+msgstr ""
 
 #
 msgid "Frame size in full view"
@@ -2863,6 +2969,9 @@ msgstr ""
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2917,6 +3026,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Žánr"
@@ -2995,23 +3107,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Hlídat interval"
-
-#
-msgid "Guard interval mode"
-msgstr "Hlídat interval mód"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3040,6 +3153,9 @@ msgstr "Uspat disk po"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr ""
@@ -3048,13 +3164,8 @@ msgstr ""
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Hierarchické informace"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hiearchický mód"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3125,11 +3236,10 @@ msgstr ""
 msgid "Icelandic"
 msgstr "Islandsky"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3232,6 +3342,12 @@ msgstr "Informace"
 msgid "Init"
 msgstr "Init"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3333,6 +3449,9 @@ msgstr "Interní flash"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3530,6 +3649,11 @@ msgstr "Výběr jazyka"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Poslední rychlost"
@@ -3587,6 +3711,9 @@ msgstr "Odkaz:"
 msgid "Linked titles with a DVD menu"
 msgstr ""
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Seznam záznamových zařízeních"
@@ -3723,6 +3850,9 @@ msgstr ""
 msgid "Manual Scan"
 msgstr "Manuální prohledávání"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Ruční transponder"
@@ -4010,6 +4140,9 @@ msgstr "Filmové menu"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr ""
@@ -4018,6 +4151,9 @@ msgstr ""
 msgid "Multiple service support"
 msgstr "Podpora vícenásobného programu"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4087,6 +4223,9 @@ msgstr ""
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "NYNÍ"
@@ -4116,6 +4255,9 @@ msgstr "Nastavení DNS (nameserver)"
 msgid "Nameserver settings"
 msgstr "Nastavení DNS (nameserver)"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4271,6 +4413,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr "Průvodce nastavením sítě"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4439,6 +4584,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4524,6 +4672,12 @@ msgstr "Severní"
 msgid "Norwegian"
 msgstr "Norsky"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4535,6 +4689,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4577,6 +4734,9 @@ msgstr ""
 msgid "OK, remove some extensions"
 msgstr ""
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "Nastavení OSD"
@@ -4646,9 +4806,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr ""
 
-#
-msgid "Orbital Position"
-msgstr "Orbitální pozice"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4671,10 +4830,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDy"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Aktualizován seznam balíčků"
@@ -5113,10 +5278,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Polarita"
-
-#
 msgid "Polarization"
 msgstr "Polarizace"
 
@@ -5152,6 +5313,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portugalsky"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Positioner"
@@ -5367,6 +5531,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Rádio"
@@ -5477,6 +5644,9 @@ msgstr ""
 msgid "Recordings always have priority"
 msgstr "Nahrávání má vždy prioritu"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5698,6 +5868,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Pokračovat z poslední pozice"
@@ -5738,8 +5911,7 @@ msgstr "Rychlosti přetáčení zpět"
 msgid "Right"
 msgstr "Vpravo"
 
-#
-msgid "Rolloff"
+msgid "Roll-off"
 msgstr ""
 
 #
@@ -5750,6 +5922,9 @@ msgstr "Rychlost otáčení rotoru"
 msgid "Running"
 msgstr "Zobrazuji"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5762,6 +5937,21 @@ msgstr "Rusky"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5778,6 +5968,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "So"
@@ -6239,6 +6442,9 @@ msgstr ""
 "Služba nebyla nalezena!\n"
 "(SID nebyl nalezen v PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Vyhledávání služeb"
@@ -6373,6 +6579,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Zobrazit infobar při přepnutí programu"
@@ -6385,6 +6594,9 @@ msgstr "Zobrazit infobar při změně programu v EPG"
 msgid "Show infobar on skip forward/backward"
 msgstr "Zobrazit infobar při přeskočení dopředu / zpět"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Vizualizovat otáčení satelitu."
@@ -6653,6 +6865,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr ""
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Spustit od začátku"
@@ -6776,6 +6991,9 @@ msgstr "Ne"
 msgid "Sunday"
 msgstr "Neděle"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Prohodit služby"
@@ -6800,13 +7018,8 @@ msgstr "Přepnout na předchozí podprogram"
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Symbolová rychlost"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolová rychlost"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6827,10 +7040,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr ""
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV systém"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr ""
@@ -6863,6 +7085,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Pozemní"
@@ -7507,10 +7732,6 @@ msgid "Translation:"
 msgstr "Překlad:"
 
 #
-msgid "Transmission Mode"
-msgstr "Přenosový mód"
-
-#
 msgid "Transmission mode"
 msgstr "Přenosový mód"
 
@@ -7519,10 +7740,6 @@ msgid "Transponder"
 msgstr "Transpondér"
 
 #
-msgid "Transponder Type"
-msgstr "Typ transpodéru"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7652,6 +7869,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7680,6 +7900,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "Univerzální LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7794,10 +8017,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Použít skokové přetáčení s rychlostmi uvedenými výše"
-
-#
 msgid "Use power measurement"
 msgstr "Použít sílu měření"
 
@@ -7879,13 +8098,22 @@ msgstr ""
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr ""
@@ -7902,6 +8130,9 @@ msgstr "Průvodce doladěním obrazu"
 msgid "Video Output"
 msgstr "Video výstup"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Nastavení videa"
@@ -8147,6 +8378,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr ""
@@ -8284,6 +8518,11 @@ msgstr "Co chcete prohledat?"
 msgid "What to do with submitted crashlogs?"
 msgstr ""
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8320,6 +8559,15 @@ msgstr "Bezdrátová síť"
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8541,6 +8789,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Nemůžete toto smazat!"
@@ -8721,6 +8975,9 @@ msgstr ""
 msgid "Your network configuration has been activated."
 msgstr ""
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -8938,6 +9195,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -8956,6 +9219,9 @@ msgstr ""
 msgid "auto"
 msgstr ""
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr ""
@@ -8988,6 +9254,9 @@ msgstr "černá listina"
 msgid "blue"
 msgstr ""
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9029,6 +9298,9 @@ msgstr "vymazat playlist"
 msgid "complex"
 msgstr "komplexní"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "Konfigurační menu"
@@ -9060,6 +9332,12 @@ msgstr ""
 msgid "create directory"
 msgstr ""
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9072,6 +9350,9 @@ msgstr "denně"
 msgid "day"
 msgstr ""
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "smazat"
@@ -9131,6 +9412,9 @@ msgstr "Nenahrávat"
 msgid "done!"
 msgstr "Hotovo!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "upravit alternativy"
@@ -9411,6 +9695,9 @@ msgstr "minuta"
 msgid "minutes"
 msgstr "minuty"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr ""
@@ -9609,9 +9896,6 @@ msgstr ""
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr ""
@@ -9948,6 +10232,10 @@ msgstr "přepnout informace mezi časem, kapitolou, audiostopou, titulky"
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr ""
@@ -10018,6 +10306,9 @@ msgstr "týdně"
 msgid "whitelist"
 msgstr "bílá listina"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr ""
@@ -10177,6 +10468,22 @@ msgstr "přepnutý"
 #~ msgstr "Vyber zdroj"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Vysoká kódová rychlost"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Nízká kódová rychlost"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Rychlost HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Rychlost LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact flash karta"
 
@@ -10339,6 +10646,14 @@ msgstr "přepnutý"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Začít přetáčení vpřed na rychlosti"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Začít přetáčení zpět na rychlosti"
+
+#
 #~ msgid "Exit wizard and configure later manually"
 #~ msgstr "Ukončit průvodce a nastavit později ručně"
 
@@ -10347,6 +10662,10 @@ msgstr "přepnutý"
 #~ msgstr "Prověření souborového systému..."
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Počet opakování obrázku během skokového přetáčení"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP adresu"
 
@@ -10359,10 +10678,26 @@ msgstr "přepnutý"
 #~ msgstr "Hry / Pluginy"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Hlídat interval"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Hlídat interval mód"
+
+#
 #~ msgid "Hello!"
 #~ msgstr "Ahoj!"
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hierarchické informace"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hiearchický mód"
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Pokud vidíte tu stránku, stiskněte OK."
 
@@ -10453,6 +10788,10 @@ msgstr "přepnutý"
 #~ msgstr "Online-Upgrade"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Orbitální pozice"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Ostatní..."
 
@@ -10503,6 +10842,10 @@ msgstr "přepnutý"
 #~ msgstr "Prosím vyberte klíčové slovo pro filtr..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polarita"
+
+#
 #~ msgid ""
 #~ "Pressing OK enables the built in wireless LAN support of your Dreambox.\n"
 #~ "Wlan USB Sticks with Zydas ZD1211B and RAlink RT73 Chipset are "
@@ -10623,6 +10966,14 @@ msgstr "přepnutý"
 #~ msgstr "Stereo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbolová rychlost"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolová rychlost"
+
+#
 #~ msgid ""
 #~ "Thank you for using the wizard. Your Dreambox is now ready to use.\n"
 #~ "\n"
@@ -10672,6 +11023,14 @@ msgstr "přepnutý"
 #~ msgstr "Toto není momentálně nepodporováno."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Přenosový mód"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Typ transpodéru"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -10694,6 +11053,10 @@ msgstr "přepnutý"
 #~ msgstr "Upgrade skončil. Chcete restartovat váš Dreambox?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Použít skokové přetáčení s rychlostmi uvedenými výše"
+
+#
 #~ msgid "VCR Switch"
 #~ msgstr "VCR přepínač"
 
index 266b005..173335b 100755 (executable)
--- a/po/da.po
+++ b/po/da.po
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Enigma2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2010-04-13 21:10+0200\n"
 "Last-Translator: Ingmar <dreambox@ingmar.dk>\n"
 "Language-Team: jazzydane <dreambox@ingmar.dk>\n"
@@ -197,6 +197,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%T:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -234,6 +240,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -380,10 +390,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -404,6 +414,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 msgid ""
 "A finished record timer wants to set your\n"
 "Dreambox to standby. Do that now?"
@@ -425,6 +438,9 @@ msgstr "Grafisk EPG for alle kanaler i en specifik buket"
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -891,6 +907,9 @@ msgstr "Spørg bruger"
 msgid "Aspect Ratio"
 msgstr "Billed format"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -905,6 +924,9 @@ msgstr "Lyd"
 msgid "Audio Options..."
 msgstr "Lyd Valg..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr "Lyd synk."
@@ -969,6 +991,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Automatisk"
@@ -1003,6 +1034,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1045,6 +1094,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Tilbage"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Baggrund"
@@ -1139,6 +1194,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Lysstyrke"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1169,6 +1229,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Bus:"
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1435,21 +1506,11 @@ msgstr ""
 msgid "Close title selection"
 msgstr "Luk titel valg"
 
-#
-msgid "Code rate high"
-msgstr "Kode rate høj"
-
-#
-msgid "Code rate low"
-msgstr "Kode rate lav"
-
-#
-msgid "Coderate HP"
-msgstr "Koderate HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Koderate LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1634,6 +1695,10 @@ msgstr "Kunne ikke åbne billede i billede"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Kan ikke optage på grund af konfliktende timere %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr "Opsætning for nedbrudslog"
@@ -1814,6 +1879,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr "DVD fil gennemsyn"
@@ -1899,10 +1967,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Forsinkelse"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Slet"
@@ -2090,6 +2167,12 @@ msgstr ""
 "Vil du virkelig kontrolere filsystemet?\n"
 "Dette kan tage lang tid!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2287,6 +2370,12 @@ msgstr "Dreambox format data DVD (HDTV kompatibel)"
 msgid "Dreambox software because updates are available."
 msgstr "Dreambox software fordi der er tilgængelige opdateringer."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2428,10 +2517,25 @@ msgstr "Aktiver"
 msgid "Enable /media"
 msgstr "Aktiver /medier"
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Aktivere 5V for aktiv antenne"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr "Aktiver oprydningshjælper?"
@@ -2558,18 +2662,10 @@ msgstr ""
 "© 2006 - Stephan Reichholf"
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Nuværende hastighed ved spoling"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Sæt tilbagespolings hastighed"
-
-#
 msgid "Enter main menu..."
 msgstr "Åbne hoved menu..."
 
@@ -2642,6 +2738,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estisk"
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Programoversigt"
@@ -2841,6 +2940,11 @@ msgstr "Afsluttede genstart af dit netværk"
 msgid "Finnish"
 msgstr "Finsk"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2860,16 +2964,18 @@ msgstr "Følgende opgaver vil blive udført efter tryk på OK!"
 msgid "Format"
 msgstr "Formatere"
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Billed gentagelses tæller ved hurtig spoling"
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
+msgstr ""
 
 #
 msgid "Frame size in full view"
@@ -2914,6 +3020,9 @@ msgstr "Frisisk"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2968,6 +3077,9 @@ msgstr "Almindelig PCM forsinkelse"
 msgid "General PCM delay (ms)"
 msgstr "Generel PCM forsinkelse (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Genre"
@@ -3046,23 +3158,24 @@ msgid "Green boost"
 msgstr "Grøn forstærkning"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Sikkerhedsinterval"
-
-#
-msgid "Guard interval mode"
-msgstr "Sikkerhedsinterval type"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3091,6 +3204,9 @@ msgstr "Harddisk slumre efter:"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "Skjult netværks SSID"
@@ -3099,13 +3215,8 @@ msgstr "Skjult netværks SSID"
 msgid "Hidden networkname"
 msgstr "Skjult netværksnavn"
 
-#
-msgid "Hierarchy Information"
-msgstr "Hieraki information"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hieraki type"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3176,11 +3287,10 @@ msgstr "ISO stien"
 msgid "Icelandic"
 msgstr "Islandsk"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3282,6 +3392,12 @@ msgstr "Information"
 msgid "Init"
 msgstr "Initialiser"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr "Oprindelig placering i nye timere"
@@ -3383,6 +3499,9 @@ msgstr "Intern Flash"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3580,6 +3699,11 @@ msgstr "Valg af sprog"
 msgid "Last config"
 msgstr "Seneste opsætning"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Sidste hastighed"
@@ -3637,6 +3761,9 @@ msgstr "Link:"
 msgid "Linked titles with a DVD menu"
 msgstr "Lænkede titler med en DVD menu"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Oplistning af hukommelsesenheder"
@@ -3773,6 +3900,9 @@ msgstr "Styring af din modtagers software"
 msgid "Manual Scan"
 msgstr "Manuel søgning"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Manuel transponder"
@@ -4060,6 +4190,9 @@ msgstr "Filmliste menu"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr "Multimedia"
@@ -4068,6 +4201,9 @@ msgstr "Multimedia"
 msgid "Multiple service support"
 msgstr "Multi kanal support"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Mange satellitter"
@@ -4137,6 +4273,9 @@ msgstr "NFI image flash gennemført. Tryk gul knap for at genstarte!"
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "NU"
@@ -4166,6 +4305,9 @@ msgstr "Navneserver opsætning"
 msgid "Nameserver settings"
 msgstr "Navneserver indstillinger"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4321,6 +4463,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr "Netværksassistenten"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4492,6 +4637,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr "Ingen fundne trådløse netværk! Genindlæs venligst."
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4586,6 +4734,12 @@ msgstr "Nord"
 msgid "Norwegian"
 msgstr "Norsk"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4599,6 +4753,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4641,6 +4798,9 @@ msgstr "OK, fjern en anden udvidelse"
 msgid "OK, remove some extensions"
 msgstr "OK, fjern nog udvidelser"
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "OSD indstilling"
@@ -4710,9 +4870,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr "Du kan valgfrit indtaste dit navn, hvis du vil."
 
-#
-msgid "Orbital Position"
-msgstr "Kredsløbsposition"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4735,10 +4894,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Pakke liste opdatering"
@@ -5193,10 +5358,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Polaritet"
-
-#
 msgid "Polarization"
 msgstr "Polarisation"
 
@@ -5232,6 +5393,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portugisisk"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Motor"
@@ -5447,6 +5611,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5557,6 +5724,9 @@ msgstr "Optaggelser"
 msgid "Recordings always have priority"
 msgstr "Optagelser har altid prioritet"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5778,6 +5948,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Genoptag fra sidste position"
@@ -5818,9 +5991,8 @@ msgstr "Tilbagespolings hastighed"
 msgid "Right"
 msgstr "Højre"
 
-#
-msgid "Rolloff"
-msgstr "Rulleaf"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5830,6 +6002,9 @@ msgstr "Motor dreje hastighed"
 msgid "Running"
 msgstr "Aktiveret"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5842,6 +6017,21 @@ msgstr "Russisk"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5858,6 +6048,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Lør"
@@ -6319,6 +6522,9 @@ msgstr ""
 "Kanal ikke fundet!\n"
 "(SID ikke fundet i PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Kanal søgning"
@@ -6453,6 +6659,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Vis infobjælke ved kanal skifte"
@@ -6465,6 +6674,9 @@ msgstr "Vis infobjælke ved program skifte"
 msgid "Show infobar on skip forward/backward"
 msgstr "Vis infobjælke ved skip fremspoling/tilbagespoling"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Vis motor bevægelse"
@@ -6738,6 +6950,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr "Start WebInterface"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Start fra begyndelse"
@@ -6861,6 +7076,9 @@ msgstr "Søn"
 msgid "Sunday"
 msgstr "Søndag"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Bytte kanaler"
@@ -6885,13 +7103,8 @@ msgstr "Skift til forrige underkanal"
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Symbolrate"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolrate"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6913,10 +7126,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS filen er for stor til ISO9660 level 1!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV system"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Indholdsfortegnelse for kollektion"
@@ -6949,6 +7171,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr "Kontrol af temperatur og ventilator"
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "DVB T"
@@ -7627,10 +7852,6 @@ msgid "Translation:"
 msgstr "Oversætter:"
 
 #
-msgid "Transmission Mode"
-msgstr "Transmissions type"
-
-#
 msgid "Transmission mode"
 msgstr "Transmissions type"
 
@@ -7639,10 +7860,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Transponder type"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7770,6 +7987,9 @@ msgstr "Fortryd afinstallering"
 msgid "Undo uninstall"
 msgstr "Fortryd afinstallering"
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7798,6 +8018,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "Universal LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7912,10 +8135,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Spoling/afspilning ved brug af stillbilleder"
-
-#
 msgid "Use power measurement"
 msgstr "Brug strømmåling"
 
@@ -7997,13 +8216,22 @@ msgstr "VMGM (intro trailer)"
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr "Vertikal"
@@ -8020,6 +8248,9 @@ msgstr "Video-finjusterings assistent"
 msgid "Video Output"
 msgstr "Video udgang"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Video Opsætning..."
@@ -8266,6 +8497,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr "WebInterface"
@@ -8423,6 +8657,11 @@ msgstr "Hvad vil du søge?"
 msgid "What to do with submitted crashlogs?"
 msgstr "Hvad skal der ske med de afsendte nedbrudslogge?"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8464,6 +8703,15 @@ msgstr "Trådløst netværk"
 msgid "Wireless Network State"
 msgstr "Trådløs netværkstilstand"
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8685,6 +8933,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Dette kan ikke slettes!"
@@ -8885,6 +9139,9 @@ msgstr "Dit navn (valgfrit):"
 msgid "Your network configuration has been activated."
 msgstr "Din netværks opsætning er blevet aktiveret."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -9107,6 +9364,12 @@ msgstr "tilknyttede CAId'er:"
 msgid "assigned Services/Provider:"
 msgstr "tilknyttede kanaler/udbydere:"
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9125,6 +9388,9 @@ msgstr "lyd spor"
 msgid "auto"
 msgstr "auto"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "tilgængelig"
@@ -9157,6 +9423,9 @@ msgstr "Sortliste"
 msgid "blue"
 msgstr "blå"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9198,6 +9467,9 @@ msgstr "slet spilleliste"
 msgid "complex"
 msgstr "komplex"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "konfigurationsmenu"
@@ -9229,6 +9501,12 @@ msgstr "kunne ikke fjernes"
 msgid "create directory"
 msgstr "opret mappe"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9241,6 +9519,9 @@ msgstr "daglig"
 msgid "day"
 msgstr "dag"
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "slet"
@@ -9300,6 +9581,9 @@ msgstr "optag ikke"
 msgid "done!"
 msgstr "færdig!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "redigere alternativer"
@@ -9580,6 +9864,9 @@ msgstr "minut"
 msgid "minutes"
 msgstr "minutter"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "måned"
@@ -9778,9 +10065,6 @@ msgstr "rød"
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr "fjern en navneserver angivelse"
@@ -10117,6 +10401,10 @@ msgstr "skift mellem tid, kapitel, lyd, undertekst info"
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr "ikke tilgængelig"
@@ -10187,6 +10475,9 @@ msgstr "ugentlig"
 msgid "whitelist"
 msgstr "hvidliste"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "fungerer"
@@ -10411,6 +10702,22 @@ msgstr "zappet"
 #~ msgstr "Vælg kilde"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Kode rate høj"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Kode rate lav"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Koderate HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Koderate LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Kompakt flash kort"
 
@@ -10647,6 +10954,14 @@ msgstr "zappet"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Nuværende hastighed ved spoling"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Sæt tilbagespolings hastighed"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Indtast WLAN netværks navn/SSID"
 
@@ -10680,6 +10995,10 @@ msgstr "zappet"
 #~ msgstr "Skrift størrelse"
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Billed gentagelses tæller ved hurtig spoling"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box TELEFON IP adresse"
 
@@ -10696,6 +11015,14 @@ msgstr "zappet"
 #~ msgstr "Almindelig PCM forsinkelse"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Sikkerhedsinterval"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Sikkerhedsinterval type"
+
+#
 #~ msgid "Hello!"
 #~ msgstr "Goddag!"
 
@@ -10704,6 +11031,14 @@ msgstr "zappet"
 #~ msgstr "Her er en lille oversigt over de tilgængelig ikon tilstande."
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hieraki information"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hieraki type"
+
+#
 #~ msgid "How to handle found crashlogs:"
 #~ msgstr "Hvordan skal fundne nedbrudslog behandles:"
 
@@ -10876,6 +11211,10 @@ msgstr "zappet"
 #~ msgstr "Online-opgradering"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Kredsløbsposition"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Andet..."
 
@@ -10975,6 +11314,10 @@ msgstr "zappet"
 #~ msgstr "Pluginstyring berarbejdningsinformation..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polaritet"
+
+#
 #~ msgid "Press OK to view full changelog"
 #~ msgstr "Tryk OK for at se hele ændringsloggen"
 
@@ -11084,6 +11427,10 @@ msgstr "zappet"
 #~ msgstr "Indstillinger genskabt. Tryk OK for at aktivere indstillingerne nu."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Rulleaf"
+
+#
 #~ msgid "Satteliteequipment"
 #~ msgstr "Satellitudstyr"
 
@@ -11198,6 +11545,14 @@ msgstr "zappet"
 #~ msgstr "Stereo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbolrate"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolrate"
+
+#
 #~ msgid ""
 #~ "Thank you for using the wizard. Your Dreambox is now ready to use.\n"
 #~ "\n"
@@ -11359,6 +11714,14 @@ msgstr "zappet"
 #~ "3) Afvent bootup og følg instruktionerne fra assistenten på skærmen."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Transmissions type"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Transponder type"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -11401,6 +11764,10 @@ msgstr "zappet"
 #~ msgstr "Opgradering færdig. Vil du genstarte din DreamBox?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Spoling/afspilning ved brug af stillbilleder"
+
+#
 #~ msgid "VCR Switch"
 #~ msgstr "Video Omskifter"
 
index 49fe3d8..4f56433 100755 (executable)
--- a/po/de.po
+++ b/po/de.po
@@ -7,14 +7,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
-"PO-Revision-Date: 2010-11-01 14:20+0100\n"
-"Last-Translator: Mladen Horvat <acid-burn@opendreambox.org>\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
+"PO-Revision-Date: 2011-04-21 09:33+0200\n"
+"Last-Translator: Mladen <acid-burn@opendreambox.org>\n"
 "Language-Team: none\n"
+"Language: de\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: de\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 2.0.3\n"
 "X-Poedit-Language: German\n"
@@ -135,9 +135,8 @@ msgstr ""
 "\n"
 "Anzeigen, Installieren und Entfernen verfügbarer oder installierter Pakete."
 
-#
 msgid " "
-msgstr ""
+msgstr " "
 
 #
 msgid " Results"
@@ -205,6 +204,14 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+"%d Konflikt(e) erkannt beim hinzufügen eines neuen Timers:\n"
+"%s"
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -243,6 +250,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr "%s: %s um %s"
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -375,13 +386,11 @@ msgstr "8"
 msgid "9"
 msgstr "9"
 
-#
 msgid "<Current movielist location>"
-msgstr ""
+msgstr "<Aktueller Filmlisten Ort>"
 
-#
 msgid "<Default movie location>"
-msgstr ""
+msgstr "<Standard Filmlisten Ort>"
 
 msgid "<Last timer location>"
 msgstr "<Letzter Timer Ort>"
@@ -397,12 +406,12 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr "Ein BackToTheRoots-Skin .. aber mit Warp-8."
+
 msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr "Ein BackToTheRoots-Skin"
 
-msgid "A BackToTheRoots-Skin ... or good old times."
-msgstr "Ein BackToTheRoots-Skin ... der guten alten Zeiten wegen."
-
 msgid "A basic ftp client"
 msgstr "FTP-Client für die Dreambox"
 
@@ -421,6 +430,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Ein Demo Plugin für die TPM Bedienung."
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr "Ein Skin im Look der SG-Atlantis Displays."
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -444,6 +456,9 @@ msgstr "Grafischer EPG für alle Kanäle eines bestimmten Bouquets"
 msgid "A graphical EPG interface"
 msgstr "Eine grafische EPG Ansicht"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr "Eine grafische EPG Ansicht und EPG Tools Manager."
+
 msgid "A graphical EPG interface."
 msgstr "Zeigt eine grafische EPG Ansicht."
 
@@ -787,9 +802,8 @@ msgstr "Alle"
 msgid "All Satellites"
 msgstr "Alle Satelliten"
 
-#
 msgid "All Time"
-msgstr ""
+msgstr "Alle Zeiten"
 
 #
 msgid "All non-repeating timers"
@@ -922,6 +936,9 @@ msgstr "Nutzer fragen"
 msgid "Aspect Ratio"
 msgstr "Seitenverhältnis"
 
+msgid "Aspect ratio"
+msgstr "Seitenverhältnis"
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Weist Providern/Services/CAIDs einem CI-Modul zu"
 
@@ -936,6 +953,9 @@ msgstr "Ton"
 msgid "Audio Options..."
 msgstr "Audio-Optionen..."
 
+msgid "Audio PID"
+msgstr "Audio PID"
+
 #
 msgid "Audio Sync"
 msgstr "Audio Sync"
@@ -1007,6 +1027,15 @@ msgstr ""
 "Das hauptsächliche und erforderliche Kriterium ist eine Textsuche im Titel "
 "der Sendung."
 
+msgid "AutoTimer was added successfully"
+msgstr "AutoTimer erfolgreich hinzugefügt"
+
+msgid "AutoTimer was changed successfully"
+msgstr "AutoTimer erfolgreich geändert"
+
+msgid "AutoTimer was removed"
+msgstr "AutoTimer wurde entfernt"
+
 #
 msgid "Automatic"
 msgstr "Automatisch"
@@ -1043,6 +1072,26 @@ msgstr "Aktualisiert automatisch EPG-Informationen"
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr "Automatisches Versenden von Crashlogs an Dream Multimedia"
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+"Autoresolution Plugin Testmodus:\n"
+"Ist %s ok?"
+
+msgid "Autoresolution Switch"
+msgstr "Autoresolution Schalter"
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Autoresolution funktioniert nicht im Scart/DVI-PC Modus"
+
+msgid "Autoresolution settings"
+msgstr "Autoresolution Einstellungen"
+
+msgid "Autoresolution videomode setup"
+msgstr "Autoresolution Videomodus Einstellungen"
+
 #
 msgid "Autos & Vehicles"
 msgstr "Autos und Fahrzeuge"
@@ -1085,6 +1134,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Zurück"
 
+msgid "Back, lower USB Slot"
+msgstr "Hinterer, unterer USB Port"
+
+msgid "Back, upper USB Slot"
+msgstr "Hinterer, oberer USB Port"
+
 #
 msgid "Background"
 msgstr "Hintergrund"
@@ -1149,7 +1204,6 @@ msgstr "Verhalten beim Filmende"
 msgid "Bitrate:"
 msgstr "Bitrate:"
 
-#
 msgid "Block noise reduction"
 msgstr ""
 
@@ -1179,6 +1233,11 @@ msgstr "Brasilien"
 msgid "Brightness"
 msgstr "Helligkeit"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr "ORF und SAT1 Internet Teletext für die Dreambox."
+
 msgid "Browse for and connect to network shares"
 msgstr "Durchsucht das Netzwerk nach NFS/CIFS Freigaben"
 
@@ -1210,6 +1269,19 @@ msgstr "Brennt Aufnahmen auf DVD"
 msgid "Bus: "
 msgstr "Bus:"
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr "Keine Events finden wenn Sie nicht an bestimmten Tagen auftreten."
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+"Wenn Sie dies aktivieren werden Sie über Konflikte beim automatischen suchen "
+"benachrichtigt."
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1480,20 +1552,10 @@ msgstr "Schließen und Speichern"
 msgid "Close title selection"
 msgstr "Titelauswahl schließen"
 
-#
-msgid "Code rate high"
-msgstr "Empfangsrate hoch"
-
-#
-msgid "Code rate low"
-msgstr "Empfangsrate niedrig"
-
-#
-msgid "Coderate HP"
+msgid "Code rate HP"
 msgstr "Empfangsrate HP"
 
-#
-msgid "Coderate LP"
+msgid "Code rate LP"
 msgstr "Empfangsrate LP"
 
 #
@@ -1682,6 +1744,10 @@ msgstr "Bild in Bild konnte nicht geöffnet werden."
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Aufnahme wegen in Konflikt stehendem Timer %s fehlgeschlagen"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr "Aufnahme wegen unbekanntem Service %s fehlgeschlagen"
+
 #
 msgid "Crashlog settings"
 msgstr "Crashlog Einstellungen"
@@ -1869,6 +1935,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr "DVD Laufwerk"
+
 #
 msgid "DVD File Browser"
 msgstr "DVD Datei Browser"
@@ -1883,7 +1952,7 @@ msgstr "DVD Titelliste"
 
 #
 msgid "DVD media toolbox"
-msgstr ""
+msgstr "DVD Medien-Toolbox"
 
 msgid "DVDPlayer plays your DVDs on your Dreambox"
 msgstr "Spielt DVDs mit dem DVDPlayer der Dreambox ab"
@@ -1940,9 +2009,8 @@ msgstr "Standard"
 msgid "Default Settings"
 msgstr "Voreinstellungen"
 
-#
 msgid "Default movie location"
-msgstr ""
+msgstr "Standard Filmlisten Ort"
 
 #
 msgid "Default services lists"
@@ -1959,10 +2027,19 @@ msgstr "Legt einen Startsender fest"
 msgid "Define a startup service for your Dreambox."
 msgstr "StartUpService legen Sie einen Startsender Ihrer Dreambox fest."
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr "Deinterlacer Modus für Interlaced Inhalte"
+
+msgid "Deinterlacer mode for progressive content"
+msgstr "Deinterlacer Modus für Progressive Inhalte"
+
 #
 msgid "Delay"
 msgstr "Verzögerung"
 
+msgid "Delay x seconds after service started"
+msgstr "Warte x Sekunden nach dem Starten eines Services"
+
 #
 msgid "Delete"
 msgstr "Löschen"
@@ -2148,6 +2225,14 @@ msgstr ""
 "Möchten Sie das Dateisystem wirklich überprüfen?\n"
 "Die Überprüfung könnte einige Zeit in Anspruch nehmen."
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+"Möchten Sie wirklich %s löschen\n"
+"%s?"
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2345,6 +2430,13 @@ msgstr "Daten-DVD im Dreambox-Format (HDTV-kompatibel)"
 msgid "Dreambox software because updates are available."
 msgstr "Dreambox Software, da Updates verfügbar sind."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+"Treiber für Ralink RT8070/RT3070/RT3370 basierte wireless-n USB Sticks."
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr "Treiber für Realtek r8712u basierte wireless-n USB Sticks."
+
 #
 msgid "Duration: "
 msgstr "Dauer: "
@@ -2493,10 +2585,25 @@ msgstr "Ein"
 msgid "Enable /media"
 msgstr "Aktiviere /media"
 
+msgid "Enable 1080p24 Mode"
+msgstr "Aktiviere 1080p24 Modus"
+
+msgid "Enable 1080p25 Mode"
+msgstr "Aktiviere 1080p25 Modus"
+
+msgid "Enable 1080p30 Mode"
+msgstr "Aktiviere 1080p30 Modus"
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "5V für aktive Antenne"
 
+msgid "Enable 720p24 Mode"
+msgstr "Aktiviere 720p24 Modus"
+
+msgid "Enable Autoresolution"
+msgstr "Aktiviere Autoresolution"
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr "Aufräumassistent aktivieren?"
@@ -2624,18 +2731,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Anfängliche Vorlaufgeschwindigkeit eingeben"
-
-#
 msgid "Enter IP to scan..."
 msgstr "IP zum Scannen eingeben..."
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Anfängliche Rücklaufgeschwindigkeit eingeben"
-
-#
 msgid "Enter main menu..."
 msgstr "Öffne Hauptmenü..."
 
@@ -2710,6 +2809,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estnisch"
 
+msgid "Ethernet network interface"
+msgstr "Ethernet Netzwerkadapter"
+
 #
 msgid "Eventview"
 msgstr "Programmübersicht"
@@ -2914,6 +3016,13 @@ msgstr "Netzwerkneustart abgeschlossen"
 msgid "Finnish"
 msgstr "Finnisch"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+"Erster berücksichtigter Tag. Sendungen, die vor diesem Datum begonnen haben "
+"werden nicht erfasst."
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr "Generieren Sie Ihren Ai.HD Skin-Stil mit diesem Plugin."
 
@@ -2933,6 +3042,14 @@ msgstr "Folgendes wird ausgeführt nachdem Sie OK gedrückt haben!"
 msgid "Format"
 msgstr "Formatieren"
 
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+"Habe insgesamt %d Sendungen gefunden.\n"
+"%d Timer wurden hinzugefügt und %d geändert, %d Konflikte gefunden."
+
 #
 #, python-format
 msgid ""
@@ -2943,10 +3060,6 @@ msgstr ""
 "%d Timer wurden hinzugefügt und %d geändert."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Einzelbild-Wiederholung beim nicht flüssigen Spulen"
-
-#
 msgid "Frame size in full view"
 msgstr ""
 
@@ -2991,6 +3104,9 @@ msgstr ""
 "FritzCall zeigt die bei Ihrer Fritz!Box eingehenden Anrufe auf der Dreambox "
 "an."
 
+msgid "Front USB Slot"
+msgstr "Vorderer USB Port"
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr "Frontend für /tmp/mmi.socket"
 
@@ -3050,6 +3166,9 @@ msgstr "Allgemeine PCM Verzögerung"
 msgid "General PCM delay (ms)"
 msgstr "Generelles PCM delay (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr "Generiert und zeigt TV Charts aller Nutzer dieses Plugins"
+
 #
 msgid "Genre"
 msgstr "Kategorie"
@@ -3130,26 +3249,27 @@ msgid "Green boost"
 msgstr "Grünanteil erhöhen"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 "Mit Growlee kann Ihre Dreambox Nachrichten mittels des Growl-Protokolls "
-"verschicken,\n"
-"wie z.B. Aufnahme gestartet-Benachrichtigungen an einen PC mit Growl-Client."
+"verschicken,wie z.B. Aufnahme gestartet-Benachrichtigungen an einen PC mit "
+"Growl-Client."
 
-#
-msgid "Guard Interval"
+msgid "Guard interval"
 msgstr ""
 
 #
-msgid "Guard interval mode"
-msgstr "Guard Interval Modus"
-
-#
 msgid "Guess existing timer based on begin/end"
 msgstr "Bestimme bestehende Timer anhand Anfang-/Endzeit"
 
+msgid "HD Interlace Mode"
+msgstr "HD Interlace Modus"
+
+msgid "HD Progressive Mode"
+msgstr "HD Progressiv Modus"
+
 #
 msgid "HD videos"
 msgstr "HD Videos"
@@ -3178,6 +3298,9 @@ msgstr "Festplatten-Standby nach"
 msgid "Help"
 msgstr "Hilfe"
 
+msgid "Hidden network"
+msgstr "Verstecktes Netzwerk"
+
 #
 msgid "Hidden network SSID"
 msgstr "Versteckte Netzwerk SSID"
@@ -3186,13 +3309,8 @@ msgstr "Versteckte Netzwerk SSID"
 msgid "Hidden networkname"
 msgstr "versteckte SSID"
 
-#
-msgid "Hierarchy Information"
-msgstr "Hierarchieinformationen"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hierarchiemodus"
+msgid "Hierarchy info"
+msgstr "Hierarchie Information"
 
 #
 msgid "High bitrate support"
@@ -3263,14 +3381,11 @@ msgstr "ISO-Ausgabepfad"
 msgid "Icelandic"
 msgstr "Isländisch"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"Ist dies aktiv, so wird wird ab eine Schwelle von 80% ein bestehender Timer "
-"einer Sendung zugeordnet."
 
 #
 msgid ""
@@ -3375,9 +3490,14 @@ msgstr "Informationen"
 msgid "Init"
 msgstr "Initialisieren"
 
-#
+msgid "Initial Fast Forward speed"
+msgstr "Initiale Schnellvorlauf-Geschwindigkeit"
+
+msgid "Initial Rewind speed"
+msgstr "Initiale Rücklauf-Geschwindigkeit"
+
 msgid "Initial location in new timers"
-msgstr ""
+msgstr "Initialer Ort für neue Timer"
 
 #
 msgid "Initialization"
@@ -3476,6 +3596,9 @@ msgstr "Interner Flash"
 msgid "Internal LAN adapter."
 msgstr "Interner LAN Adapter."
 
+msgid "Internal USB Slot"
+msgstr "Interner USB Port"
+
 msgid "Internal firmware updater"
 msgstr "Interner Firmwareupdater"
 
@@ -3565,10 +3688,9 @@ msgstr "Japan"
 msgid "Job View"
 msgstr "Jobansicht"
 
-#
 #. TRANSLATORS: (aspect ratio policy: display as fullscreen, even if this breaks the aspect)
 msgid "Just Scale"
-msgstr ""
+msgstr "Nur Skalieren"
 
 msgid "Kerni's BrushedAlu-HD skin"
 msgstr "Kerni's BrushedAlu-HD Skin"
@@ -3681,6 +3803,13 @@ msgstr "Sprachauswahl"
 msgid "Last config"
 msgstr "Letzte Konfiguration"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+"Letzter Tag berücksichtigter Tag. Sendungen müssen vor diesem Datum begonnen "
+"haben."
+
 #
 msgid "Last speed"
 msgstr "Letzte Geschwindigkeit"
@@ -3701,10 +3830,9 @@ msgstr "DVD Player beenden?"
 msgid "Left"
 msgstr "Links"
 
-#
 #. TRANSLATORS: (aspect ratio policy: black bars on top/bottom) in doubt, keep english term.
 msgid "Letterbox"
-msgstr ""
+msgstr "Letterbox"
 
 #
 msgid "Limit east"
@@ -3738,6 +3866,9 @@ msgstr "Verbindung:"
 msgid "Linked titles with a DVD menu"
 msgstr "Verknüpfte Titel mit einem DVD-Menü"
 
+msgid "List available networks"
+msgstr "Zeige verfügbare Netzwerke"
+
 #
 msgid "List of Storage Devices"
 msgstr "Speichergeräteliste"
@@ -3880,6 +4011,9 @@ msgstr "Verwalten Sie die Software Ihrer Dreambox."
 msgid "Manual Scan"
 msgstr "Manuelle Suche"
 
+msgid "Manual configuration"
+msgstr "Manuelle Konfiguration"
+
 #
 msgid "Manual transponder"
 msgstr "Manueller Transponder"
@@ -3910,9 +4044,8 @@ msgstr "Finde in Titel"
 msgid "Match title: %s"
 msgstr "Finde Titel: %s"
 
-#
 msgid "Max. Bitrate: "
-msgstr ""
+msgstr "Max. Bitrate: "
 
 #
 msgid "Maximum duration (in m)"
@@ -4181,6 +4314,9 @@ msgstr "Aufnahmen-Menü"
 msgid "Multi EPG"
 msgstr "Multi-EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr "Multi-EPG Bouquet Auswahl"
+
 #
 msgid "Multimedia"
 msgstr "Multimedia"
@@ -4189,6 +4325,9 @@ msgstr "Multimedia"
 msgid "Multiple service support"
 msgstr "Kann mehrere Sender entschlüsseln"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4250,7 +4389,7 @@ msgstr "NÄCHSTE"
 
 #
 msgid "NFI Image Flashing"
-msgstr ""
+msgstr "NFI Image Flashing"
 
 msgid "NFI image flashing completed. Press Yellow to Reboot!"
 msgstr ""
@@ -4261,6 +4400,9 @@ msgstr ""
 msgid "NFS share"
 msgstr "NFS Freigabe"
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "JETZT"
@@ -4290,6 +4432,9 @@ msgstr "DNS-Einstellungen"
 msgid "Nameserver settings"
 msgstr "DNS-Einstellungen"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr "Nemesis BlackBox Skin"
 
@@ -4445,6 +4590,9 @@ msgstr "Netzwerkbrowser"
 msgid "NetworkWizard"
 msgstr "Netzwerkassistent"
 
+msgid "Networkname (SSID)"
+msgstr "Netzwerkname (SSID)"
+
 #
 msgid "Never"
 msgstr "Niemals"
@@ -4619,6 +4767,9 @@ msgstr "Keine Videos zum anzeigen"
 msgid "No wireless networks found! Please refresh."
 msgstr "Keine Funk-Netzwerke gefunden! Bitte aktualisieren."
 
+msgid "No wireless networks found! Searching..."
+msgstr "Keine Funk-Netzwerke gefunden! Suche ..."
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4713,6 +4864,12 @@ msgstr "Nord"
 msgid "Norwegian"
 msgstr "Norwegisch"
 
+msgid "Not after"
+msgstr "Nicht nach"
+
+msgid "Not before"
+msgstr "Nicht vor"
+
 #
 #, python-format
 msgid ""
@@ -4726,6 +4883,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Lade keine feed Einträge"
 
+msgid "Not-Associated"
+msgstr "Nicht verbunden"
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4769,6 +4929,9 @@ msgstr "OK, noch eine Erweiterung entfernen."
 msgid "OK, remove some extensions"
 msgstr "OK, Erweiterungen entfernen."
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "OSD-Einstellungen"
@@ -4838,9 +5001,8 @@ msgstr "Plugin menu öffnen"
 msgid "Optionally enter your name if you want to."
 msgstr "Optional können Sie hier Ihren Namen eingeben."
 
-#
-msgid "Orbital Position"
-msgstr "Orbit Position"
+msgid "Orbital position"
+msgstr "Orbitale Position"
 
 #
 msgid "Outer Bound (+/-)"
@@ -4863,10 +5025,16 @@ msgstr "Konfigurationsdateien beim Software-Update überschreiben ?"
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Paketlistenaktualisierung"
@@ -4936,7 +5104,7 @@ msgid "PermanentClock shows the clock permanently on the screen."
 msgstr "PermanentClock zeigt die Uhrzeit permanent auf Ihrem Fernseher an."
 
 msgid "Persian"
-msgstr ""
+msgstr "Persisch"
 
 #
 msgid "Pets & Animals"
@@ -5326,10 +5494,6 @@ msgid "Poland"
 msgstr "Polen"
 
 #
-msgid "Polarity"
-msgstr "Polarität"
-
-#
 msgid "Polarization"
 msgstr "Polarisation"
 
@@ -5365,6 +5529,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "portugiesisch"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr "Position beendeter Timer in der Timerliste"
+
 #
 msgid "Positioner"
 msgstr "Rotor"
@@ -5582,6 +5749,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr "Betrachten von RSS-Links"
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr "RT8070/RT3070/RT3370 USB wireless-n Treiber"
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5694,6 +5864,9 @@ msgstr "Aufnahmen"
 msgid "Recordings always have priority"
 msgstr "Aufnahmen haben immer Vorrang"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr "Sendet Benachrichtigungen an Growl, Snarl, Prowl oder Syslog"
+
 msgid "Reenter new PIN"
 msgstr "Neuen PIN erneut eingeben"
 
@@ -5920,6 +6093,9 @@ msgstr "Wiederherstellen der Dreambox mittels USB-Stick"
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr "\"Nach dem Event\" nur in einem bestimmten Zeitraum setzen?"
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "An letzter Position fortsetzen"
@@ -5960,8 +6136,7 @@ msgstr "Rücklauf-Geschwindigkeiten"
 msgid "Right"
 msgstr "Rechts"
 
-#
-msgid "Rolloff"
+msgid "Roll-off"
 msgstr ""
 
 #
@@ -5972,6 +6147,9 @@ msgstr "Rotor Drehgeschwindigkeit"
 msgid "Running"
 msgstr "Aktiviert"
 
+msgid "Running in testmode"
+msgstr "Testmodus aktiv"
+
 #
 msgid "Russia"
 msgstr "Russland"
@@ -5984,6 +6162,21 @@ msgstr "Russisch"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr "SD 25/50HZ Interlace Modus"
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr "SD 25/50HZ Progressiv Modus"
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr "SD 30/60HZ Interlace Modus"
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr "SD 30/60HZ Progressiv Modus"
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -6000,6 +6193,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr "SVDRP Server für Enigma2"
+
 #
 msgid "Sat"
 msgstr "Sa"
@@ -6034,9 +6240,8 @@ msgstr "Sat-Finder"
 msgid "Satfinder helps you to align your dish"
 msgstr "Hilft beim Ausrichten der Satellitenanlage"
 
-#
 msgid "Sats"
-msgstr ""
+msgstr "Satelliten"
 
 #
 msgid "Saturation"
@@ -6473,6 +6678,9 @@ msgstr ""
 "Kanal nicht gefunden!\n"
 "(SID nicht in PAT gefunden)"
 
+msgid "Service reference"
+msgstr "Service Referenz"
+
 #
 msgid "Service scan"
 msgstr "Kanalsuche"
@@ -6611,6 +6819,9 @@ msgstr "Zeige Sendungs-Fortschritt in der Kanal-Liste"
 msgid "Show in extension menu"
 msgstr "In Erweiterungsmenü anzeigen"
 
+msgid "Show info screen"
+msgstr "Zeige Informationen"
+
 #
 msgid "Show infobar on channel change"
 msgstr "Zeige Infobar beim Kanalwechsel"
@@ -6623,6 +6834,9 @@ msgstr "Zeige Infobar beim Sendungswechsel"
 msgid "Show infobar on skip forward/backward"
 msgstr "Zeige Infobar beim Spulen"
 
+msgid "Show notification on conflicts"
+msgstr "Zeige Benachrichtigung bei Konflikten"
+
 #
 msgid "Show positioner movement"
 msgstr "Rotorbewegung anzeigen"
@@ -6899,6 +7113,9 @@ msgstr "Standby Lüfter %d Spannung"
 msgid "Start Webinterface"
 msgstr "Webinterface starten"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr "Starten von Multimedia Plugins mit der PVR Taste "
+
 #
 msgid "Start from the beginning"
 msgstr "Am Anfang starten"
@@ -7022,6 +7239,9 @@ msgstr "So"
 msgid "Sunday"
 msgstr "Sonntag"
 
+msgid "Support \"Fast Scan\"?"
+msgstr "Unterstütze \"Fast Scan\"?"
+
 #
 msgid "Swap Services"
 msgstr "Kanäle tauschen"
@@ -7046,12 +7266,7 @@ msgstr "Zum vorhergehenden Unterkanal schalten"
 msgid "Switchable tuner types:"
 msgstr "Umschaltbare Tuner-Typen:"
 
-#
-msgid "Symbol Rate"
-msgstr "Symbolrate"
-
-#
-msgid "Symbolrate"
+msgid "Symbol rate"
 msgstr "Symbolrate"
 
 #
@@ -7067,10 +7282,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS-Datei ist zu groß für ISO9660 level 1!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr "TV Charts aller teilnehmenden Nutzer"
+
 #
 msgid "TV System"
 msgstr "Fernsehnorm"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Inhalt der Zusammenstellung"
@@ -7103,6 +7327,9 @@ msgstr "Taiwan"
 msgid "Temperature and Fan control"
 msgstr "Temperatur- und Lüfter-Regelung"
 
+msgid "Temperature-dependent fan control."
+msgstr "Temperaturabhängige Lüfter Steuerung"
+
 #
 msgid "Terrestrial"
 msgstr "Terrestrisch"
@@ -7867,10 +8094,6 @@ msgid "Translation:"
 msgstr "Übersetzung:"
 
 #
-msgid "Transmission Mode"
-msgstr "Übertragungsmodus"
-
-#
 msgid "Transmission mode"
 msgstr "Übertragungstyp"
 
@@ -7879,10 +8102,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Transponder-Typ"
-
-#
 msgid "Travel & Events"
 msgstr "Reisen & Events"
 
@@ -8010,6 +8229,9 @@ msgstr "Installation zurücksetzen."
 msgid "Undo uninstall"
 msgstr "Deinstallation zurücksetzen."
 
+msgid "Unencrypted"
+msgstr "Unverschlüsselt"
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -8038,6 +8260,9 @@ msgstr "USA"
 msgid "Universal LNB"
 msgstr "Universal-LNB"
 
+msgid "Unknown"
+msgstr "Unbekannt"
+
 msgid "Unknown network adapter."
 msgstr "Unbekannter Netzwerk Adapter."
 
@@ -8162,10 +8387,6 @@ msgstr ""
 "verwenden."
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr ""
-
-#
 msgid "Use power measurement"
 msgstr "Stromaufnahme messen"
 
@@ -8244,18 +8465,27 @@ msgstr "Scart-Videorekorder"
 
 #
 msgid "VMGM (intro trailer)"
-msgstr ""
+msgstr "VMGM (Intro-Trailer)"
 
 msgid "Vali-XD skin"
 msgstr "Vali-XD Skin"
 
+msgid "Vali.HD.atlantis skin"
+msgstr "Vali.HD.atlantis Skin"
+
 msgid "Vali.HD.nano skin"
 msgstr "Vali.HD.nano Skin"
 
+msgid "Vali.HD.warp skin"
+msgstr "Vali.HD.warp Skin"
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr "Mit GenuineDreambox können Sie die Echtheit Ihrer Dreambox überprüfen."
 
+msgid "Verifying your internet connection..."
+msgstr "Überprüfe Ihre Internet Verbindung..."
+
 #
 msgid "Vertical"
 msgstr "Vertikal"
@@ -8272,6 +8502,9 @@ msgstr "Video-Feineinstellungs-Assistent"
 msgid "Video Output"
 msgstr "Videoausgabe"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Video-Konfiguration"
@@ -8460,6 +8693,8 @@ msgid ""
 "Visualize and control your lights, dimmers, blinds, thermostats etc. through "
 "EIB/KNX. (linknx server required)"
 msgstr ""
+"Visualisierung und Steuerung von Lichtschaltern, Dimmern, Rollos, "
+"Thermostaten usw.  über EIB/KNX. (linknx-Server erforderlich)"
 
 #
 msgid "Voltage mode"
@@ -8520,6 +8755,9 @@ msgstr "WeatherPlugin zeigt Ihnen aktuelle Wettervorhersagen an."
 msgid "Weatherforecast on your Dreambox"
 msgstr "Zeigt aktuelle Wettervorhersagen an"
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr "Web-Bouquet-Editor für den PC"
+
 #
 msgid "Webinterface"
 msgstr "Webinterface"
@@ -8703,6 +8941,11 @@ msgstr "Was wollen Sie scannen?"
 msgid "What to do with submitted crashlogs?"
 msgstr "Übermittelte Crashlogs:"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8747,6 +8990,15 @@ msgstr "Funk-Netzwerk"
 msgid "Wireless Network State"
 msgstr "WLAN-Netzwerk Status"
 
+msgid "Wireless network connection setup"
+msgstr "Funk-Netzwerk Konfiguration"
+
+msgid "Wireless network connection setup."
+msgstr "Funk-Netzwerk Konfiguration."
+
+msgid "Wireless network state"
+msgstr "Funk-Netzwerk Status"
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -9014,6 +9266,12 @@ msgstr ""
 "Attribut \"Name\" ist eine Beschreibung innerhalb der Overview während "
 "\"Finde in Titel\" der gesuchte Text im Sendungsnamen ist."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Löschen nicht möglich!"
@@ -9108,6 +9366,10 @@ msgid ""
 "\n"
 "Do you want to set the pin now?"
 msgstr ""
+"Sie müssen eine PIN-Schlüsselnummer festlegen, die sie vor ihren Kindern "
+"geheim halten.\n"
+"\n"
+"Wollen sie nun eine PIN eingeben?"
 
 #
 msgid ""
@@ -9229,6 +9491,9 @@ msgstr "Ihr Name (optional):"
 msgid "Your network configuration has been activated."
 msgstr "Ihre Netzwerk-Konfiguration wurde aktiviert."
 
+msgid "Your network is not working. Please try again."
+msgstr "Ihr Netzwerk funktioniert nicht. Bitte versuchen Sie es erneut."
+
 #
 msgid "Your network mount has been activated."
 msgstr "Ihre Netzwerkfreigabe wurde aktiviert."
@@ -9455,6 +9720,12 @@ msgstr "zugewiesene CAIDs:"
 msgid "assigned Services/Provider:"
 msgstr "zugewiesene Services/Provider:"
 
+msgid "at beginning"
+msgstr "Am Anfang"
+
+msgid "at end"
+msgstr "Am Ende"
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9473,6 +9744,9 @@ msgstr "Tonspuren"
 msgid "auto"
 msgstr "automatisch"
 
+msgid "autotimers need a match attribute"
+msgstr "Autotimer brauchen ein Suchkriterium."
+
 #
 msgid "available"
 msgstr "verfügbar"
@@ -9505,6 +9779,9 @@ msgstr "Negativliste"
 msgid "blue"
 msgstr "blau"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9546,6 +9823,9 @@ msgstr "Wiedergabeliste leeren"
 msgid "complex"
 msgstr "Komplex"
 
+msgid "config changed."
+msgstr "Konfiguration geändert."
+
 #
 msgid "config menu"
 msgstr "Konfigurationsmenü"
@@ -9578,6 +9858,12 @@ msgstr "konnte nicht entfernt werden"
 msgid "create directory"
 msgstr "Verzeichnis erstellen"
 
+msgid "creates virtual series folders from episodes"
+msgstr "Erzeugt virtuelle Ordner aus Episoden von Serien "
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr "Erzeugt virtuelle Ordner aus aufgenommenen Episoden von Serien"
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr "Derzeit installiertes Image: %s"
@@ -9590,6 +9876,9 @@ msgstr "täglich"
 msgid "day"
 msgstr "Tag"
 
+msgid "default"
+msgstr "Standard"
+
 #
 msgid "delete"
 msgstr "Löschen"
@@ -9617,17 +9906,15 @@ msgstr "löschen..."
 msgid "description"
 msgstr "Beschreibung"
 
-#
 msgid "disable"
-msgstr "ausgeschalten"
+msgstr "deaktivieren"
 
 #
 msgid "disable move mode"
 msgstr "Verschiebemodus ausschalten"
 
-#
 msgid "disabled"
-msgstr "abgeschaltet"
+msgstr "deaktiviert"
 
 #
 msgid "disconnected"
@@ -9649,6 +9936,9 @@ msgstr "Nicht aufnehmen"
 msgid "done!"
 msgstr "erledigt!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr "Treiber für Realtek r8712u USB wireless-n Sticks."
+
 #
 msgid "edit alternatives"
 msgstr "Alternativen bearbeiten"
@@ -9665,9 +9955,8 @@ msgstr "Sender bearbeiten"
 msgid "empty"
 msgstr "leer"
 
-#
 msgid "enable"
-msgstr "einschalten"
+msgstr "aktivieren"
 
 #
 msgid "enable bouquet edit"
@@ -9681,9 +9970,8 @@ msgstr "Favoriteneditor anschalten"
 msgid "enable move mode"
 msgstr "Verschiebemodus aktivieren"
 
-#
 msgid "enabled"
-msgstr "angeschaltet"
+msgstr "aktiviert"
 
 #
 msgid "end alternatives edit"
@@ -9929,6 +10217,9 @@ msgstr "Minute"
 msgid "minutes"
 msgstr "Minuten"
 
+msgid "missing parameter \"id\""
+msgstr "fehlender Parameter \"id\""
+
 #
 msgid "month"
 msgstr "Monat"
@@ -10127,9 +10418,6 @@ msgstr "rot"
 msgid "redesigned Kerni-HD1 skin"
 msgstr "Redesigned Kerni-HD1 Skin"
 
-msgid "redirect notifications to Growl"
-msgstr "Sendet Benachrichtigungen an Growl "
-
 #
 msgid "remove a nameserver entry"
 msgstr "DNS-Servereintrag entfernen"
@@ -10466,6 +10754,10 @@ msgstr "Schalte zwischen Zeit-, Kapitel-, Audio- und Untertitel-Info um"
 msgid "tuner is not supported"
 msgstr "nicht unterstützter Tuner"
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr "Finde Timer mit ID %i nicht"
+
 #
 msgid "unavailable"
 msgstr "nicht verfügbar"
@@ -10536,6 +10828,9 @@ msgstr "wöchentlich"
 msgid "whitelist"
 msgstr "Positivliste"
 
+msgid "wireless network interface"
+msgstr "Funk Netzwerkadapter"
+
 #
 msgid "working"
 msgstr "arbeite"
@@ -10567,3 +10862,91 @@ msgstr "umschalten"
 #
 msgid "zapped"
 msgstr "umgeschaltet"
+
+#~ msgid "A BackToTheRoots-Skin ... or good old times."
+#~ msgstr "Ein BackToTheRoots-Skin ... der guten alten Zeiten wegen."
+
+#
+#~ msgid "Code rate high"
+#~ msgstr "Empfangsrate hoch"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Empfangsrate niedrig"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Empfangsrate HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Empfangsrate LP"
+
+#
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Anfängliche Vorlaufgeschwindigkeit eingeben"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Anfängliche Rücklaufgeschwindigkeit eingeben"
+
+#
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Einzelbild-Wiederholung beim nicht flüssigen Spulen"
+
+#~ msgid ""
+#~ "Growlee allows your Dreambox to send short messages using the growl "
+#~ "protocol\n"
+#~ "like Recording started notifications to a PC running a growl client"
+#~ msgstr ""
+#~ "Mit Growlee kann Ihre Dreambox Nachrichten mittels des Growl-Protokolls "
+#~ "verschicken,\n"
+#~ "wie z.B. Aufnahme gestartet-Benachrichtigungen an einen PC mit Growl-"
+#~ "Client."
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Guard Interval Modus"
+
+#
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hierarchieinformationen"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hierarchiemodus"
+
+#
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Ist dies aktiv, so wird wird ab eine Schwelle von 80% ein bestehender "
+#~ "Timer einer Sendung zugeordnet."
+
+#
+#~ msgid "Orbital Position"
+#~ msgstr "Orbit Position"
+
+#
+#~ msgid "Polarity"
+#~ msgstr "Polarität"
+
+#
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbolrate"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolrate"
+
+#
+#~ msgid "Transmission Mode"
+#~ msgstr "Übertragungsmodus"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Transponder-Typ"
+
+#~ msgid "redirect notifications to Growl"
+#~ msgstr "Sendet Benachrichtigungen an Growl "
index 92b1125..ef1b27c 100755 (executable)
--- a/po/el.po
+++ b/po/el.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2008-07-17 12:13+0100\n"
 "Last-Translator: \n"
 "Language-Team: \n"
@@ -167,6 +167,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -205,6 +211,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -361,10 +371,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -385,6 +395,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -408,6 +421,9 @@ msgstr "Γραφικό EPG για ολα τα κανάλια σε συγκεκρ
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -860,6 +876,9 @@ msgstr "Ορισμός από το χρήστη"
 msgid "Aspect Ratio"
 msgstr "Aspect Ratio"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -874,6 +893,9 @@ msgstr "Ήχος"
 msgid "Audio Options..."
 msgstr "Παράμετροι ήχου"
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -940,6 +962,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Αυτόματο"
@@ -974,6 +1005,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1016,6 +1065,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Πίσω"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr ""
@@ -1110,6 +1165,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Φωτεινότητα"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1139,6 +1199,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Bus:"
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1405,20 +1476,10 @@ msgstr ""
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Υψηλό Code rate"
-
-#
-msgid "Code rate low"
-msgstr "Χαμηλό Code rate"
-
-#
-msgid "Coderate HP"
+msgid "Code rate HP"
 msgstr ""
 
-#
-msgid "Coderate LP"
+msgid "Code rate LP"
 msgstr ""
 
 #
@@ -1603,6 +1664,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr ""
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr ""
@@ -1782,6 +1847,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1867,10 +1935,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Αργοπορία"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Διαγραφή"
@@ -2054,6 +2131,12 @@ msgstr ""
 "Είστε σίγουρος οτι θέλετε να εξετάσετε το filesystem;\n"
 "Ενδεχομένος να πάρει αρκετό χρονικό διάστημα!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2249,6 +2332,12 @@ msgstr ""
 msgid "Dreambox software because updates are available."
 msgstr ""
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2390,10 +2479,25 @@ msgstr "Ενεργοποίηση"
 msgid "Enable /media"
 msgstr ""
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Ενεργοποίηση των 5 V για την ενεργή κεραία"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2514,18 +2618,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Παραμετροποιήσετε την ταχύτητα Fast Forward"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Παραμετροποιήσετε την ταχύτητα Rewind "
-
-#
 msgid "Enter main menu..."
 msgstr "Είσοδος στο κεντρικό μενού..."
 
@@ -2596,6 +2692,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Eventview"
@@ -2794,6 +2893,11 @@ msgstr ""
 msgid "Finnish"
 msgstr "Φιλλανδικά"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2813,15 +2917,17 @@ msgstr ""
 msgid "Format"
 msgstr ""
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
 msgstr ""
 
 #
@@ -2867,6 +2973,9 @@ msgstr ""
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2921,6 +3030,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Genre"
@@ -3001,23 +3113,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
+msgid "Guard interval"
 msgstr ""
 
 #
-msgid "Guard interval mode"
-msgstr "Guard interval mode"
-
-#
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3046,6 +3159,9 @@ msgstr "Ο σκληρός δίσκος θα τεθεί σε αναμονή σε"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr ""
@@ -3054,13 +3170,8 @@ msgstr ""
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Πληροφωρίες ιεραρχίας"
-
-#
-msgid "Hierarchy mode"
-msgstr "mode ιεραρχίας"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3131,11 +3242,10 @@ msgstr ""
 msgid "Icelandic"
 msgstr "Ισλανδικά"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3237,6 +3347,12 @@ msgstr "Πληροφορίες"
 msgid "Init"
 msgstr "Init"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3338,6 +3454,9 @@ msgstr "Εσωτερική Flash"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3535,6 +3654,11 @@ msgstr "Επιλογή γλώσσας"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Τελευταία ταχύτητα"
@@ -3592,6 +3716,9 @@ msgstr "Link:"
 msgid "Linked titles with a DVD menu"
 msgstr ""
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Λίστα με τα μέσα αποθήκευσης"
@@ -3728,6 +3855,9 @@ msgstr ""
 msgid "Manual Scan"
 msgstr "Χειροκίνητη ανεύρεση"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Χειροκίνητος transponder"
@@ -4015,6 +4145,9 @@ msgstr "Μένου λίστας Movie"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr ""
@@ -4023,6 +4156,9 @@ msgstr ""
 msgid "Multiple service support"
 msgstr "Υποστήριξη πολλαπλών λειτουργιών"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4092,6 +4228,9 @@ msgstr ""
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "ΤΩΡΑ"
@@ -4121,6 +4260,9 @@ msgstr "Nameserver Setup"
 msgid "Nameserver settings"
 msgstr "Παραμετροποιήσης Nameserver "
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4276,6 +4418,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr "Wizard δυκτίου"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4447,6 +4592,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4532,6 +4680,12 @@ msgstr "Βορράς"
 msgid "Norwegian"
 msgstr "Νορβηφικά"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4543,6 +4697,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4584,6 +4741,9 @@ msgstr ""
 msgid "OK, remove some extensions"
 msgstr ""
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "Παραμετροποιήσης OSD"
@@ -4653,9 +4813,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr ""
 
-#
-msgid "Orbital Position"
-msgstr "Orbital Position"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4678,10 +4837,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Αναβάθμηση του Package list"
@@ -5122,10 +5287,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Πολικότητα"
-
-#
 msgid "Polarization"
 msgstr "Πόλωση"
 
@@ -5161,6 +5322,9 @@ msgstr "Πόρτα D"
 msgid "Portuguese"
 msgstr "Πορτογαλλικά"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Positioner"
@@ -5376,6 +5540,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Ραδιόφωνο"
@@ -5486,6 +5653,9 @@ msgstr ""
 msgid "Recordings always have priority"
 msgstr "Οι εγγραφές έχουν πάντα προτεραιότητα"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5707,6 +5877,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Συνέχεια απο τελευταίο σημείο"
@@ -5747,9 +5920,8 @@ msgstr "Ταχύτητα Rewind "
 msgid "Right"
 msgstr "Δεξιά"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5759,6 +5931,9 @@ msgstr "Ταχύτητα του ρότορα"
 msgid "Running"
 msgstr "Τρέχει"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5771,6 +5946,21 @@ msgstr "Ρωσικά"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5787,6 +5977,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Δορθφόρος"
@@ -6249,6 +6452,9 @@ msgstr ""
 "Η υπηρεσία δεν βρέθηκε\n"
 "(SID not found in PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Ανεύρεση υπηρεσίων"
@@ -6383,6 +6589,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Εμφάνηζει την infobar με κάθε αλλαγή καναλιού"
@@ -6395,6 +6604,9 @@ msgstr "Εμφάνηζει infobar σε αλλαγή του event "
 msgid "Show infobar on skip forward/backward"
 msgstr "Εμφάνηζει το  infobar όταν κάνεις forward/backward"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Εμφάνηζει τις κινήσεις του positioner"
@@ -6663,6 +6875,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr ""
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Έναρξη  απο την αρχή"
@@ -6786,6 +7001,9 @@ msgstr "Κυρ"
 msgid "Sunday"
 msgstr "Κυριακή"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Αντιμετάθεση υπηρεσιών"
@@ -6810,13 +7028,8 @@ msgstr "Προώθηση στην προηγούμενη υπό-υπηρεσία
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Symbol Rate"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolrate"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6831,10 +7044,19 @@ msgstr "TRANSLATOR_INFO"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr ""
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "Σύστημα TV"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr ""
@@ -6867,6 +7089,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Επίγειος "
@@ -7522,10 +7747,6 @@ msgid "Translation:"
 msgstr "Μετάφραση:"
 
 #
-msgid "Transmission Mode"
-msgstr "Mode μετάδοσης"
-
-#
 msgid "Transmission mode"
 msgstr "Mode μετάδοσης"
 
@@ -7534,10 +7755,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Τύπος Transponder "
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7669,6 +7886,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7697,6 +7917,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "Universal LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7811,10 +8034,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr ""
-
-#
 msgid "Use power measurement"
 msgstr "Χρεισημοποιήστε power measurement"
 
@@ -7896,13 +8115,22 @@ msgstr ""
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr ""
@@ -7919,6 +8147,9 @@ msgstr "Video Fine-Tuning Wizard"
 msgid "Video Output"
 msgstr "Video Output"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Παραμετροποίηση Video"
@@ -8164,6 +8395,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr ""
@@ -8301,6 +8535,11 @@ msgstr "Τι θέλεις να ανεύρεις;"
 msgid "What to do with submitted crashlogs?"
 msgstr ""
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8337,6 +8576,15 @@ msgstr "Δίκτυο Wireless"
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8558,6 +8806,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Δεν μπορετε να διαγράψτε αυτό"
@@ -8735,6 +8989,9 @@ msgstr ""
 msgid "Your network configuration has been activated."
 msgstr ""
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -8951,6 +9208,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -8969,6 +9232,9 @@ msgstr ""
 msgid "auto"
 msgstr ""
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr ""
@@ -9001,6 +9267,9 @@ msgstr "Μαύρη λίστα"
 msgid "blue"
 msgstr ""
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9042,6 +9311,9 @@ msgstr "Καθάρισε την λίστα"
 msgid "complex"
 msgstr "Σύνθετο"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "config menu"
@@ -9073,6 +9345,12 @@ msgstr ""
 msgid "create directory"
 msgstr ""
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9085,6 +9363,9 @@ msgstr "Καθημερινά"
 msgid "day"
 msgstr ""
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "Διαγραφή"
@@ -9144,6 +9425,9 @@ msgstr "Μην εγράψεις"
 msgid "done!"
 msgstr "Ολοκληρώθηκε!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "Επεξεργασία εναλλακτικά"
@@ -9424,6 +9708,9 @@ msgstr "λεπτό"
 msgid "minutes"
 msgstr "λεπτά"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr ""
@@ -9622,9 +9909,6 @@ msgstr ""
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr ""
@@ -9961,6 +10245,10 @@ msgstr ""
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr ""
@@ -10031,6 +10319,9 @@ msgstr "Εβδομαδιαία"
 msgid "whitelist"
 msgstr "Άσπρη λίστα"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr ""
@@ -10170,6 +10461,14 @@ msgstr "zapped"
 #~ msgstr "Επέλεξτε source"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Υψηλό Code rate"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Χαμηλό Code rate"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact flash card"
 
@@ -10315,6 +10614,14 @@ msgstr "zapped"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Παραμετροποιήσετε την ταχύτητα Fast Forward"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Παραμετροποιήσετε την ταχύτητα Rewind "
+
+#
 #~ msgid "Exit wizard and configure later manually"
 #~ msgstr "Έξοδος απο τον wizard και χειροκίνητη ρύθμιση αργότερα"
 
@@ -10335,6 +10642,18 @@ msgstr "zapped"
 #~ msgstr "Games / Plugins"
 
 #
+#~ msgid "Guard interval mode"
+#~ msgstr "Guard interval mode"
+
+#
+#~ msgid "Hierarchy Information"
+#~ msgstr "Πληροφωρίες ιεραρχίας"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "mode ιεραρχίας"
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Εαν μπορείτε να δειτε αυτήν την σελίδα πατήστε ΟΚ."
 
@@ -10418,6 +10737,10 @@ msgstr "zapped"
 #~ msgstr "Αναβάθμιση Online"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Orbital Position"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Άλλο..."
 
@@ -10467,6 +10790,10 @@ msgstr "zapped"
 #~ msgstr "Βαλτε μια λέξη για φίλτρο..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Πολικότητα"
+
+#
 #~ msgid ""
 #~ "Pressing OK enables the built in wireless LAN support of your Dreambox.\n"
 #~ "Wlan USB Sticks with Zydas ZD1211B and RAlink RT73 Chipset are "
@@ -10525,6 +10852,10 @@ msgstr "zapped"
 #~ msgstr "Η επαναφορά τελείωσε. Πιέστε ΟΚ για να ενεργοποιηθούν τα settings"
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
+#
 #~ msgid ""
 #~ "Scan your network for wireless Access Points and connect to them using "
 #~ "your WLAN USB Stick\n"
@@ -10571,6 +10902,14 @@ msgstr "zapped"
 #~ msgstr "Stereo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbol Rate"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolrate"
+
+#
 #~ msgid ""
 #~ "Thank you for using the wizard. Your Dreambox is now ready to use.\n"
 #~ "\n"
@@ -10622,6 +10961,14 @@ msgstr "zapped"
 #~ msgstr "Αυτό δεν υποστηρίζεται για την ώρα (τρομάρα μας)"
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Mode μετάδοσης"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Τύπος Transponder "
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
index e4dc8ed..cdc5489 100755 (executable)
--- a/po/en.po
+++ b/po/en.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2005-11-17 20:53+0100\n"
 "Last-Translator: Automatically generated\n"
 "Language-Team: none\n"
@@ -201,6 +201,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -239,6 +245,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -395,10 +405,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -419,6 +429,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -442,6 +455,9 @@ msgstr "A graphical EPG for all services of an specific bouquet"
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -914,6 +930,9 @@ msgstr "Ask user"
 msgid "Aspect Ratio"
 msgstr "Aspect Ratio"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -928,6 +947,9 @@ msgstr "Audio"
 msgid "Audio Options..."
 msgstr "Audio Options..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr "Audio Sync"
@@ -994,6 +1016,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Automatic"
@@ -1029,6 +1060,31 @@ msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
 #
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+
+#
+msgid "Autoresolution Switch"
+msgstr "Autoresolution Switch"
+
+#
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Autoresolution is not working in Scart/DVI-PC Mode"
+
+#
+msgid "Autoresolution settings"
+msgstr "Autoresolution settings"
+
+#
+msgid "Autoresolution videomode setup"
+msgstr "Autoresolution videomode setup"
+
+#
 msgid "Autos & Vehicles"
 msgstr "Autos & Vehicles"
 
@@ -1070,6 +1126,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Back"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Background"
@@ -1164,6 +1226,11 @@ msgstr "Brazil"
 msgid "Brightness"
 msgstr "Brightness"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1194,6 +1261,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1462,21 +1540,11 @@ msgstr "Close and save changes"
 msgid "Close title selection"
 msgstr "Close title selection"
 
-#
-msgid "Code rate high"
-msgstr "Code rate high"
-
-#
-msgid "Code rate low"
-msgstr "Code rate low"
-
-#
-msgid "Coderate HP"
-msgstr "Coderate HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Coderate LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1661,6 +1729,10 @@ msgstr "Could not open Picture in Picture"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Couldn't record due to conflicting timer %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr "Crashlog settings"
@@ -1842,6 +1914,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr "DVD File Browser"
@@ -1928,10 +2003,22 @@ msgid "Define a startup service for your Dreambox."
 msgstr ""
 
 #
+msgid "Deinterlacer mode for interlaced content"
+msgstr "Deinterlacer mode for interlaced content"
+
+#
+msgid "Deinterlacer mode for progressive content"
+msgstr "Deinterlacer mode for progressive content"
+
+#
 msgid "Delay"
 msgstr "Delay"
 
 #
+msgid "Delay x seconds after service started"
+msgstr "Delay x seconds after service started"
+
+#
 msgid "Delete"
 msgstr "Delete"
 
@@ -2118,6 +2205,12 @@ msgstr ""
 "Do you really want to check the filesystem?\n"
 "This could take lots of time!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2315,6 +2408,12 @@ msgstr "Dreambox format data DVD (HDTV compatible)"
 msgid "Dreambox software because updates are available."
 msgstr "Dreambox software because updates are available."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr "Duration: "
@@ -2457,10 +2556,30 @@ msgid "Enable /media"
 msgstr "Enable /media"
 
 #
+msgid "Enable 1080p24 Mode"
+msgstr "Enable 1080p24 Mode"
+
+#
+msgid "Enable 1080p25 Mode"
+msgstr "Enable 1080p25 Mode"
+
+#
+msgid "Enable 1080p30 Mode"
+msgstr "Enable 1080p30 Mode"
+
+#
 msgid "Enable 5V for active antenna"
 msgstr "Enable 5V for active antenna"
 
 #
+msgid "Enable 720p24 Mode"
+msgstr "Enable 720p24 Mode"
+
+#
+msgid "Enable Autoresolution"
+msgstr "Enable Autoresolution"
+
+#
 msgid "Enable Cleanup Wizard?"
 msgstr "Enable Cleanup Wizard?"
 
@@ -2590,18 +2709,10 @@ msgstr ""
 "© 2006 - Stephan Reichholf"
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Enter Fast Forward at speed"
-
-#
 msgid "Enter IP to scan..."
 msgstr "Enter IP to scan..."
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Enter Rewind at speed"
-
-#
 msgid "Enter main menu..."
 msgstr "Enter main menu..."
 
@@ -2674,6 +2785,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estonian"
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Eventview"
@@ -2877,6 +2991,11 @@ msgstr "Finished restarting your network"
 msgid "Finnish"
 msgstr "Finnish"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2896,6 +3015,12 @@ msgstr "Following tasks will be done after you press OK!"
 msgid "Format"
 msgstr "Format"
 
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -2906,10 +3031,6 @@ msgstr ""
 "%d Timer were added and %d modified."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Frame repeat count during non-smooth winding"
-
-#
 msgid "Frame size in full view"
 msgstr "Frame size in full view"
 
@@ -2952,6 +3073,9 @@ msgstr "Frisian"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -3006,6 +3130,9 @@ msgstr "General PCM Delay"
 msgid "General PCM delay (ms)"
 msgstr "General PCM delay (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Genre"
@@ -3084,22 +3211,25 @@ msgid "Green boost"
 msgstr "Green boost"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
+msgstr ""
+
+msgid "Guard interval"
 msgstr ""
 
 #
-msgid "Guard Interval"
-msgstr "Guard Interval"
+msgid "Guess existing timer based on begin/end"
+msgstr "Guess existing timer based on begin/end"
 
 #
-msgid "Guard interval mode"
-msgstr "Guard interval mode"
+msgid "HD Interlace Mode"
+msgstr "HD Interlace Mode"
 
 #
-msgid "Guess existing timer based on begin/end"
-msgstr "Guess existing timer based on begin/end"
+msgid "HD Progressive Mode"
+msgstr "HD Progressive Mode"
 
 #
 msgid "HD videos"
@@ -3129,6 +3259,9 @@ msgstr "Harddisk standby after"
 msgid "Help"
 msgstr "Help"
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "Hidden network SSID"
@@ -3137,13 +3270,8 @@ msgstr "Hidden network SSID"
 msgid "Hidden networkname"
 msgstr "Hidden networkname"
 
-#
-msgid "Hierarchy Information"
-msgstr "Hierarchy Information"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hierarchy mode"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3214,14 +3342,11 @@ msgstr "ISO path"
 msgid "Icelandic"
 msgstr "Icelandic"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
 
 #
 msgid ""
@@ -3324,6 +3449,12 @@ msgstr "Information"
 msgid "Init"
 msgstr "Init"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr "Initial location in new timers"
@@ -3425,6 +3556,9 @@ msgstr "Internal Flash"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3627,6 +3761,11 @@ msgstr "Language selection"
 msgid "Last config"
 msgstr "Last config"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Last speed"
@@ -3684,6 +3823,9 @@ msgstr "Link:"
 msgid "Linked titles with a DVD menu"
 msgstr "Linked titles with a DVD menu"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "List of Storage Devices"
@@ -3822,6 +3964,9 @@ msgstr "Manage your receiver's software"
 msgid "Manual Scan"
 msgstr "Manual Scan"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Manual transponder"
@@ -4113,6 +4258,9 @@ msgstr "Movielist menu"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr "Multimedia"
@@ -4121,6 +4269,9 @@ msgstr "Multimedia"
 msgid "Multiple service support"
 msgstr "Multiple service support"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4190,6 +4341,9 @@ msgstr "NFI image flashing completed. Press Yellow to Reboot!"
 msgid "NFS share"
 msgstr "NFS share"
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "NOW"
@@ -4219,6 +4373,9 @@ msgstr "Nameserver Setup"
 msgid "Nameserver settings"
 msgstr "Nameserver settings"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4374,6 +4531,9 @@ msgstr "NetworkBrowser"
 msgid "NetworkWizard"
 msgstr "NetworkWizard"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr "Never"
@@ -4543,6 +4703,9 @@ msgstr "No videos to display"
 msgid "No wireless networks found! Please refresh."
 msgstr "No wireless networks found! Please refresh."
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4637,6 +4800,12 @@ msgstr "North"
 msgid "Norwegian"
 msgstr "Norwegian"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4650,6 +4819,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Not fetching feed entries"
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4692,6 +4864,9 @@ msgstr "OK, remove another extensions"
 msgid "OK, remove some extensions"
 msgstr "OK, remove some extensions"
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "OSD Settings"
@@ -4761,9 +4936,8 @@ msgstr "Open plugin menu"
 msgid "Optionally enter your name if you want to."
 msgstr "Optionally enter your name if you want to."
 
-#
-msgid "Orbital Position"
-msgstr "Orbital Position"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4786,10 +4960,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Package list update"
@@ -5246,10 +5426,6 @@ msgid "Poland"
 msgstr "Poland"
 
 #
-msgid "Polarity"
-msgstr "Polarity"
-
-#
 msgid "Polarization"
 msgstr "Polarization"
 
@@ -5285,6 +5461,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portuguese"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Positioner"
@@ -5502,6 +5681,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5612,6 +5794,9 @@ msgstr "Recordings"
 msgid "Recordings always have priority"
 msgstr "Recordings always have priority"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5834,6 +6019,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr "Restrict \"after event\" to a certain timespan?"
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Resume from last position"
@@ -5874,9 +6062,8 @@ msgstr "Rewind speeds"
 msgid "Right"
 msgstr "Right"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5887,6 +6074,10 @@ msgid "Running"
 msgstr "Running"
 
 #
+msgid "Running in testmode"
+msgstr "Running in testmode"
+
+#
 msgid "Russia"
 msgstr "Russia"
 
@@ -5899,6 +6090,25 @@ msgid "S-Video"
 msgstr "S-Video"
 
 #
+msgid "SD 25/50HZ Interlace Mode"
+msgstr "SD 25/50HZ Interlace Mode"
+
+#
+msgid "SD 25/50HZ Progressive Mode"
+msgstr "SD 25/50HZ Progressive Mode"
+
+#
+msgid "SD 30/60HZ Interlace Mode"
+msgstr "SD 30/60HZ Interlace Mode"
+
+#
+msgid "SD 30/60HZ Progressive Mode"
+msgstr "SD 30/60HZ Progressive Mode"
+
+msgid "SID"
+msgstr ""
+
+#
 msgid "SINGLE LAYER DVD"
 msgstr "SINGLE LAYER DVD"
 
@@ -5914,6 +6124,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Sat"
@@ -6377,6 +6600,9 @@ msgstr ""
 "Service not found!\n"
 "(SID not found in PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Service scan"
@@ -6513,6 +6739,10 @@ msgid "Show in extension menu"
 msgstr "Show in extension menu"
 
 #
+msgid "Show info screen"
+msgstr "Show info screen"
+
+#
 msgid "Show infobar on channel change"
 msgstr "Show infobar on channel change"
 
@@ -6524,6 +6754,9 @@ msgstr "Show infobar on event change"
 msgid "Show infobar on skip forward/backward"
 msgstr "Show infobar on skip forward/backward"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Show positioner movement"
@@ -6797,6 +7030,9 @@ msgstr "Standby Fan %d Voltage"
 msgid "Start Webinterface"
 msgstr "Start Webinterface"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Start from the beginning"
@@ -6920,6 +7156,9 @@ msgstr "Sun"
 msgid "Sunday"
 msgstr "Sunday"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Swap Services"
@@ -6944,13 +7183,8 @@ msgstr "Switch to previous subservice"
 msgid "Switchable tuner types:"
 msgstr "Switchable tuner types:"
 
-#
-msgid "Symbol Rate"
-msgstr "Symbol Rate"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolrate"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6965,10 +7199,19 @@ msgstr "TRANSLATOR_INFO"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS file is too large for ISO9660 level 1!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV System"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Table of content for collection"
@@ -7001,6 +7244,9 @@ msgstr "Taiwan"
 msgid "Temperature and Fan control"
 msgstr "Temperature and Fan control"
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Terrestrial"
@@ -7703,10 +7949,6 @@ msgid "Translation:"
 msgstr "Translation:"
 
 #
-msgid "Transmission Mode"
-msgstr "Transmission Mode"
-
-#
 msgid "Transmission mode"
 msgstr "Transmission mode"
 
@@ -7715,10 +7957,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Transponder Type"
-
-#
 msgid "Travel & Events"
 msgstr "Travel & Events"
 
@@ -7846,6 +8084,9 @@ msgstr "Undo install"
 msgid "Undo uninstall"
 msgstr "Undo uninstall"
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr "UnhandledKey"
@@ -7874,6 +8115,9 @@ msgstr "United States"
 msgid "Universal LNB"
 msgstr "Universal LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7993,10 +8237,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Use non-smooth winding at speeds above"
-
-#
 msgid "Use power measurement"
 msgstr "Use power measurement"
 
@@ -8079,13 +8319,22 @@ msgstr "VMGM (intro trailer)"
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr "Vertical"
@@ -8102,6 +8351,9 @@ msgstr "Video Fine-Tuning Wizard"
 msgid "Video Output"
 msgstr "Video Output"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Video Setup"
@@ -8347,6 +8599,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr "Webinterface"
@@ -8527,6 +8782,11 @@ msgstr "What do you want to scan?"
 msgid "What to do with submitted crashlogs?"
 msgstr "What to do with submitted crashlogs?"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8571,6 +8831,15 @@ msgstr "Wireless Network"
 msgid "Wireless Network State"
 msgstr "Wireless Network State"
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8799,6 +9068,12 @@ msgstr ""
 "While 'Name' is just a human-readable name displayed in the Overview, 'Match "
 "in title' is what is looked for in the EPG."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "You cannot delete this!"
@@ -9011,6 +9286,9 @@ msgstr "Your name (optional):"
 msgid "Your network configuration has been activated."
 msgstr "Your network configuration has been activated."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr "Your network mount has been activated."
@@ -9228,6 +9506,12 @@ msgstr "assigned CAIds:"
 msgid "assigned Services/Provider:"
 msgstr "assigned Services/Provider:"
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9246,6 +9530,9 @@ msgstr "audio tracks"
 msgid "auto"
 msgstr "auto"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "available"
@@ -9279,6 +9566,10 @@ msgid "blue"
 msgstr "blue"
 
 #
+msgid "bob"
+msgstr "bob"
+
+#
 #, python-format
 msgid "burn audio track (%s)"
 msgstr "burn audio track (%s)"
@@ -9319,6 +9610,9 @@ msgstr "clear playlist"
 msgid "complex"
 msgstr "complex"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "config menu"
@@ -9350,6 +9644,12 @@ msgstr "could not be removed"
 msgid "create directory"
 msgstr "create directory"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9363,6 +9663,10 @@ msgid "day"
 msgstr "day"
 
 #
+msgid "default"
+msgstr "default"
+
+#
 msgid "delete"
 msgstr "delete"
 
@@ -9421,6 +9725,9 @@ msgstr "don't record"
 msgid "done!"
 msgstr "done!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "edit alternatives"
@@ -9701,6 +10008,9 @@ msgstr "minute"
 msgid "minutes"
 msgstr "minutes"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "month"
@@ -9899,9 +10209,6 @@ msgstr "red"
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr "remove a nameserver entry"
@@ -10238,6 +10545,10 @@ msgstr "toggle time, chapter, audio, subtitle info"
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr "unavailable"
@@ -10308,6 +10619,9 @@ msgstr "weekly"
 msgid "whitelist"
 msgstr "whitelist"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "working"
@@ -10379,30 +10693,6 @@ msgstr "zapped"
 #~ msgstr "Advanced"
 
 #
-#~ msgid ""
-#~ "Autoresolution Plugin Testmode:\n"
-#~ "Is %s ok?"
-#~ msgstr ""
-#~ "Autoresolution Plugin Testmode:\n"
-#~ "Is %s ok?"
-
-#
-#~ msgid "Autoresolution Switch"
-#~ msgstr "Autoresolution Switch"
-
-#
-#~ msgid "Autoresolution is not working in Scart/DVI-PC Mode"
-#~ msgstr "Autoresolution is not working in Scart/DVI-PC Mode"
-
-#
-#~ msgid "Autoresolution settings"
-#~ msgstr "Autoresolution settings"
-
-#
-#~ msgid "Autoresolution videomode setup"
-#~ msgstr "Autoresolution videomode setup"
-
-#
 #~ msgid "Backup"
 #~ msgstr "Backup"
 
@@ -10451,6 +10741,22 @@ msgstr "zapped"
 #~ msgstr "Choose source"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Code rate high"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Code rate low"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Coderate HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Coderate LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact flash card"
 
@@ -10489,18 +10795,6 @@ msgstr "zapped"
 #~ msgstr "Default settings"
 
 #
-#~ msgid "Deinterlacer mode for interlaced content"
-#~ msgstr "Deinterlacer mode for interlaced content"
-
-#
-#~ msgid "Deinterlacer mode for progressive content"
-#~ msgstr "Deinterlacer mode for progressive content"
-
-#
-#~ msgid "Delay x seconds after service started"
-#~ msgstr "Delay x seconds after service started"
-
-#
 #~ msgid "Delete selected mount"
 #~ msgstr "Delete selected mount"
 
@@ -10543,26 +10837,6 @@ msgstr "zapped"
 #~ msgstr "Download of USB flasher boot image failed: "
 
 #
-#~ msgid "Enable 1080p24 Mode"
-#~ msgstr "Enable 1080p24 Mode"
-
-#
-#~ msgid "Enable 1080p25 Mode"
-#~ msgstr "Enable 1080p25 Mode"
-
-#
-#~ msgid "Enable 1080p30 Mode"
-#~ msgstr "Enable 1080p30 Mode"
-
-#
-#~ msgid "Enable 720p24 Mode"
-#~ msgstr "Enable 720p24 Mode"
-
-#
-#~ msgid "Enable Autoresolution"
-#~ msgstr "Enable Autoresolution"
-
-#
 #~ msgid "Encrypted: %s"
 #~ msgstr "Encrypted: %s"
 
@@ -10583,6 +10857,14 @@ msgstr "zapped"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Enter Fast Forward at speed"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Enter Rewind at speed"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Enter WLAN network name/SSID:"
 
@@ -10605,6 +10887,10 @@ msgstr "zapped"
 #~ msgstr "Following tasks will be done after you press continue!"
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Frame repeat count during non-smooth winding"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP address"
 
@@ -10621,12 +10907,28 @@ msgstr "zapped"
 #~ msgstr "General PCM delay"
 
 #
-#~ msgid "HD Interlace Mode"
-#~ msgstr "HD Interlace Mode"
+#~ msgid "Guard Interval"
+#~ msgstr "Guard Interval"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Guard interval mode"
+
+#
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hierarchy Information"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hierarchy mode"
 
 #
-#~ msgid "HD Progressive Mode"
-#~ msgstr "HD Progressive Mode"
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
 
 #
 #~ msgid "If you can see this page, please press OK."
@@ -10689,6 +10991,10 @@ msgstr "zapped"
 #~ msgstr "Online-Upgrade"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Orbital Position"
+
+#
 #~ msgid "Package details for: "
 #~ msgstr "Package details for: "
 
@@ -10725,6 +11031,10 @@ msgstr "zapped"
 #~ msgstr "Plugin manager"
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polarity"
+
+#
 #~ msgid ""
 #~ "Power state to change to after recordings. Select \"standard\" to not "
 #~ "change the default behaviour of enigma2 or values changed by yourself."
@@ -10785,24 +11095,8 @@ msgstr "zapped"
 #~ msgstr "Retrieving network information. Please wait..."
 
 #
-#~ msgid "Running in testmode"
-#~ msgstr "Running in testmode"
-
-#
-#~ msgid "SD 25/50HZ Interlace Mode"
-#~ msgstr "SD 25/50HZ Interlace Mode"
-
-#
-#~ msgid "SD 25/50HZ Progressive Mode"
-#~ msgstr "SD 25/50HZ Progressive Mode"
-
-#
-#~ msgid "SD 30/60HZ Interlace Mode"
-#~ msgstr "SD 30/60HZ Interlace Mode"
-
-#
-#~ msgid "SD 30/60HZ Progressive Mode"
-#~ msgstr "SD 30/60HZ Progressive Mode"
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
 
 #
 #~ msgid "Satteliteequipment"
@@ -10853,10 +11147,6 @@ msgstr "zapped"
 #~ msgstr "Set as default Interface"
 
 #
-#~ msgid "Show info screen"
-#~ msgstr "Show info screen"
-
-#
 #~ msgid "Skin..."
 #~ msgstr "Skin..."
 
@@ -10887,6 +11177,14 @@ msgstr "zapped"
 #~ msgstr "Switch audio"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbol Rate"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolrate"
+
+#
 #~ msgid ""
 #~ "The USB stick is now bootable. Do you want to download the latest image "
 #~ "from the feed server and save it on the stick?"
@@ -10989,6 +11287,14 @@ msgstr "zapped"
 #~ "3) Wait for bootup and follow instructions of the wizard."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Transmission Mode"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Transponder Type"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -11021,6 +11327,10 @@ msgstr "zapped"
 #~ msgstr "Use domain/username for windows domains as username!"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Use non-smooth winding at speeds above"
+
+#
 #~ msgid "View list of available Satteliteequipment extensions."
 #~ msgstr "View list of available Satteliteequipment extensions."
 
@@ -11123,18 +11433,10 @@ msgstr "zapped"
 #~ msgstr "assigned Services/Provider"
 
 #
-#~ msgid "bob"
-#~ msgstr "bob"
-
-#
 #~ msgid "choose destination directory"
 #~ msgstr "choose destination directory"
 
 #
-#~ msgid "default"
-#~ msgstr "default"
-
-#
 #~ msgid "enigma2 and network"
 #~ msgstr "enigma2 and network"
 
index c80f022..c606cae 100755 (executable)
--- a/po/es.po
+++ b/po/es.po
@@ -7,14 +7,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
-"PO-Revision-Date: 2011-02-01 00:10+0200\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
+"PO-Revision-Date: 2011-04-12 22:26+0200\n"
 "Last-Translator: Jose Juan <jzapater@gmail.com>\n"
 "Language-Team: none\n"
-"Language: es\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: es\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 2.0.3\n"
 "X-Poedit-Language: Spanish\n"
@@ -205,6 +205,14 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+"%d conflictos encontrados cuando intentamos añadir nuevas programaciones:\n"
+"%s"
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -242,6 +250,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr "%s: %s a %s"
+
 #
 msgid "(ZAP)"
 msgstr "(ZAPEAR)"
@@ -398,12 +410,12 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr "Una piel BackToTheRoots .. pero con la velicidad Warp-8."
+
 msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr "Una Piel BackToTheRoots .. or buenos momentos antiguos"
 
-msgid "A BackToTheRoots-Skin ... or good old times."
-msgstr "Una Piel BackToTheRoots ... o buenos momentos anteriores"
-
 msgid "A basic ftp client"
 msgstr "Un cliente ftp básico"
 
@@ -422,6 +434,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Un plugin de demo para el uso de TPM"
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr "Una simulación dreambox de las visualizaciones SG-Atlantis."
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -445,6 +460,9 @@ msgstr "Un EPG gráfico para todos los canales de una lista específica"
 msgid "A graphical EPG interface"
 msgstr "Un interfaz EPG gráfico"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr "Un interfaz EPG gráfico."
 
@@ -907,6 +925,9 @@ msgstr "Preguntar al usuario"
 msgid "Aspect Ratio"
 msgstr "Relación de aspecto"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Asignando proveedores/servicios/caids al módulo CI"
 
@@ -921,6 +942,9 @@ msgstr "Sonido"
 msgid "Audio Options..."
 msgstr "Opciones de sonido..."
 
+msgid "Audio PID"
+msgstr ""
+
 msgid "Audio Sync"
 msgstr "Sincronización de audio"
 
@@ -988,6 +1012,15 @@ msgstr ""
 "AutoProgramación escanea el EPG y crea Programaciones dependiendo del "
 "criterio de búsqueda definido por el usuario."
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Automático"
@@ -1024,6 +1057,24 @@ msgstr "Refrescar automáticamente el EPG"
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr "Enviar automáticamente a Dream Multimedia los logs de fallos"
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 msgid "Autos & Vehicles"
 msgstr "Coches"
 
@@ -1065,6 +1116,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Atrás"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Segundo plano"
@@ -1158,6 +1215,11 @@ msgstr "Brasil"
 msgid "Brightness"
 msgstr "Brillo"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr "Examinar y conectar a carpetas de red"
 
@@ -1185,6 +1247,17 @@ msgstr "Grabar sus grabaciones a DVD"
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1442,21 +1515,11 @@ msgstr "Cerrar y guardar cambios"
 msgid "Close title selection"
 msgstr "Cerrar selección de título"
 
-#
-msgid "Code rate high"
-msgstr "Velocidad de código alta"
-
-#
-msgid "Code rate low"
-msgstr "Velocidad de código baja"
-
-#
-msgid "Coderate HP"
-msgstr "Velocidad de código HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Velocidad de código LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1640,6 +1703,10 @@ msgstr "No puedo abrir el PiP"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "No puedo grabar debido a un conflicto de programaciones %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr "Configuración de crashlog"
@@ -1823,6 +1890,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr "Examinar ficheros de DVD"
@@ -1907,10 +1977,19 @@ msgstr "Definir un canal de inicio"
 msgid "Define a startup service for your Dreambox."
 msgstr "Definir un canal de inicio para su Dreambox."
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Retardo"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Borrar"
@@ -2092,6 +2171,12 @@ msgstr ""
 "Realmente quiere chequear el sistema de archivos?\n"
 "¡Esto puede tardar mucho tiempo!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2285,6 +2370,12 @@ msgstr "Formato dreambox DVD (HDTV compatible)"
 msgid "Dreambox software because updates are available."
 msgstr "Actualizaciones del software Dreambox están disponibles."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 msgid "Duration: "
 msgstr "Duración:"
 
@@ -2426,10 +2517,25 @@ msgstr "Activar"
 msgid "Enable /media"
 msgstr "Habilitar /media"
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Activar 5V para la antena activa"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr "¿Activar el Asistente de Limpieza?"
@@ -2553,18 +2659,10 @@ msgstr ""
 "\n"
 "© 2006 - Stephan Reichholf"
 
-#
-msgid "Enter Fast Forward at speed"
-msgstr "Introduzca velocidad de avance hacia delante"
-
 msgid "Enter IP to scan..."
 msgstr "Introduzca la IP a escanear..."
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Introduzca velocidad de avance hacia atrás"
-
-#
 msgid "Enter main menu..."
 msgstr "Entre al menú principal..."
 
@@ -2627,6 +2725,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estonio"
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Ver eventos"
@@ -2827,6 +2928,11 @@ msgstr "Terminó reiniciando su red"
 msgid "Finnish"
 msgstr "Finlandés"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr "Primero genera su piel de estilo Ai.HD-Control"
 
@@ -2846,6 +2952,12 @@ msgstr "¡Las siguientes tareas serán hechas después de pulsar OK!"
 msgid "Format"
 msgstr "Formato"
 
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -2856,10 +2968,6 @@ msgstr ""
 "La programación %d fué añadida y %d modificada."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Contador de tramas sin problemas de sombras"
-
-#
 msgid "Frame size in full view"
 msgstr "Tamaño de trama en vista completa"
 
@@ -2902,6 +3010,9 @@ msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 "FritzCall muestra sus llamadas de entrada a su Fritz!Box en su Dreambox."
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr "Frontend para /tmp/mmi.socket"
 
@@ -2957,6 +3068,9 @@ msgstr "Pausa PCM General"
 msgid "General PCM delay (ms)"
 msgstr "Retardo general PCM (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Género"
@@ -3033,27 +3147,24 @@ msgid "Green boost"
 msgstr "Impulso verde"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
-"Growlee permite que su Dreambox envíe mensajes cortos usando el protocolo "
-"growl\n"
-"como la notificación de  inicio de una grabación a un PC ejecutando un "
-"cliente growl"
 
-#
-msgid "Guard Interval"
-msgstr "Intervalo de guarda"
-
-#
-msgid "Guard interval mode"
-msgstr "Modo intervalo seguro"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr "Las programaciones existentes están basadas en Inicio/Fin"
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 msgid "HD videos"
 msgstr "Videos HD"
 
@@ -3078,6 +3189,9 @@ msgstr "Disco duro en reposo después"
 msgid "Help"
 msgstr "Ayuda"
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "SSID de red oculta"
@@ -3086,13 +3200,8 @@ msgstr "SSID de red oculta"
 msgid "Hidden networkname"
 msgstr "Nombre de la red oculta"
 
-#
-msgid "Hierarchy Information"
-msgstr "Información jerárquica"
-
-#
-msgid "Hierarchy mode"
-msgstr "Modo jerárquico"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3161,10 +3270,8 @@ msgstr "Islandés"
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"Si activa esto, una grabación existente también será considerada grabación "
-"si el evento graba al menos el 80% de ella."
 
 #
 msgid ""
@@ -3262,6 +3369,12 @@ msgstr "Información"
 msgid "Init"
 msgstr "Iniciar"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr "Ruta inicial en nuevas programaciones"
@@ -3362,6 +3475,9 @@ msgstr "Flash Interna"
 msgid "Internal LAN adapter."
 msgstr "Adaptador de RED interna"
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr "Actualización de firmware interno"
 
@@ -3556,6 +3672,11 @@ msgstr "Selección de idioma"
 msgid "Last config"
 msgstr "Última config:"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Última velocidad"
@@ -3613,6 +3734,9 @@ msgstr "Enlace:"
 msgid "Linked titles with a DVD menu"
 msgstr "Enlazar los títulos con un menú de DVD"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Listar dispositivos de almacenamiento"
@@ -3747,6 +3871,9 @@ msgstr "Manejar el software de su receptor"
 msgid "Manual Scan"
 msgstr "Búsqueda Manual"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Transponder manual"
@@ -3804,12 +3931,18 @@ msgid ""
 "MediaScanner scans devices for playable media files and displays a menu with "
 "possible actions like viewing pictures or playing movies."
 msgstr ""
+"MediaScanner escaneará sus dispositivos en busca de ficheros reproducibles y "
+"visualizará un menú con las acciones posibles como ver fotos o reproducir "
+"películas."
 
 msgid ""
 "Mediaplayer plays your favorite music and videos.\n"
 "Play all your favorite music and video files, organize them in playlists, "
 "view cover and album information."
 msgstr ""
+"Mediaplayer reproduce sus videos y música preferida.\n"
+"Reproduce todos sus videos y música preferida, organízalos en listas, mira "
+"las portadas e información del álbum."
 
 #
 msgid "Medium is not a writeable DVD!"
@@ -3824,7 +3957,7 @@ msgid "Menu"
 msgstr "Menú"
 
 msgid "Merlin Music Player and iDream"
-msgstr ""
+msgstr "Reproductor de música Merlin e iDream"
 
 #
 msgid "Message"
@@ -3834,9 +3967,8 @@ msgstr "Mensaje"
 msgid "Message..."
 msgstr "Mensaje..."
 
-#
 msgid "Mexico"
-msgstr ""
+msgstr "México"
 
 #
 msgid "Mkfs failed"
@@ -3878,75 +4010,62 @@ msgstr "Lunes"
 msgid "Monthly"
 msgstr "Mensualmente"
 
-#
 msgid "More video entries."
-msgstr ""
+msgstr "Más videos."
 
 #
 msgid "Mosquito noise reduction"
 msgstr "Reducción de ruido de mosquito"
 
-#
 msgid "Most discussed"
-msgstr ""
+msgstr "Lo más discutido"
 
-#
 msgid "Most linked"
-msgstr ""
+msgstr "Lo más enlazado"
 
-#
 msgid "Most popular"
-msgstr ""
+msgstr "Lo más popular"
 
-#
 msgid "Most recent"
-msgstr ""
+msgstr "Lo más reciente"
 
-#
 msgid "Most responded"
-msgstr ""
+msgstr "Lo más respondido"
 
-#
 msgid "Most viewed"
-msgstr ""
+msgstr "Lo más visto"
 
 #
 msgid "Mount failed"
 msgstr "Falló el mount"
 
-#
 msgid "Mount informations"
-msgstr ""
+msgstr "Informaciones de montaje"
 
-#
 msgid "Mount options"
-msgstr ""
+msgstr "Opciones de montaje"
 
-#
 msgid "Mount type"
-msgstr ""
+msgstr "Tipo de montaje"
 
-#
 msgid "MountManager"
-msgstr ""
+msgstr "Manejador de montaje"
 
-#
 msgid ""
 "Mounted/\n"
 "Unmounted"
 msgstr ""
+"Montado\n"
+"Desmontado"
 
-#
 msgid "Mountpoints management"
-msgstr ""
+msgstr "Manejos de puntos de montaje"
 
-#
 msgid "Mounts editor"
-msgstr ""
+msgstr "Editor de montajes"
 
-#
 msgid "Mounts management"
-msgstr ""
+msgstr "Manejador de montajes"
 
 #
 msgid "Move Picture in Picture"
@@ -3956,63 +4075,51 @@ msgstr "Mover PiP"
 msgid "Move east"
 msgstr "Mover al este"
 
-#
 msgid "Move plugin screen"
-msgstr ""
+msgstr "Pantalla de mover el plugin"
 
-#
 msgid "Move screen down"
-msgstr ""
+msgstr "Mover pantalla abajo"
 
-#
 msgid "Move screen to the center of your TV"
-msgstr ""
+msgstr "Mover pantalla al centro del TV"
 
-#
 msgid "Move screen to the left"
-msgstr ""
+msgstr "Mover pantalla izquierda"
 
-#
 msgid "Move screen to the lower left corner"
-msgstr ""
+msgstr "Mover pantalla a la esquina inferior izda"
 
-#
 msgid "Move screen to the lower right corner"
-msgstr ""
+msgstr "Mover pantalla a la esquina inferior dcha"
 
-#
 msgid "Move screen to the middle of the left border"
-msgstr ""
+msgstr "Mover pantalla al medio del borde izdo"
 
-#
 msgid "Move screen to the middle of the right border"
-msgstr ""
+msgstr "Mover pantalla al medio del borde dcho"
 
-#
 msgid "Move screen to the right"
-msgstr ""
+msgstr "Mover pantalla a la derecha"
 
-#
 msgid "Move screen to the upper left corner"
-msgstr ""
+msgstr "Mover pantalla la esquina superior izda"
 
-#
 msgid "Move screen to the upper right corner"
-msgstr ""
+msgstr "Mover pantalla a la esquina superior dcha"
 
-#
 msgid "Move screen up"
-msgstr ""
+msgstr "Mover pantalla arriba"
 
 #
 msgid "Move west"
 msgstr "Mover al oeste"
 
 msgid "Movie information from the Online Film Datenbank (German)."
-msgstr ""
+msgstr "Información de película desde Online Film Datenbak (Alemania)"
 
 msgid "Movie informations from the Online Film Datenbank"
-msgstr ""
+msgstr "Información de película desde Online Film Datenbank"
 
 #
 msgid "Movie location"
@@ -4021,11 +4128,15 @@ msgstr "Ruta de Peli"
 msgid ""
 "MovieTagger adds tags to recorded movies to sort a large list of movies."
 msgstr ""
+"MovieTagger añade etiquetas a las películas grabadas para ordenar listas "
+"grandes."
 
 msgid ""
 "Movielist Preview creates screenshots of recordings and shows them inside "
 "the movielist."
 msgstr ""
+"Movielist Preview crea pantalllazos de grabaciones y los muestra dentro de "
+"la lista de películas."
 
 #
 msgid "Movielist menu"
@@ -4035,6 +4146,9 @@ msgstr "Menú de lista de películas"
 msgid "Multi EPG"
 msgstr "EPG Múltiple"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr "Multimedia"
@@ -4043,49 +4157,43 @@ msgstr "Multimedia"
 msgid "Multiple service support"
 msgstr "Soporte de canales múltiples"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
 
-#
 msgid "Music"
-msgstr ""
+msgstr "Música"
 
 #
 msgid "Mute"
 msgstr "Silencio"
 
-#
 msgid "My TubePlayer"
-msgstr ""
+msgstr "Mi TubePlayer"
 
-#
 msgid "MyTube Settings"
-msgstr ""
+msgstr "Configuración MyTube"
 
-#
 msgid "MyTubePlayer"
-msgstr ""
+msgstr "Mi TubePlayer"
 
-#
 msgid "MyTubePlayer Help"
-msgstr ""
+msgstr "Ayuda MyTubePlayer"
 
-#
 msgid "MyTubePlayer active video downloads"
-msgstr ""
+msgstr "MyTubePlayer descargas de video activas"
 
-#
 msgid "MyTubePlayer settings"
-msgstr ""
+msgstr "Configuración MyTubePlayer"
 
-#
 msgid "MyTubeVideoInfoScreen"
-msgstr ""
+msgstr "Pantalla de información de MyTube"
 
-#
 msgid "MyTubeVideohelpScreen"
-msgstr ""
+msgstr "Ayuda de MyTube"
 
 #
 msgid "N/A"
@@ -4095,6 +4203,8 @@ msgid ""
 "NCID Client shows incoming voice calls promoted by any NCID server (e.g. "
 "Vodafone Easybox) on your Dreambox."
 msgstr ""
+"Cliente NCID muestra las llamadas de voz entrantes que vienen de un servidor "
+"NCID (ej. Vodafone Easybox) en su Dreambox."
 
 #
 msgid "NEXT"
@@ -4109,8 +4219,10 @@ msgid "NFI image flashing completed. Press Yellow to Reboot!"
 msgstr ""
 "Se descargó la imagen flash correctamente. ¡Pulse Amarillo para reiniciar!"
 
-#
 msgid "NFS share"
+msgstr "NFS compartida"
+
+msgid "NIM"
 msgstr ""
 
 #
@@ -4142,101 +4254,104 @@ msgstr "Configuración servidor de nombres"
 msgid "Nameserver settings"
 msgstr "Configuración de Servidor de Nombres"
 
-msgid "Nemesis BlackBox Skin"
+msgid "Namespace"
 msgstr ""
 
+msgid "Nemesis BlackBox Skin"
+msgstr "Piel Nemesis BlackBox"
+
 msgid "Nemesis BlackBox Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis BlackBox para su Dreambox"
 
 msgid "Nemesis Blueline Single Skin"
-msgstr ""
+msgstr "Piel Nemesis Blueline Single"
 
 msgid "Nemesis Blueline Single Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis Blueline Single para su Dreambox"
 
 msgid "Nemesis Blueline Skin"
-msgstr ""
+msgstr "Piel Nemesis Blueline"
 
 msgid "Nemesis Blueline Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis Blueline para su Dreambox"
 
 msgid "Nemesis Blueline.Extended Skin"
-msgstr ""
+msgstr "Piel Nemesis Blueline.Extended"
 
 msgid "Nemesis Blueline.Extended Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis Blueline.Extended Skin para su Dreambox"
 
 msgid "Nemesis ChromeLine Cobolt Skin"
-msgstr ""
+msgstr "Piel Nemesis ChromeLine Cobolt"
 
 msgid "Nemesis ChromeLine Cobolt Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis ChromeLine Cobolt para su Dreambox"
 
 msgid "Nemesis ChromeLine Skin"
-msgstr ""
+msgstr "Piel Nemesis ChromeLine"
 
 msgid "Nemesis ChromeLine Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis ChromeLine para su Dreambox"
 
 msgid "Nemesis Flatline Blue Skin"
-msgstr ""
+msgstr "Piel Nemesis Flatline Blue"
 
 msgid "Nemesis Flatline Blue Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis Flatline Blue para su Dreambox"
 
 msgid "Nemesis Flatline Skin"
-msgstr ""
+msgstr "Piel Nemesis Flatline"
 
 msgid "Nemesis Flatline Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis Flatline para su Dreambox"
 
 msgid "Nemesis GlassLine Skin"
-msgstr ""
+msgstr "Piel Nemesis GlassLine"
 
 msgid "Nemesis GlassLine Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis GlassLine para su Dreambox"
 
 msgid "Nemesis Greenline Extended Skin"
-msgstr ""
+msgstr "Piel Nemesis Greeline Extended"
 
 msgid "Nemesis Greenline Extended Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis Greenline Extended para su Dreambox"
 
 msgid "Nemesis Greenline Single Skin"
-msgstr ""
+msgstr "Piel Nemesis Greenline Single"
 
 msgid "Nemesis Greenline Single Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis Greenline Single para su Dreambox"
 
 msgid "Nemesis Greenline Skin"
-msgstr ""
+msgstr "Piel Nemesis Greenline"
 
 msgid "Nemesis Greenline Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis Greenline para su Dreambox"
 
 msgid "Nemesis Greyline Extended Skin"
-msgstr ""
+msgstr "Piel Nemesis Greyline Extended"
 
 msgid "Nemesis Greyline Extended Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis Greyline Extended para su Dreambox"
 
 msgid "Nemesis Greyline Single Skin"
-msgstr ""
+msgstr "Piel Nemesis Greyline Single"
 
 msgid "Nemesis Greyline Single Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis Greyline Single para su Dreambox"
 
 msgid "Nemesis Greyline Skin"
-msgstr ""
+msgstr "Piel Nemesis Greyline"
 
 msgid "Nemesis Greyline Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis Greyline para su Dreambox"
 
 msgid "Nemesis ShadowLine Skin"
-msgstr ""
+msgstr "Piel Nemesis ShadowLine"
 
 msgid "Nemesis ShadowLine Skin for the Dreambox"
-msgstr ""
+msgstr "Piel Nemesis ShadowLine para su Dreambox"
 
 #
 msgid "Netmask"
@@ -4283,20 +4398,22 @@ msgid "Network test..."
 msgstr "Testear Red..."
 
 msgid "Network test: "
-msgstr ""
+msgstr "Testeo de Red:"
 
 #
 msgid "Network:"
 msgstr "Red:"
 
-#
 msgid "NetworkBrowser"
-msgstr ""
+msgstr "Examinar red"
 
 #
 msgid "NetworkWizard"
 msgstr "Asistente de Red"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr "Nunca"
@@ -4306,19 +4423,17 @@ msgid "New"
 msgstr "Nuevo"
 
 msgid "New PIN"
-msgstr ""
+msgstr "Nuevo PIN"
 
-#
 msgid "New Zealand"
-msgstr ""
+msgstr "Nueva Zelanda"
 
 #
 msgid "New version:"
 msgstr "Nueva versión:"
 
-#
 msgid "News & Politics"
-msgstr ""
+msgstr "Noticias & Política"
 
 #
 msgid "Next"
@@ -4388,9 +4503,8 @@ msgstr "¡No hay sintonizador libre!"
 msgid "No network connection available."
 msgstr "No hay conexión de red disponible."
 
-#
 msgid "No network devices found!"
-msgstr ""
+msgstr "¡No encontré dispositivos de red!"
 
 #
 msgid "No networks found"
@@ -4407,9 +4521,8 @@ msgstr ""
 msgid "No picture on TV? Press EXIT and retry."
 msgstr "No hay imagen en la TV? Pulse SALIR y reintente"
 
-#
 msgid "No playable video found! Stop playing this movie?"
-msgstr ""
+msgstr "¡No hay video reproducibles! ¿Para la reproducción de esta película?"
 
 #
 msgid "No positioner capable frontend found."
@@ -4460,14 +4573,16 @@ msgstr ""
 "¿Le gustaría cambiar el PIN de configuración ahora?\n"
 "¡Si dice 'No' aquí, la protección de configuración seguirá desabilitada!"
 
-#
 msgid "No videos to display"
-msgstr ""
+msgstr "No hay video para ver"
 
 #
 msgid "No wireless networks found! Please refresh."
 msgstr "¡No he encontrado redes wifi! Refresque."
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4498,21 +4613,18 @@ msgstr ""
 "Verifique que ha conectado un dispositivo WLAN compatible o active su "
 "interface de red local."
 
-#
 msgid "No, but play video again"
-msgstr ""
+msgstr "No, reproduce el video otra vez"
 
 #
 msgid "No, but restart from begin"
 msgstr "No, debe reiniciar desde el principio"
 
-#
 msgid "No, but switch to video entries."
-msgstr ""
+msgstr "No, vuelve a la lista de videos."
 
-#
 msgid "No, but switch to video search."
-msgstr ""
+msgstr "No, vuelve a la búsqueda de videos."
 
 #
 msgid "No, do nothing."
@@ -4523,7 +4635,7 @@ msgid "No, just start my dreambox"
 msgstr "No, sólo arranque mi dreambox"
 
 msgid "No, never"
-msgstr ""
+msgstr "No, nunca"
 
 #
 msgid "No, not now"
@@ -4550,9 +4662,8 @@ msgstr "Ninguno"
 msgid "Nonlinear"
 msgstr "No lineal"
 
-#
 msgid "Nonprofits & Activism"
-msgstr ""
+msgstr "Sin lucro y Activismo"
 
 #
 msgid "North"
@@ -4562,6 +4673,12 @@ msgstr "Norte"
 msgid "Norwegian"
 msgstr "Noruego"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4571,8 +4688,10 @@ msgstr ""
 "No hay suficiente espacio libre. Por famove libere espacio y reinténtelo. (%"
 "d MB requeridos, %d MB disponibles)"
 
-#
 msgid "Not fetching feed entries"
+msgstr "No descargo las entradas del feed"
+
+msgid "Not-Associated"
 msgstr ""
 
 #
@@ -4597,9 +4716,8 @@ msgstr ""
 "fondo lo máximo posible, pero que siga viendo la diferencia entre los 2 "
 "niveles de sombra. Si esto está hecho, pulse OK."
 
-#
 msgid "Number of scheduled recordings left."
-msgstr ""
+msgstr "Número de grabaciones programadas que quedan."
 
 #
 msgid "OK"
@@ -4617,6 +4735,9 @@ msgstr "OK, borrar las otras extensiones"
 msgid "OK, remove some extensions"
 msgstr "OK, borrar algunas extensiones"
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "Configurar OSD"
@@ -4678,43 +4799,47 @@ msgstr "Sólo en el Canal: %s"
 msgid "Open Context Menu"
 msgstr "Abrir Menú Contextual"
 
-#
 msgid "Open plugin menu"
-msgstr ""
+msgstr "Menú de abrir plugin"
 
 #
 msgid "Optionally enter your name if you want to."
 msgstr "Introduzca su nombre opcionalmente si quiere."
 
-#
-msgid "Orbital Position"
-msgstr "Posición Orbital"
+msgid "Orbital position"
+msgstr ""
 
-#
 msgid "Outer Bound (+/-)"
-msgstr ""
+msgstr "Límite Exterior (+/-)"
 
 msgid "Overlay for scrolling bars"
-msgstr ""
+msgstr "Superposición para las barras de scroll"
 
-#
 msgid "Override found with alternative service"
-msgstr ""
+msgstr "Superposición encontrada con un canal alternativo"
 
 msgid "Overwrite configuration files ?"
-msgstr ""
+msgstr "¿Sobreescribir los ficheros de configuración?"
 
 msgid "Overwrite configuration files during software upgrade?"
 msgstr ""
+"¿Sobreescribir los ficheros de configuración durante la actualización del "
+"software?"
 
 #
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Actualización de lista de paquetes"
@@ -4764,6 +4889,8 @@ msgid ""
 "Partnerbox allows editing a remote Dreambox's record timers and stream its "
 "TV  program."
 msgstr ""
+"Partnerbox permite editar las programaciones de un Dreambox remoto y "
+"reproducir sus programas de TV."
 
 #
 msgid "Password"
@@ -4773,19 +4900,17 @@ msgstr "Contraseña"
 msgid "Pause movie at end"
 msgstr "Parar película al final"
 
-#
 msgid "People & Blogs"
-msgstr ""
+msgstr "Gente & Blogs"
 
 msgid "PermanentClock shows the clock permanently on the screen."
-msgstr ""
+msgstr "PermanentClock muestra un reloj permanente en la pantalla."
 
 msgid "Persian"
-msgstr ""
+msgstr "Persa"
 
-#
 msgid "Pets & Animals"
-msgstr ""
+msgstr "Mascotas & Animales"
 
 #
 msgid "Phone number"
@@ -4828,42 +4953,39 @@ msgstr "Reproducir DVD"
 msgid "Play Music..."
 msgstr "Reproducir Música"
 
-#
 msgid "Play YouTube movies"
-msgstr ""
+msgstr "Reproducir las películas de YouTube"
 
 msgid "Play music from Last.fm"
-msgstr ""
+msgstr "Reproducir música desde Last.fm"
 
 msgid "Play music from Last.fm."
-msgstr ""
+msgstr " Reproducir música desde Last.fm"
 
-#
 msgid "Play next video"
-msgstr ""
+msgstr "Reproducir el video siguiente"
 
 #
 msgid "Play recorded movies..."
 msgstr "Reproducir películas grabadas..."
 
-#
 msgid "Play video again"
-msgstr ""
+msgstr "Reproducir el video de nuevo"
 
 msgid "Play videos from PC on your Dreambox"
-msgstr ""
+msgstr "Reproducir videos desde el PC a su Dreambox"
 
 msgid "Playback of Youtube through a PC"
-msgstr ""
+msgstr "Reproducir Youtube a través del PC"
 
 msgid "Player for Network and Internet Streams"
-msgstr ""
+msgstr "Reproductor para red y streaming de internet"
 
 msgid "Player for Network and Internet Streams."
-msgstr ""
+msgstr "Reproductor para red y streaming de internet."
 
 msgid "Plays your favorite music and videos"
-msgstr ""
+msgstr "Reproducir su música y videos preferidos"
 
 #
 msgid "Please Reboot"
@@ -4873,14 +4995,15 @@ msgstr "Por favor, Reiniciar"
 msgid "Please Select Medium to be Scanned"
 msgstr "Por favor, seleccione el medio a ser escaneado"
 
-#
 msgid "Please add titles to the compilation."
-msgstr ""
+msgstr "Por favor, añada títulos a la compilación."
 
 msgid ""
 "Please be aware, that anyone can disable the parental control, if you have "
 "not set a PIN."
 msgstr ""
+"Por favor, tenga cuidad, alguien puede desactivar el control parental si no "
+"le ha puesto un PIN."
 
 #
 msgid "Please change recording endtime"
@@ -4950,7 +5073,7 @@ msgid "Please enter the correct pin code"
 msgstr "Por favor, ponga el pin correcto"
 
 msgid "Please enter the old PIN code"
-msgstr ""
+msgstr "Por favor, introduca el PIN anterior"
 
 #
 msgid "Please enter your email address here:"
@@ -4960,9 +5083,8 @@ msgstr "Introduzca su email aquí:"
 msgid "Please enter your name here (optional):"
 msgstr "Introduzca su nombre (opcional):"
 
-#
 msgid "Please enter your search term."
-msgstr ""
+msgstr "Por favor, introduzca el término de búsqueda."
 
 #
 msgid "Please follow the instructions on the TV"
@@ -4996,9 +5118,8 @@ msgstr "Por favor, seleccione una lista de reproducción a borrar..."
 msgid "Please select a playlist..."
 msgstr "Por favor, seleccione una lista de reproducción..."
 
-#
 msgid "Please select a standard feed or try searching for videos."
-msgstr ""
+msgstr "Por favor seleccione un origen estándar o intente buscando videos."
 
 #
 msgid "Please select a subservice to record..."
@@ -5010,6 +5131,7 @@ msgstr "Por favor, seleccione un subcanal..."
 
 msgid "Please select an NFI file and press green key to flash!"
 msgstr ""
+"Por favor, ¡seleccione un fichero NFI y pulse la tecla verde para flashear!"
 
 #
 msgid "Please select an extension to remove."
@@ -5082,26 +5204,22 @@ msgstr ""
 "Use las teclas ARRIBA y ABAJO para seleccionar su idioma. Después, pulse el "
 "botón OK."
 
-#
-#, fuzzy
 msgid "Please wait (Step 2)"
-msgstr "Por favor, espere..."
+msgstr "Por favor, espere... (Paso 2)"
 
 #
 msgid "Please wait for activation of your network configuration..."
 msgstr "Espere la activación de su configuración de red..."
 
-#
 msgid "Please wait for activation of your network mount..."
-msgstr ""
+msgstr "Por favor, espere la activación de su montaje de red..."
 
 #
 msgid "Please wait while removing selected package..."
 msgstr "Espere mientras borro el paquete seleccionado..."
 
-#
 msgid "Please wait while removing your network mount..."
-msgstr ""
+msgstr "Por favor, espere mientras eliminamos su montaje de red..."
 
 #
 msgid "Please wait while scanning is in progress..."
@@ -5111,9 +5229,8 @@ msgstr "Espere mientra el escaneo está activo..."
 msgid "Please wait while searching for removable packages..."
 msgstr "Espere mientras busco paquetes borrables..."
 
-#
 msgid "Please wait while updating your network mount..."
-msgstr ""
+msgstr "Por favor, espere mientras actulizo su montaje de red..."
 
 #
 msgid "Please wait while we configure your network..."
@@ -5151,25 +5268,19 @@ msgstr "Información de actividad del manejador de Plugin"
 msgid "Plugin manager help"
 msgstr "Ayuda del manejador de Plugin"
 
-#
 #, python-format
 msgid "Plugin: %(plugin)s , Version: %(version)s"
-msgstr ""
+msgstr "Plugin: %(plugin)s , Versión: %(version)s"
 
 #
 msgid "Plugins"
 msgstr "Plugins"
 
 msgid "PodCast streams podcasts to your Dreambox."
-msgstr ""
+msgstr "PodCast stream podcasts a su Dreambox."
 
-#
 msgid "Poland"
-msgstr ""
-
-#
-msgid "Polarity"
-msgstr "Polaridad"
+msgstr "Polonia"
 
 #
 msgid "Polarization"
@@ -5207,6 +5318,9 @@ msgstr "Puerto D"
 msgid "Portuguese"
 msgstr "Portugués"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Motor"
@@ -5228,13 +5342,15 @@ msgid "Positioner storage"
 msgstr "Almacenar motor"
 
 msgid "PositionerSetup helps you installing a motorized dish"
-msgstr ""
+msgstr "PositionerSetup ayuda a instalar su antena motorizada"
 
-#
 msgid ""
 "Power state to change to after recordings. Select \"standard\" to not change "
 "the default behavior of enigma2 or values changed by yourself."
 msgstr ""
+"Estado del apagado cambia después de las grabaciones. Seleccion \"estándar\" "
+"para no cambiar el comportamiento normal de enigma2 o cambie los valores por "
+"si mismo."
 
 #
 msgid "Power threshold in mA"
@@ -5245,17 +5361,17 @@ msgid "Predefined transponder"
 msgstr "Transponder predefinido"
 
 msgid "Prepare another USB stick for image flashing"
-msgstr ""
+msgstr "Prepare otro pendrive USB para flasear la imagen."
 
 #
 msgid "Preparing... Please wait"
 msgstr "Preparando... Por favor espere"
 
 msgid "Press INFO on your remote control for additional information."
-msgstr ""
+msgstr "Pulse INFO en su control remoto para información adicional."
 
 msgid "Press MENU on your remote control for additional options."
-msgstr ""
+msgstr "Pulse MENU en su mando a distancia para opciones adicionales."
 
 #
 msgid "Press OK on your remote control to continue."
@@ -5269,38 +5385,32 @@ msgstr "Pulse OK para activar la piel seleccionada."
 msgid "Press OK to activate the settings."
 msgstr "Pulse OK para activar la configuración."
 
-#
 msgid "Press OK to collapse this host"
-msgstr ""
+msgstr "Pulse OK para contraer este host"
 
-#
 msgid "Press OK to edit selected settings."
-msgstr ""
+msgstr "Pulse OK para editar la configuración seleccionada."
 
 #
 msgid "Press OK to edit the settings."
 msgstr "Pulse OK para editar la configuración."
 
-#
 msgid "Press OK to expand this host"
-msgstr ""
+msgstr "Pulse OK para expandir este host"
 
 #
 #, python-format
 msgid "Press OK to get further details for %s"
 msgstr "Pulse OK para obtener más detalles para %s"
 
-#
 msgid "Press OK to mount this share!"
-msgstr ""
+msgstr "¡Pulse OK para montar esta unidad!"
 
-#
 msgid "Press OK to mount!"
-msgstr ""
+msgstr "¡Pulse OK para montar!"
 
-#
 msgid "Press OK to save settings."
-msgstr ""
+msgstr "Pulse OK para guardar la configuración"
 
 #
 msgid "Press OK to scan"
@@ -5310,9 +5420,8 @@ msgstr "Pulse OK para buscar"
 msgid "Press OK to select a Provider."
 msgstr "Pulse OK para seleccionar un Proveedor."
 
-#
 msgid "Press OK to select."
-msgstr ""
+msgstr "Pulse OK para seleccionar."
 
 #
 msgid "Press OK to select/deselect a CAId."
@@ -5347,10 +5456,10 @@ msgid "Preview menu"
 msgstr "Menú previsualizar"
 
 msgid "Preview screenshots of running tv shows"
-msgstr ""
+msgstr "Previsualizar pantallas de los programas de la tv en ejecución"
 
 msgid "Preview screenshots of running tv shows."
-msgstr ""
+msgstr "Previsualizar pantallas de los programas de la tv en ejecución."
 
 #
 msgid "Primary DNS"
@@ -5388,16 +5497,15 @@ msgstr "Proveedor a buscar"
 msgid "Providers"
 msgstr "Proveedores"
 
-#
 msgid "Published"
-msgstr ""
+msgstr "Publicado"
 
 #
 msgid "Python frontend for /tmp/mmi.socket"
 msgstr "Frontend Python para /tmp/mmi.socket"
 
 msgid "Python frontend for /tmp/mmi.socket."
-msgstr ""
+msgstr "Frontend Python para /tmp/mmi.socket."
 
 #
 msgid "Quick"
@@ -5420,6 +5528,9 @@ msgid "RGB"
 msgstr "RGB"
 
 msgid "RSS viewer"
+msgstr "Visor RSS"
+
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
 msgstr ""
 
 #
@@ -5427,7 +5538,7 @@ msgid "Radio"
 msgstr "Radio"
 
 msgid "Ralink"
-msgstr ""
+msgstr "Ralink"
 
 #
 msgid "Ram Disk"
@@ -5437,13 +5548,11 @@ msgstr "Disco Ram"
 msgid "Random"
 msgstr "Aleatorio"
 
-#
 msgid "Rating"
-msgstr ""
+msgstr "Puntuación"
 
-#
 msgid "Ratings: "
-msgstr ""
+msgstr "Puntuaciones:"
 
 #
 msgid "Really close without saving settings?"
@@ -5457,9 +5566,8 @@ msgstr "¿Quiere borrar las programaciones terminadas?"
 msgid "Really exit the subservices quickzap?"
 msgstr "¿Quiere salir del zapeo rápido de subcananles?"
 
-#
 msgid "Really quit MyTube Player?"
-msgstr ""
+msgstr "¿Seguro que quiere salir del reproductor MyTube?"
 
 #
 msgid "Really reboot now?"
@@ -5477,19 +5585,19 @@ msgstr "¿Quiere apagar ahora?"
 msgid "Reboot"
 msgstr "Reiniciar"
 
-#
 msgid "Recently featured"
-msgstr ""
+msgstr "Característica reciente"
 
 #
 msgid "Reception Settings"
 msgstr "Configuración de Recepción"
 
 msgid "Reconstruct .ap and .sc files"
-msgstr ""
+msgstr "Reconstruir ficheros .ap y .sc"
 
 msgid "Reconstruct missing or corrupt .ap and .sc files of recorded movies."
 msgstr ""
+"Reconstruir ficheros .ap y .sc desaparecidos o corruptos de grabaciones."
 
 #
 msgid "Record"
@@ -5516,9 +5624,8 @@ msgstr "Ficheros grabados..."
 msgid "Recording"
 msgstr "Grabando"
 
-#
 msgid "Recording paths"
-msgstr ""
+msgstr "Rutas de grabación"
 
 #
 msgid "Recording(s) are in progress or coming up in few seconds!"
@@ -5533,9 +5640,12 @@ msgstr "Grabaciones"
 msgid "Recordings always have priority"
 msgstr "Las grabaciones siempre tienen prioridad"
 
-msgid "Reenter new PIN"
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
 msgstr ""
 
+msgid "Reenter new PIN"
+msgstr "Volver a introducir el nuevo PIN"
+
 #
 msgid "Refresh Rate"
 msgstr "Velocidad de refresco"
@@ -5544,30 +5654,27 @@ msgstr "Velocidad de refresco"
 msgid "Refresh rate selection."
 msgstr "Selección de velocidad de refresco."
 
-#
 msgid "Related video entries."
-msgstr ""
+msgstr "Entradas de vídeos relacionadas."
 
-#
 msgid "Relevance"
-msgstr ""
+msgstr "Relevancia"
 
 #
 msgid "Reload"
 msgstr "Recargar"
 
-#
 msgid "Reload Black-/Whitelists"
-msgstr ""
+msgstr "Recargar listas blancas/negras"
 
 msgid "Remember service PIN"
-msgstr ""
+msgstr "Recordar el PIN del canal"
 
 msgid "Remember service PIN cancel"
-msgstr ""
+msgstr "Recordar la cancelación de PIN del canal"
 
 msgid "Remote timer and remote TV player"
-msgstr ""
+msgstr "Programación y reproducción de TV remota"
 
 #
 msgid "Remove"
@@ -5635,7 +5742,7 @@ msgid "Rename crashlogs"
 msgstr "Renombrar crashlogs"
 
 msgid "Rename your movies"
-msgstr ""
+msgstr "Renombrar sus películas"
 
 #
 msgid "Repeat"
@@ -5655,21 +5762,21 @@ msgstr "Repeticiones"
 
 msgid "Replace the minute input for the seek functions with a seekbar."
 msgstr ""
+"Reemplazar la entrada de minutos manualmente por una barra de "
+"posicionamiento."
 
 msgid "Replace the rewind  input with a seekbar"
-msgstr ""
+msgstr "Reemplazar la entrada de rebobinado por una barra"
 
 #
 msgid "Require description to be unique"
 msgstr "Obligar a que la Descripción sea única"
 
-#
 msgid "Required medium type:"
-msgstr ""
+msgstr "Tipo de medio requerido:"
 
-#
 msgid "Rescan"
-msgstr ""
+msgstr "Reescanear"
 
 #
 msgid "Reset"
@@ -5683,9 +5790,8 @@ msgstr "Reinicia y renumera los nombre de títulos"
 msgid "Reset count"
 msgstr "Borrar Contador"
 
-#
 msgid "Reset saved position"
-msgstr ""
+msgstr "Borrar la posición guardada"
 
 #
 msgid "Reset video enhancement settings to system defaults?"
@@ -5699,9 +5805,8 @@ msgstr "¿Resetar la configuración de video mejorado a la última configuració
 msgid "Resolution"
 msgstr "Resolución"
 
-#
 msgid "Response video entries."
-msgstr ""
+msgstr "Respuesta de entradas de video."
 
 #
 msgid "Restart"
@@ -5748,20 +5853,21 @@ msgid "Restore system settings"
 msgstr "Configuración del sistema de restauración"
 
 msgid "Restore your Dreambox with a USB stick"
-msgstr ""
+msgstr "Restaurar su Dreambox con un pen USB"
 
-#
 msgid "Restrict \"after event\" to a certain timespan?"
+msgstr "¿Restringir \"después del evento\" a un cierto intervalo de tiempo?"
+
+msgid "Restrict to events on certain dates"
 msgstr ""
 
 #
 msgid "Resume from last position"
 msgstr "Continuar desde la última posición"
 
-#
 #, python-format
 msgid "Resume position at %s"
-msgstr ""
+msgstr "Continuar la posición a %s"
 
 #
 #. TRANSLATORS: The string "Resuming playback" flashes for a moment
@@ -5794,9 +5900,8 @@ msgstr "Velocidades hacia atrás"
 msgid "Right"
 msgstr "Dcha"
 
-#
-msgid "Rolloff"
-msgstr "Caerte"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5806,10 +5911,12 @@ msgstr "Velocidad del motor"
 msgid "Running"
 msgstr "Ejecutando"
 
-#
-msgid "Russia"
+msgid "Running in testmode"
 msgstr ""
 
+msgid "Russia"
+msgstr "Rusia"
+
 #
 msgid "Russian"
 msgstr "Ruso"
@@ -5818,10 +5925,24 @@ msgstr "Ruso"
 msgid "S-Video"
 msgstr "S-Video"
 
-#
-msgid "SINGLE LAYER DVD"
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
 msgstr ""
 
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
+msgid "SINGLE LAYER DVD"
+msgstr "DVD CAPA SIMPLE"
+
 #
 msgid "SNR"
 msgstr "SNR"
@@ -5834,6 +5955,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Sáb"
@@ -5850,12 +5984,11 @@ msgstr "Satélite"
 msgid "Satellite Equipment Setup"
 msgstr "Configuración equipo satélite"
 
-#
 msgid "Satellite equipment"
-msgstr ""
+msgstr "Equipo satélite"
 
 msgid "SatelliteEquipmentControl allows you to fine-tune DiSEqC-settings"
-msgstr ""
+msgstr "SatelliteEquipmentControl permite configurar de manera fina el DiSEqC"
 
 #
 msgid "Satellites"
@@ -5866,7 +5999,7 @@ msgid "Satfinder"
 msgstr "Buscador de satélites"
 
 msgid "Satfinder helps you to align your dish"
-msgstr ""
+msgstr "Satfinder le ayuda a alinear su antena"
 
 #
 msgid "Sats"
@@ -5888,21 +6021,17 @@ msgstr "Guardar"
 msgid "Save Playlist"
 msgstr "Guardar lista de reproducción"
 
-#
 msgid "Save current delay to key"
-msgstr ""
+msgstr "Guardar el retardo actual a la tecla"
 
-#
 msgid "Save to key"
-msgstr ""
+msgstr "Guardar la tecla"
 
-#
 msgid "Save values and close plugin"
-msgstr ""
+msgstr "Guardar valores y cerrar el plugin"
 
-#
 msgid "Save values and close screen"
-msgstr ""
+msgstr "Guardar valores y cerrar la pantalla"
 
 #
 msgid "Scaler sharpness"
@@ -5920,9 +6049,8 @@ msgstr "Escanear"
 msgid "Scan Files..."
 msgstr "Escanear Ficheros..."
 
-#
 msgid "Scan NFS share"
-msgstr ""
+msgstr "Escanear NFS compartido"
 
 #
 msgid "Scan QAM128"
@@ -6009,19 +6137,20 @@ msgid "Scan band US SUPER"
 msgstr "Escanear banda US SUPER"
 
 msgid "Scan devices for playable media files"
-msgstr ""
+msgstr "Escanear dispositivos para ficheros reproducibles"
 
-#
 msgid "Scan range"
-msgstr ""
+msgstr "Rango de escaneo"
 
 msgid ""
 "Scan your network for wireless access points and connect to them using your "
 "selected wireless device.\n"
 msgstr ""
+"Escanear su red para puntos de acceso inalámbricos y conectar a ellos usando "
+"el dispositivo seleccionado.\n"
 
 msgid "Scans default lamedbs sorted by satellite"
-msgstr ""
+msgstr "Escanear la base de datos por defecto ordenada por satélite"
 
 #
 msgid ""
@@ -6029,44 +6158,37 @@ msgid ""
 msgstr ""
 "Escanee el lamedbs por defecto de satélites ordenados con un motor conectado"
 
-#
 msgid "Science & Technology"
-msgstr ""
+msgstr "Ciencia y Tecnología"
 
-#
 msgid "Search Term(s)"
-msgstr ""
+msgstr "Término(s) buscado(s)"
 
-#
 msgid "Search category:"
-msgstr ""
+msgstr "Buscar categoría:"
 
 #
 msgid "Search east"
 msgstr "Buscar este"
 
-#
 msgid "Search for network shares"
-msgstr ""
+msgstr "Buscar unidades de red"
 
-#
 msgid "Search for network shares..."
-msgstr ""
+msgstr "Buscar unidades de red..."
 
-#
 msgid "Search region:"
-msgstr ""
+msgstr "Buscar región:"
 
-#
 msgid "Search restricted content:"
-msgstr ""
+msgstr "Buscar contenido restringido:"
 
 #
 msgid "Search strictness"
 msgstr "Búsqueda extricta"
 
 msgid "Search through the EPG"
-msgstr ""
+msgstr "Buscar a través del EPG"
 
 #
 msgid "Search type"
@@ -6084,21 +6206,18 @@ msgstr "Buscando actualizaciones disponibles. Por favor, espere..."
 msgid "Searching for new installed or removed packages. Please wait..."
 msgstr "Buscando para nuevos paquetes instalados o borrados. Espere..."
 
-#
 msgid "Searching your network. Please wait..."
-msgstr ""
+msgstr "Buscando su red. Por favor, espere..."
 
 #
 msgid "Secondary DNS"
 msgstr "DNS Secundario"
 
-#
-#, fuzzy
 msgid "Security service not running."
-msgstr "Seleccione canal a añadir..."
+msgstr "Servicio de seguridad no ejecutado."
 
 msgid "See service-epg (and PiP) from other channels in an infobar."
-msgstr ""
+msgstr "Ver el canal-epg (y PiP) desde otros canales en la infobar."
 
 #
 msgid "Seek"
@@ -6108,11 +6227,13 @@ msgstr "Posicionar"
 msgid "Select"
 msgstr "Seleccionar"
 
-#
 msgid ""
 "Select \"exact match\" to enforce \"Match title\" to match exactly or "
 "\"partial match\" if you only want to search for a part of the event title."
 msgstr ""
+"Seleccionar \"coincidir exacto\" para forzar \"Coincidir título\" a "
+"coincidir exactamente or \"concidir parcial\" si sólo quiere buscar una "
+"parte del título del evento."
 
 #
 msgid "Select HDD"
@@ -6151,28 +6272,27 @@ msgid "Select channel to record on"
 msgstr "Seleccionar canal a grabar"
 
 msgid "Select desired image from feed list"
-msgstr ""
+msgstr "Seleccione la imagen deseada de su lista de fuentes"
 
 msgid "Select files for backup."
-msgstr ""
+msgstr "Seleccionar ficheros a backup."
 
 #
 msgid "Select files/folders to backup"
 msgstr "Seleccionar ficheros/carpetas a backup"
 
 msgid "Select input device"
-msgstr ""
+msgstr "Seleccione dispositivo de entrada"
 
 msgid "Select input device."
-msgstr ""
+msgstr "Seleccione dispositivo de entrada."
 
 #
 msgid "Select interface"
 msgstr "Seleccione interfaz"
 
-#
 msgid "Select new feed to view."
-msgstr ""
+msgstr "Seleccione nueva fuente a ver."
 
 #
 msgid "Select package"
@@ -6190,14 +6310,12 @@ msgstr "Seleccionar la velocidad de refresco"
 msgid "Select service to add..."
 msgstr "Seleccione canal a añadir..."
 
-#
 #, python-format
 msgid "Select the key you want to set to %i ms"
-msgstr ""
+msgstr "Seleccione la tecla que quiere poner a %i ms"
 
-#
 msgid "Select the location to save the recording to."
-msgstr ""
+msgstr "Seleccione la ruta dónde grabar."
 
 #
 msgid "Select type of Filter"
@@ -6215,17 +6333,15 @@ msgstr "Seleccione entrada de vídeo con los botones arriba/abajo"
 msgid "Select video mode"
 msgstr "Seleccionar el modo de video"
 
-#
 msgid "Select whether or not you want to enforce case correctness."
-msgstr ""
+msgstr "Seleccione si quiere o no forzar la correción de mayúsculas."
 
 #
 msgid "Select wireless network"
 msgstr "Seleccione red inalámbrica"
 
-#
 msgid "Select your choice."
-msgstr ""
+msgstr "Seleccione su elección."
 
 #
 msgid "Send DiSEqC"
@@ -6247,13 +6363,11 @@ msgstr "Repetir secuencia"
 msgid "Serbian"
 msgstr "Servio"
 
-#
 msgid "Server IP"
-msgstr ""
+msgstr "IP Servidor"
 
-#
 msgid "Server share"
-msgstr ""
+msgstr "Carpeta servidor"
 
 #
 msgid "Service"
@@ -6267,9 +6381,8 @@ msgstr "Búsqueda de canal"
 msgid "Service Searching"
 msgstr "Buscando Canales"
 
-#
 msgid "Service delay"
-msgstr ""
+msgstr "Retardo del canal"
 
 #
 msgid "Service has been added to the favourites."
@@ -6295,6 +6408,9 @@ msgstr ""
 "¡Canal no encontrado!\n"
 "(SID no encontrado en el PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Buscar canales"
@@ -6316,11 +6432,10 @@ msgid "Services"
 msgstr "Canales"
 
 msgid "Set Bitstream/PCM audio delays"
-msgstr ""
+msgstr "Ponga el retardo de audio Bitstream/PCM"
 
-#
 msgid "Set End Time"
-msgstr ""
+msgstr "Ponga la hora final"
 
 #
 msgid "Set Voltage and 22KHz"
@@ -6330,10 +6445,9 @@ msgstr "Poner Voltaje y 22kHz"
 msgid "Set available internal memory threshold for the warning."
 msgstr "Poner el límite de la memoria interna disponible para avisar."
 
-#
 #, python-format
 msgid "Set delay to %i ms (can be set)"
-msgstr ""
+msgstr "Ponga el retardo a %i ms (puede ser puesto)"
 
 #
 msgid "Set interface as default Interface"
@@ -6347,16 +6461,14 @@ msgstr "Poner límites"
 msgid "Set maximum duration"
 msgstr "Máxima Duración"
 
-#
 msgid "Set this NO to disable this AutoTimer."
-msgstr ""
+msgstr "Ponga a NO para desactivar este AutoTimer."
 
 msgid "Sets your Dreambox into Deep-Standby"
-msgstr ""
+msgstr "Ponga su Dreambox en reposo profundo"
 
-#
 msgid "Setting key canceled"
-msgstr ""
+msgstr "Asignación de tecla concelada"
 
 #
 msgid "Settings"
@@ -6370,40 +6482,36 @@ msgstr "Configuración"
 msgid "Setup Mode"
 msgstr "Modo configuración"
 
-#
 msgid "Setup for the Audio Sync Plugin"
-msgstr ""
+msgstr "Configuración para el Plugin de Sincronización de Audio"
 
-#
 #, python-format
 msgid ""
 "Shall the USB stick wizard proceed and program the image file %s into flash "
 "memory?"
 msgstr ""
+"¿El asistente de USB programará el fichero de imagen %s en la memoria flash?"
 
 #
 msgid "Sharpness"
 msgstr "Nitidez"
 
-#
 msgid "Short Movies"
-msgstr ""
+msgstr "Películas cortas"
 
 msgid "Short filenames"
-msgstr ""
+msgstr "Nombres de ficheros cortos"
 
-#
 msgid "Should this AutoTimer be restricted to a timespan?"
-msgstr ""
+msgstr "¿Debe limitarse el AutoTimer a un intervalo de tiempo?"
 
-#
 msgid "Should this AutoTimer only match up to a certain event duration?"
-msgstr ""
+msgstr "¿Debe el AutoTimer sólo aplicarse a una duración del evento?"
 
-#
 msgid ""
 "Should timers created by this AutoTimer be recorded to a custom location?"
 msgstr ""
+"¿Deben las grabaciones del AutoTimer guardarse en un directorio concreto?"
 
 #
 msgid "Show Info"
@@ -6421,12 +6529,13 @@ msgstr "Mostrar estado de la WLAN"
 msgid "Show blinking clock in display during recording"
 msgstr "Muestra parpadeo en el reloj mientras graba"
 
-#
 msgid "Show event-progress in channel selection"
-msgstr ""
+msgstr "Muestra el progreso del evento en la selección del canal"
 
-#
 msgid "Show in extension menu"
+msgstr "Mostra en el menú extensión"
+
+msgid "Show info screen"
 msgstr ""
 
 #
@@ -6441,6 +6550,9 @@ msgstr "Mostrar infobar cuando cambie el evento"
 msgid "Show infobar on skip forward/backward"
 msgstr "Mostrar la infobar al pasar adelante/atras"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Mostrar movimiento del motor"
@@ -6458,24 +6570,26 @@ msgid "Show the tv player..."
 msgstr "Mostrar el reproductor de tv"
 
 msgid "Show webcam pictures on your TV Screen"
-msgstr ""
+msgstr "Mostrar fotos de webcams en su pantalla TV"
 
 msgid ""
 "Shows a list containing the zapping-history and allows user to zap to the "
 "entries or to modify them."
 msgstr ""
+"Mostrar una lista conteniendo la historia de zapeo y permitir al usuario "
+"zapear a los canales o modificarlos."
 
 msgid "Shows a list of recent zap entries"
-msgstr ""
+msgstr "Mostrar una lista de canales zapeados recientes"
 
 msgid "Shows average bitrate of video and audio"
-msgstr ""
+msgstr "Mostrar la media de bitrate del video y el audio"
 
 msgid "Shows statistics of watched services"
-msgstr ""
+msgstr "Mostrar estadísticas de los canales vistos"
 
 msgid "Shows the clock permanently on the screen"
-msgstr ""
+msgstr "Mostrar un reloj en la pantalla permanentemente"
 
 #
 msgid "Shows the state of your wireless LAN connection.\n"
@@ -6510,14 +6624,14 @@ msgid "Simple"
 msgstr "Sencillo"
 
 msgid "Simple IRC GroupChat client for e2 #dm8000-vip channel"
-msgstr ""
+msgstr "Cliente simple de IRC para el canal e2 #dm8000-vip"
 
 #
 msgid "Simple titleset (compatibility for legacy players)"
 msgstr "Título Simple (compatibilidad para más reproductores)"
 
 msgid "SimpleRSS allows reading RSS newsfeeds on your Dreambox."
-msgstr ""
+msgstr "SimpleRSS permite leer noticias en RSS en su Dreambox."
 
 #
 msgid "Single"
@@ -6544,7 +6658,7 @@ msgid "Skin"
 msgstr "Piel"
 
 msgid "SkinSelector shows a menu with selectable skins"
-msgstr ""
+msgstr "SkinSelector muestra un menú con pieles seleccionables"
 
 #
 msgid "Skins"
@@ -6592,7 +6706,7 @@ msgid "Software management"
 msgstr "Manejar software"
 
 msgid "Software manager setup"
-msgstr ""
+msgstr "Configuración del manejador de software"
 
 #
 msgid "Software restore"
@@ -6603,10 +6717,10 @@ msgid "Software update"
 msgstr "Actualizar software"
 
 msgid "SoftwareManager manages your Dreambox software"
-msgstr ""
+msgstr "SoftwareManager maneja el software de su Dreambox"
 
 msgid "Softwaremanager information"
-msgstr ""
+msgstr "Información Softwaremanager"
 
 #
 msgid "Some plugins are not available:\n"
@@ -6632,9 +6746,8 @@ msgstr ""
 msgid "Sorry, no Details available!"
 msgstr "Lo siento, no hay Detalles disponibles!"
 
-#
 msgid "Sorry, video is not available!"
-msgstr ""
+msgstr "Lo siento, ¡el video no está disponible!"
 
 #
 msgid ""
@@ -6672,13 +6785,11 @@ msgstr "Portadora de sonido"
 msgid "South"
 msgstr "Sur"
 
-#
 msgid "South Korea"
-msgstr ""
+msgstr "Corea del Sur"
 
-#
 msgid "Spain"
-msgstr ""
+msgstr "España"
 
 #
 msgid "Spanish"
@@ -6688,9 +6799,8 @@ msgstr "Español"
 msgid "Split preview mode"
 msgstr "Dividir modo previsualización"
 
-#
 msgid "Sports"
-msgstr ""
+msgstr "Deportes"
 
 #
 msgid "Standby"
@@ -6700,20 +6810,21 @@ msgstr "Reposo"
 msgid "Standby / Restart"
 msgstr "Reposo / Reiniciar"
 
-#
 #, python-format
 msgid "Standby Fan %d PWM"
-msgstr ""
+msgstr "Ventilador en reposo %d PWM"
 
-#
 #, python-format
 msgid "Standby Fan %d Voltage"
-msgstr ""
+msgstr "Ventilador en reposo %d Voltaje"
 
 #
 msgid "Start Webinterface"
 msgstr "Comenzar el interface web"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Comenzar desde el inicio"
@@ -6726,9 +6837,8 @@ msgstr "¿Iniciar grabación?"
 msgid "Start test"
 msgstr "Comenzar test"
 
-#
 msgid "Start with following feed:"
-msgstr ""
+msgstr "Comenzar el siguiente origen:"
 
 #
 msgid "StartTime"
@@ -6738,30 +6848,26 @@ msgstr "HoraInicio"
 msgid "Starting on"
 msgstr "Comenzando"
 
-#
 msgid "Std. Feeds"
-msgstr ""
+msgstr "Orígenes Std."
 
 msgid "Step by step network configuration"
-msgstr ""
+msgstr "Configuración de red paso a paso"
 
 #
 msgid "Step east"
 msgstr "Paso este"
 
-#
 msgid "Step in ms for arrow keys"
-msgstr ""
+msgstr "Paso en ms para las teclas de flecha"
 
-#
 #, python-format
 msgid "Step in ms for key %i"
-msgstr ""
+msgstr "Paso en ms para la tecla %i"
 
-#
 #, python-format
 msgid "Step in ms for keys '%s'"
-msgstr ""
+msgstr "Paso en ms para las teclas '%s'"
 
 #
 msgid "Step west"
@@ -6808,10 +6914,10 @@ msgid "Stored position"
 msgstr "Posición almacenada"
 
 msgid "Stream podcasts"
-msgstr ""
+msgstr "Stream podcasts"
 
 msgid "Streaming modules for the orf.at iptv web page."
-msgstr ""
+msgstr "Módulos de streaming para la web orf.at.iptv"
 
 #
 msgid "Subservice list..."
@@ -6837,13 +6943,15 @@ msgstr "Dom"
 msgid "Sunday"
 msgstr "Domingo"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Intercambiar Canales"
 
-#
 msgid "Sweden"
-msgstr ""
+msgstr "Suecia"
 
 #
 msgid "Swedish"
@@ -6857,17 +6965,11 @@ msgstr "Cambiar al subcanal siguiente"
 msgid "Switch to previous subservice"
 msgstr "Cambiar al subcanal anterior"
 
-#
 msgid "Switchable tuner types:"
-msgstr ""
+msgstr "Tipos de tuner seleccionables::"
 
-#
-msgid "Symbol Rate"
-msgstr "Velocidad de símbolo"
-
-#
-msgid "Symbolrate"
-msgstr "Velocidad de símbolo"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6888,10 +6990,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "El fichero TS es demasiado grande para el nivel 1 ISO9660."
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "Sistema de TV"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Tabla de contenido para la colección"
@@ -6908,22 +7019,22 @@ msgstr "Etiqueta 2"
 msgid "Tags"
 msgstr "Etiquetas"
 
-#
 msgid "Tags the Timer/Recording will have."
-msgstr ""
+msgstr "Etiquetas que tendrán las grabaciones."
 
-#
 msgid "Tags: "
-msgstr ""
+msgstr "Etiquetas:"
 
-#
 msgid "Taiwan"
-msgstr ""
+msgstr "Taiwan"
 
 #
 msgid "Temperature and Fan control"
 msgstr "Control de temperatura y ventilador"
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Terrestre"
@@ -6940,10 +7051,9 @@ msgstr "Configuración de Test DisEqC"
 msgid "Test Type"
 msgstr "Tipo de Testeo"
 
-#
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 80
 msgid "Test again"
-msgstr ""
+msgstr "Reiniciar test"
 
 #
 msgid "Test mode"
@@ -6954,7 +7064,7 @@ msgid "Test the network configuration of your Dreambox.\n"
 msgstr "Testear la configuración de red de su Dreambox.\n"
 
 msgid "Test your DiSEqC equipment"
-msgstr ""
+msgstr "Testear el equipamiento DiSEqC"
 
 #
 msgid "Test-Messagebox?"
@@ -6991,6 +7101,9 @@ msgid ""
 "has dropped below a definable threshold.You can use this wizard to remove "
 "some plugins."
 msgstr ""
+"El Asistente de Limpieza le informa cuando la memoria libre interna de su "
+"dreambox ha descendido de un límite definible. Puede usar este asistente "
+"para eliminar algunos plugins."
 
 #
 msgid ""
@@ -7009,49 +7122,68 @@ msgid ""
 "The box automatically wakes up for recordings or at the end of the sleep "
 "time. You therefore don't have to wait until it is on again."
 msgstr ""
+"El plugin Elektro Ahorro de Energía pone su caja desde reposo a modo apagado "
+"a ciertas horas.\n"
+"Esto sólo ocurre si su caja están en reposo y no hay grabaciones en proceso "
+"o programadas en los próximos 20 minutos.\n"
+"La caja automáticamente se enciende para las grabaciones o al final del "
+"tiempo de apagado. Por lo tengo, no tiene que esperar hasta que vuelva a "
+"encenderlo."
 
 msgid ""
 "The Hotplug plugin notifies your system of newly added or removed devices."
 msgstr ""
+"El plugin Hotplug notifica al sistema de un dispositivo añadido o quitado."
 
-#
 msgid ""
 "The NetworkWizard extension is not installed!\n"
 "Please install it."
 msgstr ""
+"¡La extensión Asistente de Red no está instalada!\n"
+"Por favor, instálela."
 
 msgid "The PIN code has been changed successfully."
-msgstr ""
+msgstr "El código PIN ha sido cambiado correctamente."
 
 msgid "The PIN codes you entered are different."
-msgstr ""
+msgstr "El código PIN que ha introducido es diferente."
 
 msgid ""
 "The PicturePlayer displays your photos on the TV.\n"
 "You can view them as thumbnails or slideshow."
 msgstr ""
+"El Reproductor de Fotos visualiza sus fotos en la TV.\n"
+"Puede verlas como miniaturas o como presentación."
 
 msgid ""
 "The Satfinder plugin helps you to align your dish.\n"
 "It shows you informations about signal rate and errors."
 msgstr ""
+"El plugin Satfinder le ayuda a alinear su antena.\n"
+"Muestra información sobre calidad de señal y errores."
 
 msgid ""
 "The SkinSelector shows a menu with selectable skins.\n"
 "It's now easy to change the look and feel of your Dreambox."
 msgstr ""
+"El SkinSelector muestra un menú con pieles seleccionables.\n"
+"Ahora puede cambiar fácilmente la vista y apariencia de su Dreambox."
 
 msgid ""
 "The SoftwareManager manages your Dreambox software.\n"
 "It's easy to update your receiver's software, install or remove plugins or "
 "even backup and restore your system settings."
 msgstr ""
+"El SoftwareManager maneja el software de su Dreambox.\n"
+"Es fácil actualizar el software de su receptor, instalar o eliminar plugins "
+"o incluso hacer backups o restaurar su configuración del sistema."
 
-#
 msgid ""
 "The Softwaremanagement extension is not installed!\n"
 "Please install it."
 msgstr ""
+"¡La extensión Softwaremanagement no está instalada!\n"
+"Por favor, instálela."
 
 #
 msgid ""
@@ -7075,31 +7207,38 @@ msgid ""
 "The USB stick was prepared to be bootable.\n"
 "Now you can download an NFI image file!"
 msgstr ""
+"El pen USB fue preparado para ser arrancable.\n"
+"¡Ahora puede descargar un fichero de imagen NFI!"
 
 msgid ""
 "The VideoEnhancement plugin provides advanced video enhancement settings."
 msgstr ""
+"El plugin VideoEnhancement proporciona configuraciones avanzadas de video "
+"mejorado."
 
 msgid ""
 "The VideoTune helps fine-tuning your tv display.\n"
 "You can control brightness and contrast of your tv."
 msgstr ""
+"El VideoTune ayuda a configurar su tv de manera fina.\n"
+"Puede controlar su control de brillo y contraste de su tv."
 
 msgid "The Videomode plugin provides advanced video mode settings."
-msgstr ""
+msgstr "El plugin Videomode proporciona configuración de video avanzado."
 
 msgid ""
 "The WirelessLan plugin helps you configuring your WLAN network interface."
-msgstr ""
+msgstr "El plugin WirelessLan ayuda a configurar el interfaz de red WLAN."
 
 #
 msgid "The backup failed. Please choose a different backup location."
 msgstr "El backup ha fallado. Elija una localización diferente para el backup."
 
-#
 msgid ""
 "The counter can automatically be reset to the limit at certain intervals."
 msgstr ""
+"El contador puede ser reiniciado al límite automáticamente a ciertos "
+"intervalos."
 
 #
 #, python-format
@@ -7110,11 +7249,12 @@ msgstr ""
 "El directorio %s no es escribible.\n"
 "Seleccione otro directorio que si lo sea."
 
-#
 msgid ""
 "The editor to be used for new AutoTimers. This can either be the Wizard or "
 "the classic editor."
 msgstr ""
+"El editor puede usarse para nuevos AutoTimers. Puede usar el Asistente o el "
+"editor clásico."
 
 #
 #, python-format
@@ -7163,7 +7303,7 @@ msgid "The match attribute is mandatory."
 msgstr "El atributo a coincidir es obligatorio."
 
 msgid "The md5sum validation failed, the file may be corrupted!"
-msgstr ""
+msgstr "La validación md5sum ha fallado, ¡el fichero parece corrupto!"
 
 #
 msgid "The package doesn't contain anything."
@@ -7188,7 +7328,7 @@ msgid "The results have been written to %s."
 msgstr "Los resultados han sido escritos a %s."
 
 msgid "The skin is in KingSize-definition 1024x576"
-msgstr ""
+msgstr "La piel está en la definición KingSize 1024x576"
 
 #
 msgid "The sleep timer has been activated."
@@ -7231,6 +7371,8 @@ msgid ""
 "The wizard found a configuration backup. Do you want to restore your old "
 "settings from %s?"
 msgstr ""
+"El asistente encontró una configuración guardada. ¿Quiere restaurar su "
+"configuración antigua desde %s?"
 
 #
 msgid "The wizard is finished now."
@@ -7272,20 +7414,20 @@ msgstr ""
 msgid "There was an error downloading the packetlist. Please try again."
 msgstr "Hay un error descargando la lista de paquetes. Intente de nuevo."
 
-#
 msgid "There was an error getting the feed entries. Please try again."
-msgstr ""
+msgstr "Hay un error al conseguir las entradas del feed. Inténtelo de nuevo."
 
 #
 msgid "There was an error. The package:"
 msgstr "Hubo un error. El paquete:"
 
-#
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 130
 msgid ""
 "There's a certificate update available for your dreambox. Would you like to "
 "apply this update now?"
 msgstr ""
+"Hay una actualización certificada para su dreambox. ¿Quiere aplicar esta "
+"actualización ahora?"
 
 #
 msgid ""
@@ -7300,40 +7442,41 @@ msgstr ""
 msgid "This Dreambox can't decode %s streams!"
 msgstr "Este Dreambox no puede decodificar %s streams!"
 
-#
 msgid "This Month"
-msgstr ""
+msgstr "Este Mes"
 
-#
 msgid "This Week"
-msgstr ""
+msgstr "Esta Semana"
 
-#
 msgid ""
 "This is a name you can give the AutoTimer. It will be shown in the Overview "
 "and the Preview."
 msgstr ""
+"Este es un nombre que puede dar al AutoTimer. Esto mostrará un Resumen una "
+"Vista Previa."
 
 #
 msgid "This is step number 2."
 msgstr "Este es el paso número 2."
 
-#
 msgid ""
 "This is the delay in hours that the AutoTimer will wait after a search to "
 "search the EPG again."
 msgstr ""
+"Esto es el retardo en horas que el AutoTimer esperará después de volver a "
+"buscar en el EPG."
 
-#
 msgid "This is the help screen. Feed me with something to display."
-msgstr ""
+msgstr "Esta es la pantalla de ayuda. Póngame algo para visualizar."
 
-#
 msgid ""
 "This is what will be looked for in event titles. Note that looking for e.g. "
 "german umlauts can be tricky as you have to know the encoding the channel "
 "uses."
 msgstr ""
+"Esto es lo que está bloqueado para los títulos de eventos. Note que buscando "
+"por ej. diéresis española puede tener que saber la codificación que usa el "
+"canal."
 
 msgid ""
 "This plugin creates a USB stick which can be used to update the firmware of "
@@ -7344,6 +7487,13 @@ msgid ""
 "If you already have a prepared bootable USB stick, please insert it now. "
 "Otherwise plug in a USB stick with a minimum size of 64 MB!"
 msgstr ""
+"Este plugin crea un pen USB el cual puede ser usado para actualizar el "
+"firmware de su Dreambox sin la necesidad de red o conexión WIFI.\n"
+"Primero, el pen USB será preparado para que sea arrancable.\n"
+"En el siguiente paso, una imagen NFI podrá ser descargada desde el servidor "
+"de actualizaciones y guardada en el pen.\n"
+"Si ya tiene un pen USB arrancable, insertelo ahora.  De lo contrario inserte "
+"un pen USB con un tamaño mínimo de 64 Megas."
 
 #
 msgid "This plugin is installed."
@@ -7361,14 +7511,17 @@ msgstr "Este plugin será instalado."
 msgid "This plugin will be removed."
 msgstr "Este plugin será desinstalado."
 
-#
 msgid "This setting controls the behavior when a timer matches a found event."
 msgstr ""
+"Esta configuración controla el comportamiento cuando una programación "
+"coincide con el evento encontrado."
 
 msgid ""
 "This system tool is internally used to program the hardware with firmware "
 "updates."
 msgstr ""
+"La herramienta del sistema es internamente usada para programar el hardware "
+"con actualizaciones del firmware."
 
 #
 msgid ""
@@ -7432,12 +7585,14 @@ msgstr ""
 msgid "This test detects your configured LAN-Adapter."
 msgstr "Este test detecta su adaptador de red configurado."
 
-#
 msgid ""
 "This toggles the behavior on timer conflicts. If an AutoTimer matches an "
 "event that conflicts with an existing timer it will not ignore this event "
 "but add it disabled."
 msgstr ""
+"Esto configura el comportamiento en un conflicto de grabaciones. Si un "
+"AutoTimer coincide con un evento de una programación existente, no lo ignora "
+"pero lo añade desactivado."
 
 #
 msgid "Three"
@@ -7463,13 +7618,11 @@ msgstr "Jueves"
 msgid "Time"
 msgstr "Hora"
 
-#
 msgid "Time in minutes to append to recording."
-msgstr ""
+msgstr "Tiempo en minutos a añadir a la grabación."
 
-#
 msgid "Time in minutes to prepend to recording."
-msgstr ""
+msgstr "Tiempo en minutos a añadir antes de la grabación."
 
 #
 msgid "Time/Date Input"
@@ -7556,7 +7709,7 @@ msgid "Titleset mode"
 msgstr "Modo Título"
 
 msgid "To be used as simple downloading application by other Plugins."
-msgstr ""
+msgstr "Será usado como una aplicación de descargas simple para otros Plugins."
 
 msgid ""
 "To update your Dreambox firmware, please follow these steps:\n"
@@ -7566,6 +7719,12 @@ msgid ""
 "for 10 seconds.\n"
 "3) Wait for bootup and follow instructions of the wizard."
 msgstr ""
+"Para actualizar el firmware de su Drembox, siga los siguientes pasos:\n"
+"1) Apague su caja con el interruptor trasero de corriente y ponga el USB "
+"arrancable.\n"
+"2) Vuelva a arrancar la corriente y pulse el botón abajo en panel frontal "
+"durante 10 segundos.\n"
+"3) Espere que arranque y siga las instrucciones del asistente."
 
 #
 msgid "Today"
@@ -7587,20 +7746,18 @@ msgstr "Toneburst"
 msgid "Toneburst A/B"
 msgstr "Toneburst A/B"
 
-#
 msgid "Top favorites"
-msgstr ""
+msgstr "Más Favoritos"
 
-#
 msgid "Top rated"
-msgstr ""
+msgstr "Más valorados"
 
 #
 msgid "Track"
 msgstr "Pista"
 
 msgid "TrafficInfo shows german traffic information."
-msgstr ""
+msgstr "TrafficInfo muestra información sobre el tráfico alemán."
 
 #
 msgid "Translation"
@@ -7611,10 +7768,6 @@ msgid "Translation:"
 msgstr "Traducción:"
 
 #
-msgid "Transmission Mode"
-msgstr "Modo de trasmisión"
-
-#
 msgid "Transmission mode"
 msgstr "Modo de trasmisión"
 
@@ -7622,13 +7775,8 @@ msgstr "Modo de trasmisión"
 msgid "Transponder"
 msgstr "Transponder"
 
-#
-msgid "Transponder Type"
-msgstr "Tipo de Transponder"
-
-#
 msgid "Travel & Events"
-msgstr ""
+msgstr "Viajes y Eventos"
 
 #
 msgid "Tries left:"
@@ -7647,13 +7795,11 @@ msgstr "Intenta encontrar los transponders en la red de cable.. espere..."
 msgid "Trying to download a new packetlist. Please wait..."
 msgstr "Intentando descargar una nueva lista de paquetes. Espere..."
 
-#
 msgid "Trying to download the Youtube feed entries. Please wait..."
-msgstr ""
+msgstr "Intentando descargar las entradas de Youtube. Por favor, espere..."
 
-#
 msgid "Trying to download the Youtube search results. Please wait..."
-msgstr ""
+msgstr "Intentando descargar los resultados de Youtube. Por favor, espere..."
 
 #
 msgid "Tue"
@@ -7691,9 +7837,8 @@ msgstr "Configuración sintonizador"
 msgid "Tuner status"
 msgstr "Sintonizador"
 
-#
 msgid "Tuner type"
-msgstr ""
+msgstr "Tipo de tuner"
 
 #
 msgid "Turkish"
@@ -7755,10 +7900,12 @@ msgstr "Deshacer instalación"
 msgid "Undo uninstall"
 msgstr "Deshacer desinstalación"
 
-#
-msgid "UnhandledKey"
+msgid "Unencrypted"
 msgstr ""
 
+msgid "UnhandledKey"
+msgstr "Tecla no manejada"
+
 #
 msgid "Unicable"
 msgstr "Unicable"
@@ -7775,23 +7922,26 @@ msgstr "Matrix Unicable"
 msgid "Uninstall"
 msgstr "Desinstalar"
 
-#
 msgid "United States"
-msgstr ""
+msgstr "Estados Unidos"
 
 #
 msgid "Universal LNB"
 msgstr "LNB Universal"
 
-msgid "Unknown network adapter."
+msgid "Unknown"
 msgstr ""
 
-#
+msgid "Unknown network adapter."
+msgstr "Adaptador de red desconocido."
+
 msgid ""
 "Unless this is enabled AutoTimer will NOT automatically look for events "
 "matching your AutoTimers but only when you leave the GUI with the green "
 "button."
 msgstr ""
+"A menos que esto se active en AutoTimer, no buscará automáticamente eventos "
+"que coincidan sus AutoTimers, sólo cuando dejes el GUI con el botón verde."
 
 #
 msgid "Unmount failed"
@@ -7802,33 +7952,32 @@ msgid "Unsupported"
 msgstr "No soportado"
 
 msgid "UnwetterInfo shows german storm information."
-msgstr ""
+msgstr "UnwetterInfo muestra información del tiempo alemán."
 
 #
 msgid "Update"
 msgstr "Actualizar"
 
-#, fuzzy
 msgid "Update done..."
-msgstr "Actualizar"
+msgstr "Actualización realizada..."
 
-#
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 170
 msgid ""
 "Update done... The genuine dreambox test will now be rerun and should not "
 "ask you to update again."
 msgstr ""
+"Actualización realizada... .El test de dreambox genuino será reejecutado y "
+"no deberá preguntarte de nuevo actualizar."
 
-#
-#, fuzzy
 msgid "Updatefeed not available."
-msgstr "actualizaciones disponibles."
+msgstr "Updatefeed no disponible."
 
-#
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 150
 msgid ""
 "Updating failed. Nothing is broken, just the update couldn't be applied."
 msgstr ""
+"Falló la actualización. Nada está roto, sólo que la actualización no puede "
+"aplicarse."
 
 #
 msgid "Updating finished. Here is the result:"
@@ -7838,10 +7987,8 @@ msgstr "Actualización finalizada. Aquí está el resultado:"
 msgid "Updating software catalog"
 msgstr "Actualizando el catálogo de software"
 
-#
-#, fuzzy
 msgid "Updating, please wait..."
-msgstr "Por favor, espere..."
+msgstr "Actualizando, por favor espere..."
 
 #
 msgid "Updating... Please wait... This can take some minutes..."
@@ -7859,15 +8006,15 @@ msgstr "Actualizando"
 msgid "Upgrading Dreambox... Please wait"
 msgstr "Actualizando Dreambox... Por favor espere"
 
-#
 msgid "Upper bound of timespan."
-msgstr ""
+msgstr "Límite superior de intervalo de tiempo."
 
-#
 msgid ""
 "Upper bound of timespan. Nothing after this time will be matched. Offsets "
 "are not taken into account!"
 msgstr ""
+"Límite superior de tiempo. Nada después de este tiempo será marcado. Los "
+"intervalos de tiempo no son tenidos en cuenta."
 
 #
 msgid "Use"
@@ -7894,19 +8041,15 @@ msgid "Use a gateway"
 msgstr "Usar puerta de enlace"
 
 msgid "Use and control multiple Dreamboxes with different RCs."
-msgstr ""
-
-#
-msgid "Use non-smooth winding at speeds above"
-msgstr "Usar el el efecto de sombras a veloc. ^"
+msgstr "Usa y controla varios Dreambox con mandos diferentes."
 
 #
 msgid "Use power measurement"
 msgstr "Usar medida de potencia"
 
-#
 msgid "Use the Networkwizard to configure selected network adapter"
 msgstr ""
+"Use el Asistente de Red para configurar el adaptador de red seleccionado"
 
 #
 msgid "Use the Networkwizard to configure your Network\n"
@@ -7931,10 +8074,10 @@ msgstr ""
 "Después, pulse OK."
 
 msgid "Use this input device settings?"
-msgstr ""
+msgstr "¿Usar esta configuración de dispositivo de entrada?"
 
 msgid "Use this settings?"
-msgstr ""
+msgstr "¿Usar esta configuración?"
 
 #
 msgid "Use this video enhancement settings?"
@@ -7960,13 +8103,11 @@ msgstr "Tipo de búsqueda de canales usada"
 msgid "User defined"
 msgstr "Definido por el usuario"
 
-#
 msgid "User management"
-msgstr ""
+msgstr "Manejo de usuario"
 
-#
 msgid "Usermanager"
-msgstr ""
+msgstr "Manejo de usuario"
 
 #
 msgid "Username"
@@ -7981,14 +8122,25 @@ msgid "VMGM (intro trailer)"
 msgstr "VMGM (trailer intro)"
 
 msgid "Vali-XD skin"
+msgstr "Piel Vali-XD"
+
+msgid "Vali.HD.atlantis skin"
 msgstr ""
 
 msgid "Vali.HD.nano skin"
+msgstr "Piel Vali.HD.nano"
+
+msgid "Vali.HD.warp skin"
 msgstr ""
 
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
+"¡Verificar la autenticidad del Dreambox ejecutando el plugin de dreambox "
+"genuino!"
+
+msgid "Verifying your internet connection..."
+msgstr ""
 
 #
 msgid "Vertical"
@@ -8006,6 +8158,9 @@ msgstr "Asistente de ajuste de vídeo"
 msgid "Video Output"
 msgstr "Salida de video"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Configuración de Video"
@@ -8048,38 +8203,36 @@ msgid "Video mode selection."
 msgstr "Selección de modo de vídeo."
 
 msgid "Video streaming from the orf.at web page"
-msgstr ""
+msgstr "Streaming de video desde la página web orf.at"
 
 msgid "VideoEnhancement provides advanced video enhancement settings"
 msgstr ""
+"VideoEnhancement proporciona configuraciones de video avanzado mejorado"
 
 msgid "VideoTune helps fine-tuning your tv display"
-msgstr ""
+msgstr "VideoTune ayuda a configurar de manera fina su TV"
 
-#
 msgid "Videobrowser exit behavior:"
-msgstr ""
+msgstr "Salir del comportamiento de navegador de video:"
 
 #
 msgid "Videoenhancement Setup"
 msgstr "Configuración de mejora de vídeo"
 
 msgid "Videomode provides advanced video mode settings"
-msgstr ""
+msgstr "Videomode dispone de configuración de video avanzado"
 
-#
 msgid "Videoplayer stop/exit behavior:"
-msgstr ""
+msgstr "Parar/salir del reproductor de video:"
 
-#
 msgid "View Count"
-msgstr ""
+msgstr "Contador de vistas"
 
 msgid "View Google maps"
-msgstr ""
+msgstr "Ver mapas de Google"
 
 msgid "View Google maps with your Dreambox."
-msgstr ""
+msgstr "Ver mapas de Google con su Dreambox."
 
 #
 msgid "View Movies..."
@@ -8097,9 +8250,8 @@ msgstr "Ver Rass interactivo..."
 msgid "View Video CD..."
 msgstr "Ver Video CD..."
 
-#
 msgid "View active downloads"
-msgstr ""
+msgstr "Ver descargas activas"
 
 #
 msgid "View details"
@@ -8121,9 +8273,8 @@ msgstr "Ver lista de extensiones de Pantalla e Interfaz de Usuario"
 msgid "View list of available EPG extensions."
 msgstr "Ver lista de extensiones de EPG disponibles."
 
-#
 msgid "View list of available Satellite equipment extensions."
-msgstr ""
+msgstr "Ver lista de extensiones disponibles de equipamiento de Satélite."
 
 #
 msgid "View list of available communication extensions."
@@ -8157,41 +8308,38 @@ msgstr "Ver lista de extensiones de software disponibles"
 msgid "View list of available system extensions"
 msgstr "Ver lista de extensiones de sistema disponibles"
 
-#
 msgid "View related videos"
-msgstr ""
+msgstr "Ver videos relacionados"
 
-#
 msgid "View response videos"
-msgstr ""
+msgstr "Ver videos de respuesta"
 
 #
 msgid "View teletext..."
 msgstr "Ver teletexto..."
 
-#
 msgid "View, edit or delete mountpoints on your Dreambox."
-msgstr ""
+msgstr "Ver, editar o borrar puntos de montaje en su Dreambox."
 
-#
 msgid "View, edit or delete usernames and passwords for your network."
-msgstr ""
+msgstr "Ver, editar o borrar nombres de usuarios y contraseñas de su red."
 
-#
 msgid "Views: "
-msgstr ""
+msgstr "Vistos:"
 
 #
 msgid "Virtual KeyBoard"
 msgstr "Teclado Virtual"
 
 msgid "Visualization for the European Installation Bus"
-msgstr ""
+msgstr "Visualización del Bus de Instalación Europeo"
 
 msgid ""
 "Visualize and control your lights, dimmers, blinds, thermostats etc. through "
 "EIB/KNX. (linknx server required)"
 msgstr ""
+"Visualizar y controlar las luces, reguladores de luz, persianas, "
+"termostatos, etc a través de EIB / KNX. (Necesario servidor linknx)"
 
 #
 msgid "Voltage mode"
@@ -8210,10 +8358,10 @@ msgid "WEP"
 msgstr "WEP"
 
 msgid "WLAN adapter."
-msgstr ""
+msgstr "Adaptador WLAN"
 
 msgid "WLAN connection"
-msgstr ""
+msgstr "Conexión WLAN"
 
 #
 msgid "WPA"
@@ -8231,9 +8379,8 @@ msgstr "WPA2"
 msgid "WSS on 4:3"
 msgstr "WSS en 4:3"
 
-#
 msgid "Wait time in ms before activation:"
-msgstr ""
+msgstr "ms en espera antes de la activación:"
 
 #
 msgid "Waiting"
@@ -8244,12 +8391,15 @@ msgid "Warn if free space drops below (kB):"
 msgstr "Avisar si el espacio libre baja de (kB):"
 
 msgid "Watch streams from ZDF Mediathek"
-msgstr ""
+msgstr "Ver streams desde el servidor ZDF"
 
 msgid "WeatherPlugin shows weatherforecasts on your Dreambox."
-msgstr ""
+msgstr "WeatherPlugin muestra previsiones del tiempo en su Dreambox."
 
 msgid "Weatherforecast on your Dreambox"
+msgstr "El tiempo en su Dreambox"
+
+msgid "Web-Bouquet-Editor for PC"
 msgstr ""
 
 #
@@ -8310,7 +8460,6 @@ msgstr ""
 "copia de seguridad de la configuración actual y una pequeña explicación de "
 "cómo actualizar el firmware."
 
-#
 msgid ""
 "Welcome to the MyTube Youtube Player.\n"
 "\n"
@@ -8325,8 +8474,19 @@ msgid ""
 "\n"
 "The Help button shows this help again."
 msgstr ""
+"Bienvenido al reproductor de Youtube MyTube.\n"
+"\n"
+"Usa la tecla + para navegar al campo de búsqueda y la tecla - para navegar a "
+"las entradas de vídeos.\n"
+"\n"
+"Para reproducir un vídeo sólo tiene que pulsar OK en su mando.\n"
+"\n"
+"Pulse info para ver la descripción de la película.\n"
+"\n"
+"Pulse la tecla menú para opciones adicionales.\n"
+"\n"
+"La tecla ayuda mostrará esta ayuda de nuevo."
 
-#
 msgid ""
 "Welcome to the MyTube Youtube Player.\n"
 "\n"
@@ -8338,6 +8498,16 @@ msgid ""
 "\n"
 "Press exit to get back to the input field."
 msgstr ""
+"Bienvenido al reproductor de Youtube MyTube.\n"
+"\n"
+"Mientras introduce sus término(s) de búsqueda verá sugerencias que coinciden "
+"con sus términos.\n"
+"\n"
+"Para seleccionar una sugerencia, pulse la tecla ABAJO en su mando, "
+"seleccione el resultado que desee y pulse OK en su mando para comenzar la "
+"búsqueda.\n"
+"\n"
+"Pulse exit para volver al campo de entrada."
 
 #
 msgid ""
@@ -8412,11 +8582,17 @@ msgstr "¿Qué quiere buscar?"
 msgid "What to do with submitted crashlogs?"
 msgstr "¿Qué hacer con los crashlogs enviados?"
 
-#
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
 "timer with the same description already exists in the timer list."
 msgstr ""
+"Cuando esta opción está activada, el AutoTimer no selecciona eventos donde "
+"otra programación ya existe con la misma descripción."
 
 #
 msgid ""
@@ -8453,10 +8629,21 @@ msgstr "Red Inalámbrica"
 msgid "Wireless Network State"
 msgstr "Estado Red Inalámbrica"
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
 msgstr ""
+"Con AntiScrollbar puede tapar las lineas de anuncios (ej. canales de "
+"noticias)"
 
 msgid ""
 "With DVDBurn you can make compilations of records from your Dreambox hard "
@@ -8465,38 +8652,52 @@ msgid ""
 "a standard-compliant DVD that can be played on conventinal DVD players.\n"
 "HDTV recordings can only be burned in proprietary dreambox format."
 msgstr ""
+"Con DVDBurn puede hacer DVDs de películas grabadas en su Dreambox.\n"
+"Opcionalmente puede personalizar menús. Puede grabar un DVD estándar que "
+"pueda ser reproducido en los reproductores convencionales.\n"
+"Las grabaciones en HDTV sólo pueden grabarse en un formato de dreambox "
+"propietario."
 
 msgid "With EPGSearch you can search through the EPG and create timers."
-msgstr ""
+msgstr "Con EPGSearch puede buscar a través del EPG y crear grabaciones."
 
 msgid "With Genuine Dreambox you can verify the authenticity of your Dreambox."
-msgstr ""
+msgstr "Con Genuine Dreambox puede verificar la autenticidad de su Dreambox."
 
 msgid ""
 "With IMDb you can download and displays movie information (rating, poster, "
 "cast, synopsis etc.) about the selected event."
 msgstr ""
+"Con IMDb puede descargar y visualizar información de películas (valoración, "
+"portada, reparto, sinopsis, etc.) sobre el evento seleccionado."
 
 msgid "With MovieRetitle you can rename your movies."
-msgstr ""
+msgstr "Con MovieRetitle puede cambiar el nombre a sus películas."
 
 msgid ""
 "With MyTube you can play YouTube videos directly on your TV without a PC."
 msgstr ""
+"Con MyTube puede reproducir vídeos de YouTube directamente en su TV sin "
+"ningún PC."
 
 msgid "With WebcamViewer you can watch webcams on your TV Screen."
-msgstr ""
+msgstr "Con WebcamViewer puede ver webacams en su pantalla de TV."
 
 msgid ""
 "With Werbezapper you can bridge commercials by creating short timers\n"
 "(between 1 and 9 minutes long) which will automatically zap back to the "
 "original channel after execution."
 msgstr ""
+"Con Werbezapper puede saltar los anuncios creando pequeñas programaciones\n"
+"(entre 1 y 9 minutos de duración) el cuál volverá automáticamente al canal "
+"original después de la ejecución."
 
 msgid ""
 "With YouTubePlayer you can watch YouTube-Videos on the Dreambox.\n"
 "This plugin requires a PC with the VLC program running."
 msgstr ""
+"Con YouTubePlayer puede ver vídeos de YouTube en su Dreambox.\n"
+"Este plugin necesita un PC ejecutando el programa VLC."
 
 msgid ""
 "With the CommonInterfaceAssignment plugin it is possible to use differentCI "
@@ -8504,53 +8705,72 @@ msgid ""
 "each of them.\n"
 "This allows watching a scrambled service while recording another one."
 msgstr ""
+"Con el plugin CommonInterfaceAssignment es posible usar diferentes módulos "
+"CI en su Dreambox y asignar a proveedores/canales o caids cada uno de "
+"ellos.\n"
+"Esto permite ver un canal codificado mientras está grabando otro."
 
 msgid ""
 "With the CrashlogAutoSubmit plugin it is possible to automaticallymail "
 "crashlogs found on your hard drive to Dream Multimedia."
 msgstr ""
+"Con el plugin CrashlogAutoSubmit es posible enviar automáticamente por email "
+"los logs de fallos encontrados en su disco duro a Dream Multimedia."
 
 msgid ""
 "With the DefaultServicesScanner plugin you can scan default lamedbs sorted "
 "by satellite with a connected dish positioner."
 msgstr ""
+"Con el plugin DefaultServicesScanner puede escanear la base de datos por "
+"defecto del satélite conectado a su antena."
 
 msgid ""
 "With the DiseqcTester plugin you can test your satellite equipment for "
 "DiSEqC compatibility and errors."
 msgstr ""
+"Con el plugin DiseqcTester puede testear su equipamiento de satélite para la "
+"compatibilidad  y errores con DISEqC."
 
 msgid ""
 "With the NFIFlash plugin it is possible to prepare a USB stick with an "
 "Dreambox image.\n"
 "It is then possible to flash your Dreambox with the image on that stick."
 msgstr ""
+"Con el plugin NFIFlash puede preparar un pen USB con una imagen Dreambox.\n"
+"Es posible flasear su Dreambox con la imagen de ese pen USB."
 
 msgid ""
 "With the NetworkWizard you can easily configure your network step by step."
 msgstr ""
+"Con el NetworkWizard puede configurar su red con un asistente paso a paso."
 
 msgid ""
 "With the PositionerSetup plugin it is easy to install and configure a "
 "motorized dish."
 msgstr ""
+"Con el plugin PositionerSetup puede configurar fácilmente su antena "
+"motorizada."
 
 msgid ""
 "With the SatelliteEquipmentControl plugin it is possible to fine-tune DiSEqC-"
 "settings."
 msgstr ""
+"Con el plugin SatelliteEquipmentControl es posible configurar de manera "
+"detallada los parámetros DiSEqC."
 
-#
 msgid ""
 "With this option enabled the channel to record on can be changed to a "
 "alternative service it is restricted to."
 msgstr ""
+"Con la activación de esta opción, el canal a grabar puede ser cambiado a uno "
+"alternativo si el canal está restringido."
 
-#
 msgid ""
 "With this option you can restrict the AutoTimer to a certain ammount of "
 "scheduled recordings. Set this to 0 to disable this functionality."
 msgstr ""
+"Con esta opción puede restringir AutoTimer a una cantidad de grabaciones "
+"programadas. Si lo pone a 0, desactiva esta funcionalidad."
 
 #
 msgid "Wizard"
@@ -8581,7 +8801,7 @@ msgid "Yes to all"
 msgstr "Si a todo"
 
 msgid "Yes, always"
-msgstr ""
+msgstr "Si, siempre"
 
 #
 msgid "Yes, and delete this movie"
@@ -8595,13 +8815,11 @@ msgstr "Si, no me preguntes otra vez"
 msgid "Yes, backup my settings!"
 msgstr "Si, ¡backup mi configuración!"
 
-#
 msgid "Yes, but play next video"
-msgstr ""
+msgstr "Si, pero reproduce el siguiente vídeo"
 
-#
 msgid "Yes, but play previous video"
-msgstr ""
+msgstr "Si, pero reproducie el vídeo anterior"
 
 #
 msgid "Yes, do a manual scan now"
@@ -8677,6 +8895,12 @@ msgstr ""
 "Mientras 'Nombre' es sólo un nombre visualizado en la vista previa, "
 "'Concidir en título' es lo que buscará en el EPG."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "¡No puede borrar esto!"
@@ -8711,7 +8935,7 @@ msgstr ""
 "Como es un Atributo obligatorio no puede continuar sin eso."
 
 msgid "You didn't select a channel to record from."
-msgstr ""
+msgstr "No ha seleccionado un canal desde el cual grabar."
 
 #
 #, python-format
@@ -8769,6 +8993,9 @@ msgid ""
 "\n"
 "Do you want to set the pin now?"
 msgstr ""
+"Necesita poner un código PIN y ocultarlo a sus hijos.\n"
+"\n"
+"¿Quiere poner el pin ahora?"
 
 #
 msgid ""
@@ -8845,9 +9072,8 @@ msgstr ""
 "Su fichero de configuración no es correcto:\n"
 "%s"
 
-#
 msgid "Your current collection will get lost!"
-msgstr ""
+msgstr "¡Su colección actual se perdió!"
 
 #
 msgid "Your dreambox is shutting down. Please stand by..."
@@ -8889,17 +9115,17 @@ msgstr "Su nombre (opcional):"
 msgid "Your network configuration has been activated."
 msgstr "Su configuración de red ha sido activada."
 
-#
-msgid "Your network mount has been activated."
+msgid "Your network is not working. Please try again."
 msgstr ""
 
-#
+msgid "Your network mount has been activated."
+msgstr "Su montaje de red ha sido activado."
+
 msgid "Your network mount has been removed."
-msgstr ""
+msgstr "Su montaje de red ha sido eliminado."
 
-#
 msgid "Your network mount has been updated."
-msgstr ""
+msgstr "Su montaje de red ha sido actualizado."
 
 #
 msgid ""
@@ -8914,11 +9140,10 @@ msgstr ""
 "Pulse que quiere hacer lo siguiente."
 
 msgid "ZDFMediathek allows you to watch streams from ZDF Mediathek."
-msgstr ""
+msgstr "ZDFMediathek permite ver streams desde ZDF Mediathek."
 
-#
 msgid "Zap back to previously tuned service?"
-msgstr ""
+msgstr "¿Volver al último canal sintonizado?"
 
 #
 msgid "Zap back to service before positioner setup?"
@@ -8928,24 +9153,23 @@ msgstr "¿Volver al canal antes de configurar el motor?"
 msgid "Zap back to service before satfinder?"
 msgstr "¿Volver al canal antes de ir al buscador de satélites?"
 
-#
 msgid "Zap back to service before tuner setup?"
-msgstr ""
+msgstr "¿Volver al canal anterior a la configuración del tuner?"
 
 msgid "Zap between commercials"
-msgstr ""
+msgstr "Zapeo entre anuncios"
 
 msgid "ZapStatistic shows the watched services with some statistics."
-msgstr ""
+msgstr "ZapStatistic muestra los canales vistos con algunas estadísticas."
 
 msgid "Zoom into letterboxed/anamorph movies"
-msgstr ""
+msgstr "Ampliar películas a letterboxed/anamorph"
 
 msgid "Zoom into letterboxed/anamorph movies."
-msgstr ""
+msgstr "Ampliar películas a letterboxed/anamorph."
 
 msgid "Zydas"
-msgstr ""
+msgstr "Zydas"
 
 #
 msgid "[alternative edit]"
@@ -8964,7 +9188,7 @@ msgid "[move mode]"
 msgstr "[modo mover]"
 
 msgid "a HD skin from Kerni"
-msgstr ""
+msgstr "una piel HD de Kerni"
 
 #
 msgid "a gui to assign services/providers to common interface modules"
@@ -9077,7 +9301,7 @@ msgid "add services"
 msgstr "Añadir Canales"
 
 msgid "add tags to recorded movies"
-msgstr ""
+msgstr "añadir etiquetas a las películas grabadas"
 
 #
 msgid "add to parental protection"
@@ -9093,16 +9317,22 @@ msgstr "orden alfabético"
 
 msgid "assign color buttons (red/green/yellow/blue) to plugins from MOVIELIST."
 msgstr ""
+"asignar teclas de colores (rojo/verde/amarillo/azul) a plugins desde la "
+"lista de películas."
 
 msgid "assign color buttons to plugins from MOVIELIST"
-msgstr ""
+msgstr "asignar teclas de colores a plugins desde la lista de películas"
 
 msgid ""
 "assign long key-press (red/green/yellow/blue) to plugins or E2 functions."
 msgstr ""
+"asignar teclas pulsación larga (rojo/verde/amarillo/azul) a plugins o "
+"funciones de E2."
 
 msgid "assign long key-press on color buttons to plugins or E2 functions"
 msgstr ""
+"asignar teclas pulsación larga en teclas de colores a plugins o funciones de "
+"E2"
 
 #
 msgid "assigned CAIds:"
@@ -9112,6 +9342,12 @@ msgstr "CAIds asignados:"
 msgid "assigned Services/Provider:"
 msgstr "Canales/Proveedor asignados:"
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9130,6 +9366,9 @@ msgstr "pistas de audio"
 msgid "auto"
 msgstr "auto"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "disponible"
@@ -9162,6 +9401,9 @@ msgstr "lista negra"
 msgid "blue"
 msgstr "azul"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9203,6 +9445,9 @@ msgstr "limpiar lista"
 msgid "complex"
 msgstr "complejo"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "menú configuración"
@@ -9220,7 +9465,7 @@ msgid "continue"
 msgstr "continuar"
 
 msgid "control multiple Dreamboxes with different RCs"
-msgstr ""
+msgstr "controlar varios Dreamboxes con mandos diferentes"
 
 #
 msgid "copy to bouquets"
@@ -9234,9 +9479,15 @@ msgstr "no puede ser borrado"
 msgid "create directory"
 msgstr "crear directorio"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
-msgstr ""
+msgstr "imagen actualmente instalada: %s"
 
 #
 msgid "daily"
@@ -9246,6 +9497,9 @@ msgstr "diariamente"
 msgid "day"
 msgstr "día"
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "borrar"
@@ -9271,7 +9525,7 @@ msgid "delete..."
 msgstr "borrar..."
 
 msgid "description"
-msgstr ""
+msgstr "descripción"
 
 #
 msgid "disable"
@@ -9305,6 +9559,9 @@ msgstr "no grabar"
 msgid "done!"
 msgstr "¡hecho!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "editar alternativas"
@@ -9529,9 +9786,8 @@ msgstr "izquierda"
 msgid "length"
 msgstr "longitud"
 
-#
 msgid "list of EPG views..."
-msgstr ""
+msgstr "lista de vistas EPG..."
 
 #
 msgid "list style compact"
@@ -9585,6 +9841,9 @@ msgstr "minuto"
 msgid "minutes"
 msgstr "minutos"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "mes"
@@ -9665,16 +9924,15 @@ msgstr "no tiempo cumplido"
 msgid "none"
 msgstr "ninguno"
 
-#
 msgid "not configured"
-msgstr ""
+msgstr "no configurado"
 
 #
 msgid "not locked"
 msgstr "no bloqueado"
 
 msgid "not supported"
-msgstr ""
+msgstr "no soportado"
 
 #
 msgid "not used"
@@ -9781,10 +10039,7 @@ msgid "red"
 msgstr "rojo"
 
 msgid "redesigned Kerni-HD1 skin"
-msgstr ""
-
-msgid "redirect notifications to Growl"
-msgstr ""
+msgstr "piel rediseñada Kerni-HD1"
 
 #
 msgid "remove a nameserver entry"
@@ -9888,7 +10143,7 @@ msgid "seconds"
 msgstr "segundos"
 
 msgid "see service-epg (and PiP) from channels in an infobar"
-msgstr ""
+msgstr "ver el epg-canal (y PiP) desde los canales en la infobar"
 
 #
 msgid "select"
@@ -9919,17 +10174,16 @@ msgid "select the movie path"
 msgstr "seleccione el directorio de las películas"
 
 msgid "service PIN"
-msgstr ""
+msgstr "PIN del canal"
 
 msgid "set enigma2 to standby-mode after startup"
-msgstr ""
+msgstr "poner enigma2 en reposo después de arrancar"
 
-#
 msgid "sets the Audio Delay (LipSync)"
-msgstr ""
+msgstr "Poner el Retardo de Audio (LipSync)"
 
 msgid "setup PIN"
-msgstr ""
+msgstr "configurar PIN"
 
 #
 msgid "show DVD main menu"
@@ -10023,9 +10277,8 @@ msgstr "fotos en reproducción en bucle"
 msgid "sort by date"
 msgstr "ordenar por fecha"
 
-#
 msgid "special characters"
-msgstr ""
+msgstr "caracteres especiales"
 
 #
 msgid "standard"
@@ -10120,6 +10373,10 @@ msgid "toggle time, chapter, audio, subtitle info"
 msgstr "poner hora, capítulo, audio, info subtítulos"
 
 msgid "tuner is not supported"
+msgstr "tuner no soportado"
+
+#, python-format
+msgid "unable to find timer with id %i"
 msgstr ""
 
 #
@@ -10138,19 +10395,17 @@ msgstr "desconocido"
 msgid "unknown service"
 msgstr "servicio desconocido"
 
-#
 msgid "until standby/restart"
-msgstr ""
+msgstr "hasta reposo/reinicio"
 
-#
 msgid "use as HDD replacement"
-msgstr ""
+msgstr "usar como remplazo del HDD"
 
 msgid "use your Dreambox as Web proxy"
-msgstr ""
+msgstr "usar su Dreambox como proxy Web"
 
 msgid "use your Dreambox as Web proxy."
-msgstr ""
+msgstr "usar su Dreambox como proxy Web."
 
 #
 msgid "user defined"
@@ -10192,6 +10447,9 @@ msgstr "semanalmente"
 msgid "whitelist"
 msgstr "lista blanca"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "trabajando"
@@ -10291,6 +10549,9 @@ msgstr "zapeado"
 #~ msgid "50 Hz"
 #~ msgstr "50 Hz"
 
+#~ msgid "A BackToTheRoots-Skin ... or good old times."
+#~ msgstr "Una Piel BackToTheRoots ... o buenos momentos anteriores"
+
 #
 #~ msgid "AGC"
 #~ msgstr "AGC"
@@ -10426,6 +10687,22 @@ msgstr "zapeado"
 #~ msgstr "Elige origen"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Velocidad de código alta"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Velocidad de código baja"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Velocidad de código HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Velocidad de código LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Tarjeta compact flash"
 
@@ -10643,6 +10920,14 @@ msgstr "zapeado"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Introduzca velocidad de avance hacia delante"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Introduzca velocidad de avance hacia atrás"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Introduzca el nombre/SSID de la red WLAN:"
 
@@ -10678,6 +10963,10 @@ msgstr "zapeado"
 #~ msgstr "Tamaño de fuente"
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Contador de tramas sin problemas de sombras"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON dirección IP"
 
@@ -10697,6 +10986,24 @@ msgstr "zapeado"
 #~ msgid "General PCM delay"
 #~ msgstr "Pausa PCM General"
 
+#~ msgid ""
+#~ "Growlee allows your Dreambox to send short messages using the growl "
+#~ "protocol\n"
+#~ "like Recording started notifications to a PC running a growl client"
+#~ msgstr ""
+#~ "Growlee permite que su Dreambox envíe mensajes cortos usando el protocolo "
+#~ "growl\n"
+#~ "como la notificación de  inicio de una grabación a un PC ejecutando un "
+#~ "cliente growl"
+
+#
+#~ msgid "Guard Interval"
+#~ msgstr "Intervalo de guarda"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Modo intervalo seguro"
+
 #
 #~ msgid "Hello!"
 #~ msgstr "¡Hola!"
@@ -10706,6 +11013,21 @@ msgstr "zapeado"
 #~ msgstr "Aquí hay una pequeña explicación de los estados de los iconos."
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Información jerárquica"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Modo jerárquico"
+
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Si activa esto, una grabación existente también será considerada "
+#~ "grabación si el evento graba al menos el 80% de ella."
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Si quiere ver esta página, pulse OK."
 
@@ -10876,6 +11198,10 @@ msgstr "zapeado"
 #~ msgstr "Actualización-Online"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Posición Orbital"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Otro..."
 
@@ -10940,6 +11266,10 @@ msgstr "zapeado"
 #~ msgstr "Información de preceso del manejador de plugin..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polaridad"
+
+#
 #~ msgid "Port"
 #~ msgstr "Puerto"
 
@@ -11073,6 +11403,10 @@ msgstr "zapeado"
 #~ "configuración ahora."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Caerte"
+
+#
 #~ msgid "SSL"
 #~ msgstr "SSL"
 
@@ -11202,6 +11536,14 @@ msgstr "zapeado"
 #~ msgstr "Stéreo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Velocidad de símbolo"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Velocidad de símbolo"
+
+#
 #~ msgid ""
 #~ "The .NFI Image flasher USB stick is now ready to use. Please download an ."
 #~ "NFI image file from the feed server and save it on the stick. Then reboot "
@@ -11305,6 +11647,14 @@ msgstr "zapeado"
 #~ "3) Espere a que arranque y siga las instrucciones del asistente."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Modo de trasmisión"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Tipo de Transponder"
+
+#
 #~ msgid "Transpondertype"
 #~ msgstr "Tipo de Transpondedor"
 
@@ -11351,6 +11701,10 @@ msgstr "zapeado"
 #~ msgstr "Actualización finalizada. ¿Quiere reiniciar su Dreambox?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Usar el el efecto de sombras a veloc. ^"
+
+#
 #~ msgid "VCR Switch"
 #~ msgstr "Cambiar a VCR"
 
@@ -11613,6 +11967,9 @@ msgstr "zapeado"
 #~ msgid "rebooting..."
 #~ msgstr "reiniciando..."
 
+#~ msgid "redirect notifications to Growl"
+#~ msgstr "redirigir notificaciones a Growl"
+
 #
 #~ msgid ""
 #~ "scan done!\n"
index b607aa0..39f3ba7 100755 (executable)
--- a/po/et.po
+++ b/po/et.po
@@ -6,14 +6,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
-"PO-Revision-Date: 2010-12-30 09:00+0200\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
+"PO-Revision-Date: 2011-04-26 15:47+0200\n"
 "Last-Translator: Arvo <arvo@softshark.ee>\n"
 "Language-Team: none\n"
+"Language: et\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: et\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 2.0.3\n"
 
@@ -179,6 +179,14 @@ msgid "%H:%M"
 msgstr "%H:%M"
 
 #, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+"%d konflikt (i) leiti uute taimerite lisamisel:\n"
+"%s"
+
+#, python-format
 msgid "%d jobs are running in the background!"
 msgstr "%d protsessi käib tausta!"
 
@@ -211,6 +219,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr "%s: %s juures %s"
+
 msgid "(ZAP)"
 msgstr "(Ainult kanalivahetus)"
 
@@ -358,12 +370,12 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr "BackToTheRoots välimus.. aga Warp-8 kiirusega."
+
 msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr "BackToTheRoots välimus.. või vanad head ajad."
 
-msgid "A BackToTheRoots-Skin ... or good old times."
-msgstr "BackToTheRoots välimus... või vanad head ajad."
-
 msgid "A basic ftp client"
 msgstr "Põhi-ftp klient"
 
@@ -381,6 +393,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Demo laiendus TPM kasutamiseks."
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr "Vastuvõtja simulatsioon SG-Atlantis ekraanilt."
+
 msgid ""
 "A finished record timer wants to set your\n"
 "Dreambox to standby. Do that now?"
@@ -403,6 +418,9 @@ msgstr "Graafiline EPG kõigile kanalitele selles valikus"
 msgid "A graphical EPG interface"
 msgstr "Graafiline EPG liides"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr "Graafiline EPG liides ja EPG haldur"
+
 msgid "A graphical EPG interface."
 msgstr "Graafiline EPG liides."
 
@@ -844,6 +862,9 @@ msgstr "Küsi kasutajalt"
 msgid "Aspect Ratio"
 msgstr "Pildisuhe"
 
+msgid "Aspect ratio"
+msgstr "Pildisuhe"
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Määra levitaja/kanal/caid CI moodulile"
 
@@ -857,6 +878,9 @@ msgstr "Heli"
 msgid "Audio Options..."
 msgstr "Helisätted..."
 
+msgid "Audio PID"
+msgstr "Heli PID"
+
 msgid "Audio Sync"
 msgstr "Heli sünkroniseerimine"
 
@@ -917,6 +941,15 @@ msgstr ""
 "AutoTimer otsib  EPG-d ja loob taimerid vastavalt kasutaja määratud "
 "otsingukriteeriumitele."
 
+msgid "AutoTimer was added successfully"
+msgstr "AutoTaimer lisatud"
+
+msgid "AutoTimer was changed successfully"
+msgstr "AutoTimer muudetud"
+
+msgid "AutoTimer was removed"
+msgstr "AutoTaimer eemaldatud"
+
 #
 msgid "Automatic"
 msgstr "Automaatne"
@@ -952,6 +985,26 @@ msgstr "Värskenda automaatselt EPG-d"
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr "Saada automaatselt vealogi ära"
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+"Autoresolutsiooni test:\n"
+"Kas %s on ok?"
+
+msgid "Autoresolution Switch"
+msgstr "Autoresolutsiooni vahetus"
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Autoresolutsiooni ei tööta Scart/DVI-PC režiimis"
+
+msgid "Autoresolution settings"
+msgstr "Autoresolutsiooni seaded"
+
+msgid "Autoresolution videomode setup"
+msgstr "Autoresolutsiooni video seaded"
+
 msgid "Autos & Vehicles"
 msgstr "Autod"
 
@@ -992,6 +1045,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Tagasi"
 
+msgid "Back, lower USB Slot"
+msgstr "Taga, alumine USB pesa"
+
+msgid "Back, upper USB Slot"
+msgstr "Taga, ülemine USB pesa"
+
 #
 msgid "Background"
 msgstr "Taust"
@@ -1021,7 +1080,7 @@ msgid "Bandwidth"
 msgstr "Ribalaius"
 
 msgid "Begin of \"after event\" timespan"
-msgstr ""
+msgstr "Alusta salvestust peale \"praegust\" saadet"
 
 #
 msgid "Begin of timespan"
@@ -1082,6 +1141,11 @@ msgstr "Brasiilia"
 msgid "Brightness"
 msgstr "Heledus"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr "Sirvi ORF ja SAT1 Teleteksti internetist."
+
 msgid "Browse for and connect to network shares"
 msgstr "Otsi ja ühenda võrguosalustega"
 
@@ -1109,6 +1173,17 @@ msgstr "Kirjuta salvestused DVD-le"
 msgid "Bus: "
 msgstr "Siin: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr "Seda lubades saated ei ühtu, kui nad ei toimu tetavatel päevadel."
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1350,17 +1425,11 @@ msgstr "Sulge ja salvesta muudatused"
 msgid "Close title selection"
 msgstr "Sulge pealkirja valik"
 
-msgid "Code rate high"
-msgstr "Code rate ülemine"
-
-msgid "Code rate low"
-msgstr "Code rate alumine"
-
-msgid "Coderate HP"
-msgstr "Coderate HP"
+msgid "Code rate HP"
+msgstr ""
 
-msgid "Coderate LP"
-msgstr "Coderate LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1539,6 +1608,10 @@ msgstr "Ei saa avada Pilt Pildis"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Ei saa kahjuks salvestada.Taimerite konflikt %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr "Ei saa salvestada vigast teenust %s"
+
 #
 msgid "Crashlog settings"
 msgstr "Vealogi seaded"
@@ -1717,6 +1790,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr "DVD seade"
+
 #
 msgid "DVD File Browser"
 msgstr "DVD failibrauser"
@@ -1798,10 +1874,19 @@ msgstr "Määra alguskanal"
 msgid "Define a startup service for your Dreambox."
 msgstr "Määra alguskanal oma tuuneri jaoks."
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Viide"
 
+msgid "Delay x seconds after service started"
+msgstr "Oota x sekundit peale saate algust"
+
 #
 msgid "Delete"
 msgstr "Kustuta"
@@ -1974,6 +2059,14 @@ msgstr ""
 "Kas soovid kindlasti failisüsteemi kontrollida?\n"
 "Selleks kulub palju aega!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+"Kas tõesti soovid kustutada %s\n"
+"%s?"
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2158,6 +2251,12 @@ msgstr "Vastuvõtja formaadib data DVD-d"
 msgid "Dreambox software because updates are available."
 msgstr "Vastuvõtja tarkvara, sest uuendused on saadaval."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 msgid "Duration: "
 msgstr "Kestus: "
 
@@ -2289,9 +2388,24 @@ msgstr "Luba"
 msgid "Enable /media"
 msgstr "Luba /media"
 
+msgid "Enable 1080p24 Mode"
+msgstr "Luba 1080p24"
+
+msgid "Enable 1080p25 Mode"
+msgstr "Luba 1080p25"
+
+msgid "Enable 1080p30 Mode"
+msgstr "Luba 1080p30"
+
 msgid "Enable 5V for active antenna"
 msgstr "Luba 5 V toide aktiivantennile"
 
+msgid "Enable 720p24 Mode"
+msgstr "Luba 720p24"
+
+msgid "Enable Autoresolution"
+msgstr "Luba Autoresolutsioon"
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr "Luba puhastusabiline?"
@@ -2409,17 +2523,9 @@ msgstr ""
 "\n"
 "© 2006 - Stephan Reichholf"
 
-#
-msgid "Enter Fast Forward at speed"
-msgstr "Alusta edasikerimist kiirusega"
-
 msgid "Enter IP to scan..."
 msgstr "Sisesta IP..."
 
-#
-msgid "Enter Rewind at speed"
-msgstr "Alusta tagasikerimist kiirusega"
-
 msgid "Enter main menu..."
 msgstr "Mine peamenüüsse..."
 
@@ -2485,6 +2591,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Eesti"
 
+msgid "Ethernet network interface"
+msgstr "Etherneti võrguseade"
+
 #
 msgid "Eventview"
 msgstr "Telekava"
@@ -2675,6 +2784,11 @@ msgstr "Võrgu restart on tehtud"
 msgid "Finnish"
 msgstr "Soome"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr "Alguseks anna oma skini stiil kasutades Ai.HD lisandit."
 
@@ -2695,16 +2809,20 @@ msgstr "Formaadi"
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+"Leiti %d ühilduvat saadet.\n"
+"%d taimerit lisati ja %d muudeti. %d konflikti."
+
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
 "%d Timer were added and %d modified."
 msgstr ""
 "Leidus kokku %d vastet.\n"
 "%d Timerit lisati ja %d muudeti."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Kaadri korduste arv mittesujuva kerimisega"
-
-#
 msgid "Frame size in full view"
 msgstr "Kaadri suurus täisvaates"
 
@@ -2746,6 +2864,9 @@ msgstr "Friisi"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr "FritzCall näitab sinu FritzBoxi sisenevaid kõnesid tuuneri kaudu."
 
+msgid "Front USB Slot"
+msgstr "Ees USB port"
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr "Liides /tmp/mmi.socket-le"
 
@@ -2799,6 +2920,9 @@ msgstr "Üldine PCM viide"
 msgid "General PCM delay (ms)"
 msgstr "Üldine PCM viide (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 msgid "Genre"
 msgstr "Zanr"
 
@@ -2873,25 +2997,24 @@ msgid "Green boost"
 msgstr "Roheline boost"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
-"Growlee võimaldab tuuneril saata SMS kasutades growl protokolli\n"
-"nagu Salvestus alanud teade PC-le, kus töötab growl klientprogramm"
 
-#
-msgid "Guard Interval"
+msgid "Guard interval"
 msgstr "Kaitsevahemik"
 
 #
-msgid "Guard interval mode"
-msgstr "Kaitsevahemiku seaded"
-
-#
 msgid "Guess existing timer based on begin/end"
 msgstr "Eelda olemasolev taimer alguse/lõpu aja järgi"
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 msgid "HD videos"
 msgstr "HD videod"
 
@@ -2916,6 +3039,9 @@ msgstr "Kõvaketta väljalülitamine peale"
 msgid "Help"
 msgstr "Abi"
 
+msgid "Hidden network"
+msgstr "Peidetud võrk"
+
 #
 msgid "Hidden network SSID"
 msgstr "Võrgu SSID"
@@ -2924,15 +3050,10 @@ msgstr "Võrgu SSID"
 msgid "Hidden networkname"
 msgstr "Varjatud võrgunimi"
 
-#
-msgid "Hierarchy Information"
+msgid "Hierarchy info"
 msgstr "Hierarhia teave"
 
 #
-msgid "Hierarchy mode"
-msgstr "Hierarhia olek"
-
-#
 msgid "High bitrate support"
 msgstr "Kõrge bitrate tugi"
 
@@ -2998,10 +3119,8 @@ msgstr "Island"
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"Kui see on lubatud, siis taimer loetakse salvestavaks , kui ta salvestab 80% "
-"enda ajast."
 
 #
 msgid ""
@@ -3098,6 +3217,12 @@ msgstr "Info"
 msgid "Init"
 msgstr "Algseaded"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 msgid "Initial location in new timers"
 msgstr "Esialgne asukoht uutes taimerites"
 
@@ -3181,6 +3306,9 @@ msgstr "Sisemine flash-mälu"
 msgid "Internal LAN adapter."
 msgstr "Sisemine LAN adapter."
 
+msgid "Internal USB Slot"
+msgstr "Sisemine USB pesa"
+
 msgid "Internal firmware updater"
 msgstr "Sisemine tarkvara uuendaja"
 
@@ -3378,6 +3506,11 @@ msgstr "Keele valik"
 msgid "Last config"
 msgstr "Viimane seadistus"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Eelmine kiirus"
@@ -3433,6 +3566,9 @@ msgstr "Link:"
 msgid "Linked titles with a DVD menu"
 msgstr "DVD menüüga seotud pealkirjad"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Salvestusseadmete loetelu"
@@ -3567,6 +3703,9 @@ msgstr "Uuendab vastuvõtja tarkvara"
 msgid "Manual Scan"
 msgstr "Käsiotsing"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Käsitsi sisestatud transponder"
@@ -3860,6 +3999,9 @@ msgstr "Salvestiste menüü"
 msgid "Multi EPG"
 msgstr "Kanalite saatekava"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 msgid "Multimedia"
 msgstr "Multimeedia"
 
@@ -3867,6 +4009,9 @@ msgstr "Multimeedia"
 msgid "Multiple service support"
 msgstr "Mitme programmi tugi"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Mitu satelliiti"
@@ -3934,6 +4079,9 @@ msgstr "NFI tarkvara on fläshitud.Vajuta kollast nuppu taaskäivitamiseks!"
 msgid "NFS share"
 msgstr "NFS võrgukoht"
 
+msgid "NIM"
+msgstr ""
+
 msgid "NOW"
 msgstr "PRAEGU"
 
@@ -3961,6 +4109,9 @@ msgstr "Nimeserveri seaded"
 msgid "Nameserver settings"
 msgstr "Nimeserveri seaded"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr "Nemesis BlackBox välimus"
 
@@ -4108,6 +4259,9 @@ msgstr "Võrgubrauser"
 msgid "NetworkWizard"
 msgstr "Võrguhäälestus"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr "Mitte kunagi"
@@ -4262,6 +4416,9 @@ msgstr "Videod puuduvad"
 msgid "No wireless networks found! Please refresh."
 msgstr "Ei leidnud WiFi võrke! Palun värskenda."
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 msgid ""
 "No working local network adapter found.\n"
 "Please verify that you have attached a network cable and your network is "
@@ -4351,6 +4508,12 @@ msgstr "Põhi"
 msgid "Norwegian"
 msgstr "Norra"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4364,6 +4527,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Otsingut ei toimu"
 
+msgid "Not-Associated"
+msgstr ""
+
 msgid ""
 "Nothing to scan!\n"
 "Please setup your tuner settings before you start a service scan."
@@ -4405,6 +4571,9 @@ msgstr "OK, eemalda teised laiendused"
 msgid "OK, remove some extensions"
 msgstr "OK, eemalda mõned laiendused"
 
+msgid "ONID"
+msgstr "ONID"
+
 msgid "OSD Settings"
 msgstr "Ekraaninäidu seaded"
 
@@ -4472,8 +4641,7 @@ msgstr "Ava laienduse menüü"
 msgid "Optionally enter your name if you want to."
 msgstr "Kui soovite, sisestage oma nimi."
 
-#
-msgid "Orbital Position"
+msgid "Orbital position"
 msgstr "Orbitaalpositsioon"
 
 #
@@ -4497,9 +4665,15 @@ msgstr "Kas tarkvara uuendamisel kirjutada üle konfiguratsioonifailid?"
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr "PCR PID"
+
 msgid "PIDs"
 msgstr "PIDd"
 
+msgid "PMT PID"
+msgstr "PMT PID"
+
 #
 msgid "Package list update"
 msgstr "Pakettide nimekirja uuendus"
@@ -4564,7 +4738,7 @@ msgid "PermanentClock shows the clock permanently on the screen."
 msgstr "PermanentClock näitab ekraanil pidevalt kellaaega."
 
 msgid "Persian"
-msgstr ""
+msgstr "Pärsia"
 
 #
 msgid "Pets & Animals"
@@ -4915,10 +5089,6 @@ msgid "Poland"
 msgstr "Poola"
 
 #
-msgid "Polarity"
-msgstr "Polaarsus"
-
-#
 msgid "Polarization"
 msgstr "Polarisatsioon"
 
@@ -4950,6 +5120,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portugali"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Positsioneer"
@@ -5155,6 +5328,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr "RSS näitaja"
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Raadio"
@@ -5260,6 +5436,9 @@ msgstr "Salvestised"
 msgid "Recordings always have priority"
 msgstr "Salvestused omavad alati eelist"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr "Korda uut PIN-i"
 
@@ -5462,6 +5641,9 @@ msgstr "Taasta vastuvõtja tarkvara USB pulga abil"
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr "Kas keelata \"pärast sündmust\" teatud ajavahemikuks?"
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Jätka viimaselt positsioonilt"
@@ -5501,7 +5683,7 @@ msgstr "Tagasikerimise kiirused"
 msgid "Right"
 msgstr "Parem"
 
-msgid "Rolloff"
+msgid "Roll-off"
 msgstr "Rolloff"
 
 #
@@ -5512,6 +5694,9 @@ msgstr "Mootori pööramise kiirus"
 msgid "Running"
 msgstr "Kasutusel"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr "Venemaa"
@@ -5523,6 +5708,21 @@ msgstr "Vene"
 msgid "S-Video"
 msgstr "S-video (Y/C)"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr "SID"
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr "ÜHEKIHILINE DVD"
@@ -5539,6 +5739,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "L"
@@ -5987,6 +6200,9 @@ msgstr ""
 "Valitud kanalit ei leitud!\n"
 "(SID ei leitud PAT-st)"
 
+msgid "Service reference"
+msgstr ""
+
 msgid "Service scan"
 msgstr "Kanali otsing"
 
@@ -6119,6 +6335,9 @@ msgstr "Näita saate edenemist kanalivalikus"
 msgid "Show in extension menu"
 msgstr "Näita laienduste menüüs"
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Näita kanali vahetusel inforiba"
@@ -6131,6 +6350,9 @@ msgstr "Näita saate vahetumisel inforiba"
 msgid "Show infobar on skip forward/backward"
 msgstr "Näita kerimisel inforiba"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Näita positsioneeri liikumist"
@@ -6388,6 +6610,9 @@ msgstr "Ooterežiimil ventilaatori %d pinge"
 msgid "Start Webinterface"
 msgstr "Käivita veebiliides"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Alusta algusest"
@@ -6509,6 +6734,9 @@ msgstr "P"
 msgid "Sunday"
 msgstr "Pühapäev"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Vaheta PiP- ja peapilt omavahel"
@@ -6531,13 +6759,9 @@ msgstr "Vaheta eelmisele alamteenusele"
 msgid "Switchable tuner types:"
 msgstr "Ümberlülitatavate tuunerite tüübid:"
 
-#
-msgid "Symbol Rate"
+msgid "Symbol rate"
 msgstr "SR"
 
-msgid "Symbolrate"
-msgstr "Sümbolrate"
-
 msgid "System"
 msgstr "Süsteem"
 
@@ -6549,10 +6773,19 @@ msgstr "TÕLKE_INFO"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS fail on liiga suur ISO9660/1-le!"
 
+msgid "TSID"
+msgstr "TSID"
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV-süsteem"
 
+msgid "TXT PID"
+msgstr "TXT PID"
+
 #
 msgid "Table of content for collection"
 msgstr "Sisutabel kogumiseks"
@@ -6584,6 +6817,9 @@ msgstr "Taivan"
 msgid "Temperature and Fan control"
 msgstr "Temp. ja ventilaatori kontroll"
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 msgid "Terrestrial"
 msgstr "Digitaalne TV (DVB-T)"
 
@@ -7291,10 +7527,6 @@ msgid "Translation:"
 msgstr "Tõlge:"
 
 #
-msgid "Transmission Mode"
-msgstr "Edastamise moodus"
-
-#
 msgid "Transmission mode"
 msgstr "Edastamise moodus"
 
@@ -7302,10 +7534,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Transponderi tüüp"
-
-#
 msgid "Travel & Events"
 msgstr "Reisimine & Sündmused"
 
@@ -7422,6 +7650,9 @@ msgstr "Tühista install"
 msgid "Undo uninstall"
 msgstr "Tühista uninstall"
 
+msgid "Unencrypted"
+msgstr ""
+
 msgid "UnhandledKey"
 msgstr "Käsitlematu võti"
 
@@ -7446,6 +7677,9 @@ msgstr "USA"
 msgid "Universal LNB"
 msgstr "Universaal LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr "Tundmatu võrgu adapter."
 
@@ -7560,10 +7794,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr "Kasuta ja juhi mitut vastuvõtjat erinevate pultidega."
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Kasutage mittesujuvat kerimist kiirustel"
-
-#
 msgid "Use power measurement"
 msgstr "Kasuta võimsuse mõõtmist"
 
@@ -7639,13 +7869,22 @@ msgstr "VMGM (intro trailer)"
 msgid "Vali-XD skin"
 msgstr "Vali-XD välimus"
 
+msgid "Vali.HD.atlantis skin"
+msgstr "Vali.HD.atlantis välimus"
+
 msgid "Vali.HD.nano skin"
 msgstr "Vali.HD.nano välimus"
 
+msgid "Vali.HD.warp skin"
+msgstr "Vali.HD.warp välimus"
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr "Kontrolli Dreamboxi audentsust \"genuine dreambox\" laienduse abil!"
 
+msgid "Verifying your internet connection..."
+msgstr "Kontrollin internetiühendust"
+
 msgid "Vertical"
 msgstr "Vertikaal"
 
@@ -7661,6 +7900,9 @@ msgstr "Video peenhäälestuse toiming"
 msgid "Video Output"
 msgstr "Video-väljund"
 
+msgid "Video PID"
+msgstr "Video PID"
+
 #
 msgid "Video Setup"
 msgstr "Video-seaded"
@@ -7894,6 +8136,9 @@ msgstr "Ilmalaiendus näitab ilmaennustust Teie vastuvõtjas."
 msgid "Weatherforecast on your Dreambox"
 msgstr "Ilmaennustus Teie vastuvõtjas"
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr "Veebiliides"
@@ -8045,6 +8290,11 @@ msgstr "Mida soovid otsida?"
 msgid "What to do with submitted crashlogs?"
 msgstr "Mida teha saadud vealogidega?"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8087,6 +8337,15 @@ msgstr "Traadita võrk"
 msgid "Wireless Network State"
 msgstr "WiFi võrgu olek"
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8323,6 +8582,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Seda ei saa kustutada!"
@@ -8507,6 +8772,9 @@ msgstr "Teie nimi (soovi korral):"
 msgid "Your network configuration has been activated."
 msgstr "Võrguseadistus on aktiveeritud."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr "Teie võrgu haage on aktiveeritud."
@@ -8707,6 +8975,12 @@ msgstr "määratud CAId-d:"
 msgid "assigned Services/Provider:"
 msgstr "määratud kanalid/levitajad:"
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #, python-format
 msgid "audio track (%s) format"
 msgstr "audio raja (%s) formaat"
@@ -8721,6 +8995,9 @@ msgstr "audio rajad"
 msgid "auto"
 msgstr "automaatne"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "saadaval"
@@ -8749,6 +9026,9 @@ msgstr "keelatud"
 msgid "blue"
 msgstr "sinine"
 
+msgid "bob"
+msgstr ""
+
 #, python-format
 msgid "burn audio track (%s)"
 msgstr "kirjuta audio rada/rajad (%s)"
@@ -8786,6 +9066,9 @@ msgstr "tühjenda esitusloend"
 msgid "complex"
 msgstr "keeruline"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "seadete menüü"
@@ -8813,6 +9096,12 @@ msgstr "eemaldamine võimatu"
 msgid "create directory"
 msgstr "loo kataloog"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr "praegu installitud tarkvara: %s"
@@ -8824,6 +9113,9 @@ msgstr "iga päev"
 msgid "day"
 msgstr "päev"
 
+msgid "default"
+msgstr ""
+
 msgid "delete"
 msgstr "kustuta"
 
@@ -8874,6 +9166,9 @@ msgstr "ära salvesta"
 msgid "done!"
 msgstr "valmis!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 msgid "edit alternatives"
 msgstr "lisavõimaluste lisamine ja kustutamine"
 
@@ -9124,6 +9419,9 @@ msgstr "minut"
 msgid "minutes"
 msgstr "minutid"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "kuu"
@@ -9295,9 +9593,6 @@ msgstr "punane"
 msgid "redesigned Kerni-HD1 skin"
 msgstr "redesigned Kerni-HD1 välimus"
 
-msgid "redirect notifications to Growl"
-msgstr "saada teated edasi Growl-i"
-
 msgid "remove a nameserver entry"
 msgstr "kustuta nimeserver"
 
@@ -9584,6 +9879,10 @@ msgstr "vaheta aja,salvestuse,heli,subtiitri info"
 msgid "tuner is not supported"
 msgstr "tuuner pole toetatud"
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr "pole saadaval"
@@ -9649,6 +9948,9 @@ msgstr "iga nädal"
 msgid "whitelist"
 msgstr ""
 
+msgid "wireless network interface"
+msgstr ""
+
 msgid "working"
 msgstr "salvestab"
 
@@ -9714,6 +10016,9 @@ msgstr "vahetatud"
 #~ msgid "50 Hz"
 #~ msgstr "50 Hz"
 
+#~ msgid "A BackToTheRoots-Skin ... or good old times."
+#~ msgstr "BackToTheRoots välimus... või vanad head ajad."
+
 #
 #~ msgid "Advanced"
 #~ msgstr "Lisavalikud"
@@ -9774,6 +10079,18 @@ msgstr "vahetatud"
 #~ msgid "Choose source"
 #~ msgstr "Vali allikas"
 
+#~ msgid "Code rate high"
+#~ msgstr "Code rate ülemine"
+
+#~ msgid "Code rate low"
+#~ msgstr "Code rate alumine"
+
+#~ msgid "Coderate HP"
+#~ msgstr "Coderate HP"
+
+#~ msgid "Coderate LP"
+#~ msgstr "Coderate LP"
+
 #
 #~ msgid "Compact flash card"
 #~ msgstr "CompactFlash-kaart"
@@ -9870,6 +10187,14 @@ msgstr "vahetatud"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Alusta edasikerimist kiirusega"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Alusta tagasikerimist kiirusega"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Sisesta WLAN võrgu nimi/SSID:"
 
@@ -9891,6 +10216,10 @@ msgstr "vahetatud"
 #~ msgstr "Jätkamisel lõpetatakse järgnevad toimingud"
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Kaadri korduste arv mittesujuva kerimisega"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP aadress"
 
@@ -9906,11 +10235,42 @@ msgstr "vahetatud"
 #~ msgid "General PCM delay"
 #~ msgstr "Üldine PCM viide"
 
+#~ msgid ""
+#~ "Growlee allows your Dreambox to send short messages using the growl "
+#~ "protocol\n"
+#~ "like Recording started notifications to a PC running a growl client"
+#~ msgstr ""
+#~ "Growlee võimaldab tuuneril saata SMS kasutades growl protokolli\n"
+#~ "nagu Salvestus alanud teade PC-le, kus töötab growl klientprogramm"
+
+#
+#~ msgid "Guard Interval"
+#~ msgstr "Kaitsevahemik"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Kaitsevahemiku seaded"
+
 #
 #~ msgid "Here is a small overview of the available icon states."
 #~ msgstr "Ülevaade saadaolevatest ikoonivõimalustest"
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hierarhia teave"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hierarhia olek"
+
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Kui see on lubatud, siis taimer loetakse salvestavaks , kui ta salvestab "
+#~ "80% enda ajast."
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Kui sa näed seda lehte, vajuta OK."
 
@@ -9971,6 +10331,10 @@ msgstr "vahetatud"
 #~ msgstr "Online-uuendus"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Orbitaalpositsioon"
+
+#
 #~ msgid "Package details for: "
 #~ msgstr "Paketi detailid: "
 
@@ -10014,6 +10378,10 @@ msgstr "vahetatud"
 #~ msgstr "Laienduste halduri toimingu teave"
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polaarsus"
+
+#
 #~ msgid "Press OK to view full changelog"
 #~ msgstr "Vajuta OK kogu muutuste logi vaatamiseks"
 
@@ -10048,6 +10416,9 @@ msgstr "vahetatud"
 #~ msgstr ""
 #~ "Seadete taastamine tehtud. Vajuta OK taastatud seadete aktiveerimiseks."
 
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
 #
 #~ msgid "Satteliteequipment"
 #~ msgstr "Satelliidiseadmete  seaded"
@@ -10131,6 +10502,13 @@ msgstr "vahetatud"
 #~ msgstr "Stereo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "SR"
+
+#~ msgid "Symbolrate"
+#~ msgstr "Sümbolrate"
+
+#
 #~ msgid ""
 #~ "The USB stick is now bootable. Do you want to download the latest image "
 #~ "from the feed server and save it on the stick?"
@@ -10212,6 +10590,14 @@ msgstr "vahetatud"
 #~ "juhiseid."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Edastamise moodus"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Transponderi tüüp"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -10244,6 +10630,10 @@ msgstr "vahetatud"
 #~ msgstr "Uuendus valmis. Soovid vastuvõtja uuesti käivitada?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Kasutage mittesujuvat kerimist kiirustel"
+
+#
 #~ msgid "View list of available Satteliteequipment extensions."
 #~ msgstr "Vaata satelliidiseadmete laienduste nimekirja."
 
@@ -10371,6 +10761,9 @@ msgstr "vahetatud"
 #~ msgid "open virtual keyboard input help"
 #~ msgstr "Ava virtuaalklahvistik"
 
+#~ msgid "redirect notifications to Growl"
+#~ msgstr "saada teated edasi Growl-i"
+
 #
 #~ msgid "select .NFI flash file"
 #~ msgstr "vali .NFI tarkvara fail"
index c0e53f6..8a5abf7 100755 (executable)
--- a/po/fi.po
+++ b/po/fi.po
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
-"PO-Revision-Date: 2010-12-19 14:53+0200\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
+"PO-Revision-Date: 2011-04-24 16:43+0200\n"
 "Last-Translator: Timo <timojarvenpaa@hotmail.com>\n"
 "Language-Team: none\n"
+"Language: fi\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: fi\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 2.0.3\n"
 "X-Poedit-Language: Finnish\n"
@@ -188,6 +188,14 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+"%d ristiriita(a) uusien ajastuksien lisäyksessä:\n"
+"%s"
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -224,6 +232,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr "%s: %s at %s"
+
 #
 msgid "(ZAP)"
 msgstr "(Pelkkä kanavanvaihto)"
@@ -365,11 +377,11 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
-msgstr ""
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr "BackToTheRoots-teema .. mutta Warp-8 nopeudella."
 
-msgid "A BackToTheRoots-Skin ... or good old times."
-msgstr ""
+msgid "A BackToTheRoots-Skin .. or good old times."
+msgstr "BackToTheRoots-teema .. vanhat hyvät ajat."
 
 msgid "A basic ftp client"
 msgstr "FTP-asiakasohjelma"
@@ -389,6 +401,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Demo-lisäosa TPM:n käyttöön"
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr "SG-Atlantis näyttöjen simulaatio Dreamboxille."
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -412,6 +427,9 @@ msgstr "Graafinen EPG kaikille suosikkilistan kanaville"
 msgid "A graphical EPG interface"
 msgstr "Graafinen EPG"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr "Graafinen EPG ja EPG-työkalujen hallinta"
+
 msgid "A graphical EPG interface."
 msgstr "Graafinen EPG"
 
@@ -631,7 +649,7 @@ msgid "Add timer"
 msgstr "Lisää ajastus"
 
 msgid "Add timer as disabled on conflict"
-msgstr "Ajastusristiriidassa lisää ei käytössä oleva ajastus"
+msgstr "Ristiriitatapauksessa lisää ei käytössä oleva ajastus"
 
 #
 msgid "Add title"
@@ -868,6 +886,9 @@ msgstr "Kysy käyttäjältä"
 msgid "Aspect Ratio"
 msgstr "Kuvasuhde"
 
+msgid "Aspect ratio"
+msgstr "Kuvasuhde"
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Määritä palvelutarjoajat/kanavat/CAId:t haluamaasi CI-moduuliin"
 
@@ -882,6 +903,9 @@ msgstr "Ääni"
 msgid "Audio Options..."
 msgstr "Äänivalinnat"
 
+msgid "Audio PID"
+msgstr "Ääni-PID"
+
 msgid "Audio Sync"
 msgstr "Äänen synkronointi"
 
@@ -944,6 +968,15 @@ msgstr ""
 "Automaattiajastus hakee ohjelmatietoja ja luo ajastuksia käyttäjän "
 "määrittämien ehtojen mukaisesti."
 
+msgid "AutoTimer was added successfully"
+msgstr "Automaattiajastuksen lisäys onnistui"
+
+msgid "AutoTimer was changed successfully"
+msgstr "Automaattiajastuksen muutos onnistui"
+
+msgid "AutoTimer was removed"
+msgstr "Automaattiajastus poistettu"
+
 #
 msgid "Automatic"
 msgstr "Automaattinen"
@@ -980,6 +1013,27 @@ msgstr "Päivittää ohjelmatiedot automaattisesti"
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr "Lähettää kaatumislokit automaattisesti Dream Multimedialle"
 
+#
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+"Autoresoluutio lisäosan testitila:\n"
+"Toimiiko %s ?"
+
+msgid "Autoresolution Switch"
+msgstr "Autoresoluution kytkentä"
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Autoresoluutio ei toimi SCART/DVI-PC-tiloissa"
+
+msgid "Autoresolution settings"
+msgstr "Autoresoluution asetukset"
+
+msgid "Autoresolution videomode setup"
+msgstr "Autoresoluution kuvatilan asetukset"
+
 msgid "Autos & Vehicles"
 msgstr "Autot & kulkuvälineet"
 
@@ -1019,6 +1073,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Takaisin"
 
+msgid "Back, lower USB Slot"
+msgstr "Takana, alempi USB-portti"
+
+msgid "Back, upper USB Slot"
+msgstr "Takana, ylempi USB-portti"
+
 #
 msgid "Background"
 msgstr "Tausta"
@@ -1109,6 +1169,11 @@ msgstr "Brasilia"
 msgid "Brightness"
 msgstr "Kirkkaus"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr "Selaa ORF ja SAT1 kanavien teksti-tv:tä internetin kautta."
+
 msgid "Browse for and connect to network shares"
 msgstr "Selaa ja yhdistä verkkojakoja"
 
@@ -1135,6 +1200,21 @@ msgstr "Polta tallenteet DVD:lle"
 msgid "Bus: "
 msgstr "Väylä: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+"Tällä valinnalla voit estää hakutulokset joita ei esitetä tiettyinä päivinä."
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+"Valitsemalla tämän saat automaattihaun aikana ilmoituksen päällekkäisistä "
+"ajastuksista. Toiminnossa ei ole älyä, joten se saattaa ilmoittaa "
+"toistuvasti samoista päällekkäisyyksistä."
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1389,21 +1469,11 @@ msgstr "Tallenna muutokset"
 msgid "Close title selection"
 msgstr "Sulje otsikon valinta"
 
-#
-msgid "Code rate high"
-msgstr "Koodinopeus (korkea)"
+msgid "Code rate HP"
+msgstr "Koodinopeus HP"
 
-#
-msgid "Code rate low"
-msgstr "Koodinopeus (alhainen)"
-
-#
-msgid "Coderate HP"
-msgstr "Koodinopeus (HP)"
-
-#
-msgid "Coderate LP"
-msgstr "Koodinopeus (LP)"
+msgid "Code rate LP"
+msgstr "Koodinopeus LP"
 
 #
 msgid "Collection name"
@@ -1580,6 +1650,10 @@ msgstr "PIP-kuvaa ei voitu avata"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Ajastusristiriidan takia ei voitu tallentaa %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr "Ei voitu tallentaa virheellisen kanavan takia %s"
+
 #
 msgid "Crashlog settings"
 msgstr "Kaatumislokin asetukset"
@@ -1754,6 +1828,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr "DVD-asema"
+
 #
 msgid "DVD File Browser"
 msgstr "DVD-tiedostoselain"
@@ -1837,10 +1914,19 @@ msgstr "Määritä aloituskanava"
 msgid "Define a startup service for your Dreambox."
 msgstr "Määritä Dreamboxin aloituskanava"
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr "Lomitustila lomitellulle materiaalille"
+
+msgid "Deinterlacer mode for progressive content"
+msgstr "Lomitustila lomittamattomalle materiaalille"
+
 #
 msgid "Delay"
 msgstr "Viive"
 
+msgid "Delay x seconds after service started"
+msgstr "Viive x sekuntia palvelun käynnistämisen jälkeen"
+
 #
 msgid "Delete"
 msgstr "Poista"
@@ -2020,6 +2106,14 @@ msgstr ""
 "Haluatko tarkistaa tiedostojärjetelmän?\n"
 "Tarkistus saattaa kestää kauan!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+"Oletko varma, että haluat poistaa %s\n"
+"%s?"
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2223,6 +2317,12 @@ msgstr "DB-tiedostomuotoinen DVD (HDTV-yht.sopiva)"
 msgid "Dreambox software because updates are available."
 msgstr "Dreamboxin ohjelmistoa koska päivityksiä on saatavilla."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr "Ajuri Ralink RT8070/RT3070/RT3370-pohjaisille WLAN USB-laitteille."
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr "Ajuri Realtek r8712u-pohjaisille WLAN USB-laitteille."
+
 msgid "Duration: "
 msgstr "Kesto: "
 
@@ -2358,10 +2458,25 @@ msgstr "Ota käyttöön"
 msgid "Enable /media"
 msgstr "Ota käyttöön /media"
 
+msgid "Enable 1080p24 Mode"
+msgstr "Ota käyttöön 1080p24-tila"
+
+msgid "Enable 1080p25 Mode"
+msgstr "Ota käyttöön 1080p25-tila"
+
+msgid "Enable 1080p30 Mode"
+msgstr "Ota käyttöön 1080p30-tila"
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Syötä 5 voltin käyttöjännite aktiiviantennille"
 
+msgid "Enable 720p24 Mode"
+msgstr "Ota käyttöön 720p24-tila"
+
+msgid "Enable Autoresolution"
+msgstr "Ota autoresoluutio käyttöön"
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr "Käytä puhdistusavustajaa?"
@@ -2481,18 +2596,10 @@ msgstr ""
 "\n"
 "© 2006 - Stephan Reichholf"
 
-#
-msgid "Enter Fast Forward at speed"
-msgstr "Aloita kelaus eteenpäin nopeudella"
-
 msgid "Enter IP to scan..."
 msgstr "Syötä IP-osoite josta haetaan..."
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Aloita kelaus taaksepäin nopeudella"
-
-#
 msgid "Enter main menu..."
 msgstr "Mene päävalikkoon..."
 
@@ -2555,6 +2662,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Viro"
 
+msgid "Ethernet network interface"
+msgstr "Verkkokortti"
+
 #
 msgid "Eventview"
 msgstr "Ohjelmatiedot"
@@ -2745,6 +2855,11 @@ msgstr "Verkko käynnistyi uudelleen"
 msgid "Finnish"
 msgstr "Suomi"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr "Ensimmäinen automaattihaun päivä. Tätä aikaisempia ohjelmia ei haeta."
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr "Luo ensin oma teema Ai.HD-control lisäosalla."
 
@@ -2765,16 +2880,20 @@ msgstr "Alusta"
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+"Löytyi %d hakuehtojen mukaista ohjelmaa.\n"
+"%d ajastusta lisättiin ja %d muutettiin, %d ajastusristiriitaa ilmeni."
+
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
 "%d Timer were added and %d modified."
 msgstr ""
 "Löytyi yhteensä %d hakuehtoa vastaavaa ohjelmaa.\n"
 "%d ajastusta lisättiin ja %d muokattiin."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Ruudun toistomäärä hyppivällä kelauksella"
-
-#
 msgid "Frame size in full view"
 msgstr "Kehyksen koko kokoruudussa"
 
@@ -2816,6 +2935,9 @@ msgstr "Friisi"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr "FritzCall näyttää Fritz!Boxiin saapuvat puhelut Dreamboxissa."
 
+msgid "Front USB Slot"
+msgstr "Etupaneelin USB-portti"
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr "Käyttöliittymä /tmp/mmi.socketille"
 
@@ -2868,6 +2990,9 @@ msgstr "PCM-viive (ms)"
 msgid "General PCM delay (ms)"
 msgstr "PCM-viive (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Laji"
@@ -2944,26 +3069,23 @@ msgid "Green boost"
 msgstr "Vihreän korostus"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
-"Growleen avulla Dreambox voi lähettää lyhyitä Growl-protokollan mukaisia "
-"viestejä,\n"
-"esim. ilmoituksen tallennuksen aloittamisesta, PC:lle jossa pyörii Growl-"
-"asiakasohjelma"
 
-#
-msgid "Guard Interval"
-msgstr "Suojaväli"
-
-#
-msgid "Guard interval mode"
-msgstr "Suojaväli-tila"
+msgid "Guard interval"
+msgstr "Guard interval"
 
 msgid "Guess existing timer based on begin/end"
 msgstr "Arvaa olemassa oleva ajastus alku/loppuajan perusteella"
 
+msgid "HD Interlace Mode"
+msgstr "Lomitettu HD-tila"
+
+msgid "HD Progressive Mode"
+msgstr "Lomittamaton HD-tila"
+
 msgid "HD videos"
 msgstr "HD-videot"
 
@@ -2987,6 +3109,9 @@ msgstr "Kiintolevyn automaattinen sammutus"
 msgid "Help"
 msgstr "Ohje"
 
+msgid "Hidden network"
+msgstr "Piilotettu verkko"
+
 #
 msgid "Hidden network SSID"
 msgstr "Piilotettu verkko-SSID"
@@ -2995,13 +3120,8 @@ msgstr "Piilotettu verkko-SSID"
 msgid "Hidden networkname"
 msgstr "Piilotettu verkkonimi"
 
-#
-msgid "Hierarchy Information"
-msgstr "Hierarkia-tietoja"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hierarkia-tila"
+msgid "Hierarchy info"
+msgstr "Hierarkia info"
 
 #
 msgid "High bitrate support"
@@ -3070,10 +3190,8 @@ msgstr "Islanti"
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"Jos tämä valinta on käytössä, olemassa olevan ajastuksen tulkitaan "
-"tallentavan ohjelma jos se tallentaa vähintään 80% siitä."
 
 #
 msgid ""
@@ -3171,6 +3289,12 @@ msgstr "Tietoja"
 msgid "Init"
 msgstr "Palauta CA-moduulin alkuasetukset"
 
+msgid "Initial Fast Forward speed"
+msgstr "Eteenpäinkelauksen aloitusnopeus"
+
+msgid "Initial Rewind speed"
+msgstr "Taaksepäinkelauksen aloitusnopeus"
+
 msgid "Initial location in new timers"
 msgstr "Uusien ajastuksien oletustallennushakemisto"
 
@@ -3267,6 +3391,9 @@ msgstr "Sisäinen flash-muisti"
 msgid "Internal LAN adapter."
 msgstr "Sisäinen verkkokortti."
 
+msgid "Internal USB Slot"
+msgstr "Sisäinen USB-portti"
+
 msgid "Internal firmware updater"
 msgstr "Edustaprosessorin ohjelmiston päivitysohjelma"
 
@@ -3458,6 +3585,12 @@ msgstr "Kielivalinta"
 msgid "Last config"
 msgstr "Aikais.arvot"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+"Viimeinen automaattiajastuksen päivä. Tämän jälkeisiä ohjelmia ei haeta."
+
 #
 msgid "Last speed"
 msgstr "Aikaisempi nopeus"
@@ -3514,6 +3647,9 @@ msgstr "Tila:"
 msgid "Linked titles with a DVD menu"
 msgstr "Linkitetyt tallenteet ja DVD-valikko"
 
+msgid "List available networks"
+msgstr "Näytä verkot"
+
 #
 msgid "List of Storage Devices"
 msgstr "Luettelo tallennusvälineistä"
@@ -3645,6 +3781,9 @@ msgstr "Hallitse vastaanottimen ohjelmistoa"
 msgid "Manual Scan"
 msgstr "Manuaalihaku"
 
+msgid "Manual configuration"
+msgstr "Manuaalinen määritys"
+
 #
 msgid "Manual transponder"
 msgstr "Manuaalinen lähetin"
@@ -3906,6 +4045,9 @@ msgstr "Tallenneluettelon valikko"
 msgid "Multi EPG"
 msgstr "Kanavaopas"
 
+msgid "Multi-EPG bouquet selection"
+msgstr "Multi-EPG suosikkilistan valinta"
+
 msgid "Multimedia"
 msgstr "Multimedia"
 
@@ -3913,6 +4055,9 @@ msgstr "Multimedia"
 msgid "Multiple service support"
 msgstr "Usean kanavan tuki"
 
+msgid "Multiplex"
+msgstr "Multipleksi"
+
 #
 msgid "Multisat"
 msgstr "Usea satelliitti"
@@ -3973,6 +4118,9 @@ msgstr ""
 msgid "NFS share"
 msgstr "NFS-jako"
 
+msgid "NIM"
+msgstr "NIM"
+
 #
 msgid "NOW"
 msgstr "NYT"
@@ -4002,6 +4150,9 @@ msgstr "Nimipalvelimen asetukset"
 msgid "Nameserver settings"
 msgstr "Nimipalvelimen asetukset"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr "Nemesis BlackBox teema"
 
@@ -4156,6 +4307,9 @@ msgstr "Verkon selaus"
 msgid "NetworkWizard"
 msgstr "Verkkoavustaja"
 
+msgid "Networkname (SSID)"
+msgstr "Verkkonimi (SSID)"
+
 msgid "Never"
 msgstr "Ei koskaan"
 
@@ -4325,6 +4479,9 @@ msgstr "Ei näytettäviä tallenteita"
 msgid "No wireless networks found! Please refresh."
 msgstr "WLAN-verkkoja ei löytynyt! Päivitä uudestaan."
 
+msgid "No wireless networks found! Searching..."
+msgstr "WLAN-verkkoja ei löytynyt! Etsitään..."
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4415,6 +4572,12 @@ msgstr "Pohjoinen"
 msgid "Norwegian"
 msgstr "Norja"
 
+msgid "Not after"
+msgstr "Ei jälkeen"
+
+msgid "Not before"
+msgstr "Ei ennen"
+
 #
 #, python-format
 msgid ""
@@ -4427,6 +4590,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Feedejä ei noudeta"
 
+msgid "Not-Associated"
+msgstr "Ei assosioitu"
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4470,6 +4636,9 @@ msgstr "OK, poista toinen laajennus"
 msgid "OK, remove some extensions"
 msgstr "OK, poista joitain laajennuksia"
 
+msgid "ONID"
+msgstr "ONID"
+
 #
 msgid "OSD Settings"
 msgstr "Kuvaruutunäytön asetukset"
@@ -4529,8 +4698,7 @@ msgstr "Avaa lisäosavalikko"
 msgid "Optionally enter your name if you want to."
 msgstr "Jos haluat, lisää nimesi."
 
-#
-msgid "Orbital Position"
+msgid "Orbital position"
 msgstr "Sijainti"
 
 msgid "Outer Bound (+/-)"
@@ -4552,10 +4720,16 @@ msgstr "Korvaa asetustiedostot ohjelmistopäivityksen aikana?"
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr "PCR PID"
+
 #
 msgid "PIDs"
 msgstr "PIDit"
 
+msgid "PMT PID"
+msgstr "PMT PID"
+
 #
 msgid "Package list update"
 msgstr "Ohjelmapakettilistan päivitys"
@@ -4620,7 +4794,7 @@ msgid "PermanentClock shows the clock permanently on the screen."
 msgstr "PermanentClock näyttää kellon pysyvästi kuvaruudulla."
 
 msgid "Persian"
-msgstr ""
+msgstr "Persia"
 
 msgid "Pets & Animals"
 msgstr "Lemmikit ja eläimet"
@@ -4987,10 +5161,6 @@ msgid "Poland"
 msgstr "Puola"
 
 #
-msgid "Polarity"
-msgstr "Polarisaatio"
-
-#
 msgid "Polarization"
 msgstr "Polarisaatio"
 
@@ -5024,6 +5194,9 @@ msgstr "Portti D"
 msgid "Portuguese"
 msgstr "Portugali"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr "Tallennettujen ajastuksien paikka ajastusluettelossa"
+
 #
 msgid "Positioner"
 msgstr "Kääntömoottori"
@@ -5229,6 +5402,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr "RSS-lukija"
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr "RT8070/RT3070/RT3370 USB WLAN-ajuri"
+
 msgid "Radio"
 msgstr "Radio"
 
@@ -5333,6 +5509,9 @@ msgstr "Tallenteet"
 msgid "Recordings always have priority"
 msgstr "Tallennukset saavat keskeyttää suoran katselun"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr "Syötä uusi PIN uudelleen"
 
@@ -5545,6 +5724,9 @@ msgstr "Palauta Dreamboxin ohjelmisto USB-muistitikulta"
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr "Rajoita \"ohjelman jälkeen\" toiminto tiettyyn aikajaksoon."
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Jatka viimeksi katsotusta kohdasta"
@@ -5584,8 +5766,8 @@ msgstr "Kelausnopeudet taaksepäin"
 msgid "Right"
 msgstr "Oikea"
 
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr "Roll-off"
 
 #
 msgid "Rotor turning speed"
@@ -5595,6 +5777,9 @@ msgstr "Moottorin kääntönopeus"
 msgid "Running"
 msgstr "Käytössä"
 
+msgid "Running in testmode"
+msgstr "Suoritetaan testitilassa"
+
 msgid "Russia"
 msgstr "Venäjä"
 
@@ -5606,6 +5791,21 @@ msgstr "Venäjä"
 msgid "S-Video"
 msgstr "S-video (Y/C)"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr "SD 25/50Hz lomitettu tila"
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr "SD 25/50Hz lomittamaton tila"
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr "SD 30/60Hz lomitettu tila"
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr "SD 30/60Hz lomittamaton tila"
+
+msgid "SID"
+msgstr "SID"
+
 msgid "SINGLE LAYER DVD"
 msgstr "SINGLE LAYER DVD"
 
@@ -5620,6 +5820,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "la"
@@ -6072,6 +6285,9 @@ msgstr ""
 "(Kanavan Service ID:tä ei löydy\n"
 "Program Association Tablesta.)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Kanavahaku"
@@ -6198,6 +6414,9 @@ msgstr "Näytä ohjelman pituus kanavien valintalistassa"
 msgid "Show in extension menu"
 msgstr "Näytä laajennusvalikossa"
 
+msgid "Show info screen"
+msgstr "Näytä tietoruutu"
+
 #
 msgid "Show infobar on channel change"
 msgstr "Näytä tietopalkki kanavaa vaihdettaessa"
@@ -6210,6 +6429,9 @@ msgstr "Näytä tietopalkki ohjelman vaihtuessa"
 msgid "Show infobar on skip forward/backward"
 msgstr "Näytä tietopalkki kelauksien/hyppyjen aikana"
 
+msgid "Show notification on conflicts"
+msgstr "Näytä ilmoitus ristiriidoista"
+
 #
 msgid "Show positioner movement"
 msgstr "Näytä kuvake kääntömoottorin liikkuessa"
@@ -6474,6 +6696,9 @@ msgstr "Valmiustila tuuletin %d jännite"
 msgid "Start Webinterface"
 msgstr "Käynnistä Web-liittymä"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Aloita alusta"
@@ -6593,6 +6818,9 @@ msgstr "su"
 msgid "Sunday"
 msgstr "Sunnuntai"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Vaihda PiP- ja pääkuva keskenään"
@@ -6616,13 +6844,8 @@ msgstr "Vaihda edelliseen alipalveluun"
 msgid "Switchable tuner types:"
 msgstr "Vaihdettavat viritintyypit:"
 
-#
-msgid "Symbol Rate"
-msgstr "Symbolinopeus"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolinopeus"
+msgid "Symbol rate"
+msgstr "Symbol rate"
 
 #
 msgid "System"
@@ -6639,10 +6862,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS-tiedosto on liian suuri ISO9660 1-tasolle!"
 
+msgid "TSID"
+msgstr "TSID"
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV-järjestelmä"
 
+msgid "TXT PID"
+msgstr "TXT PID"
+
 #
 msgid "Table of content for collection"
 msgstr "Kokoelman hakemisto"
@@ -6672,6 +6904,9 @@ msgstr "Taiwan"
 msgid "Temperature and Fan control"
 msgstr "Lämpötila ja tuuletin"
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Antennivastaanotto (DVB-T)"
@@ -6779,10 +7014,10 @@ msgstr ""
 "Asenna se."
 
 msgid "The PIN code has been changed successfully."
-msgstr ""
+msgstr "PIN-koodin vaihto onnistui."
 
 msgid "The PIN codes you entered are different."
-msgstr ""
+msgstr "Syöttämäsi PIN-koodit olivat erilaiset."
 
 msgid ""
 "The PicturePlayer displays your photos on the TV.\n"
@@ -7380,10 +7615,6 @@ msgid "Translation:"
 msgstr "Käännös:"
 
 #
-msgid "Transmission Mode"
-msgstr "Lähetystapa"
-
-#
 msgid "Transmission mode"
 msgstr "Lähetystapa"
 
@@ -7391,10 +7622,6 @@ msgstr "Lähetystapa"
 msgid "Transponder"
 msgstr "Lähetin"
 
-#
-msgid "Transponder Type"
-msgstr "Lähettimen tyyppi"
-
 msgid "Travel & Events"
 msgstr "Matkailu ja tapahtumat"
 
@@ -7519,6 +7746,9 @@ msgstr "Kumoa asennus"
 msgid "Undo uninstall"
 msgstr "Kumoa as.poisto"
 
+msgid "Unencrypted"
+msgstr "Salaamaton"
+
 msgid "UnhandledKey"
 msgstr "TuntematonNäppäin"
 
@@ -7542,6 +7772,9 @@ msgstr "Yhdysvallat"
 msgid "Universal LNB"
 msgstr "Universaali LNB"
 
+msgid "Unknown"
+msgstr "Tuntematon"
+
 msgid "Unknown network adapter."
 msgstr "Tuntematon verkkosovitin"
 
@@ -7652,10 +7885,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Hyppivä kelaus kun nopeus ylittää"
-
-#
 msgid "Use power measurement"
 msgstr "Käytä virran mittausta"
 
@@ -7749,15 +7978,24 @@ msgid "VMGM (intro trailer)"
 msgstr "VMGM (intro trailer)"
 
 msgid "Vali-XD skin"
-msgstr ""
+msgstr "Vali-XD teema"
+
+msgid "Vali.HD.atlantis skin"
+msgstr "Vali.HD.atlantis teema"
 
 msgid "Vali.HD.nano skin"
-msgstr ""
+msgstr "Vali.HD.nano teema"
+
+msgid "Vali.HD.warp skin"
+msgstr "Vali.HD.warp teema"
 
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr "Tarkista Dreamboxin aitous suorittamalla Aito Dreambox -lisäosa!"
 
+msgid "Verifying your internet connection..."
+msgstr "Tarkistetaan internet-yhteyttä"
+
 #
 msgid "Vertical"
 msgstr "Vertikaali"
@@ -7773,6 +8011,9 @@ msgstr "TV-kuvan hienosäätöavustaja"
 msgid "Video Output"
 msgstr "Video-ulostulo"
 
+msgid "Video PID"
+msgstr "Video PID"
+
 #
 msgid "Video Setup"
 msgstr "Video-asetukset"
@@ -8006,6 +8247,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 msgid "Webinterface"
 msgstr "Web-liittymä"
 
@@ -8191,6 +8435,11 @@ msgid "What to do with submitted crashlogs?"
 msgstr "Mitä lähetetyille lokeille tehdään?"
 
 msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
+msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
 "timer with the same description already exists in the timer list."
 msgstr ""
@@ -8232,6 +8481,15 @@ msgstr "Langaton verkko"
 msgid "Wireless Network State"
 msgstr "WLAN-verkon tila"
 
+msgid "Wireless network connection setup"
+msgstr "WLAN-verkon asetukset"
+
+msgid "Wireless network connection setup."
+msgstr "WLAN-verkon asetukset."
+
+msgid "Wireless network state"
+msgstr "WLAN-verkon tila"
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8448,6 +8706,12 @@ msgstr ""
 "Tässä voit muuttaa automaattiajastuksen ominaisuuksia.\\'Nimi' on käytössä "
 "vain yleisnäkymässä, 'Hae ohjelmanimi' on se mitä haetaan EPG:stä."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Et voi poistaa tätä!"
@@ -8534,6 +8798,9 @@ msgid ""
 "\n"
 "Do you want to set the pin now?"
 msgstr ""
+"Sinun pitää asettaa PIN-koodi ja piilottaa se lapsilta.\n"
+"\n"
+"Haluatko tehdä sen nyt?"
 
 msgid ""
 "You successfully configured a new AutoTimer. Do you want to add it to the "
@@ -8644,6 +8911,9 @@ msgstr "Nimi (ei pakollinen):"
 msgid "Your network configuration has been activated."
 msgstr "Verkkoasetukset on aktivoitu."
 
+msgid "Your network is not working. Please try again."
+msgstr "Verkkoyhteys ei toimi. Yritä uudestaan."
+
 msgid "Your network mount has been activated."
 msgstr "Verkkojako on aktivoitu."
 
@@ -8864,6 +9134,12 @@ msgstr "määritetyt CAId:t:"
 msgid "assigned Services/Provider:"
 msgstr "Määritetyt kanavat/palveluntarjoajat:"
 
+msgid "at beginning"
+msgstr "alussa"
+
+msgid "at end"
+msgstr "lopussa"
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -8882,6 +9158,9 @@ msgstr "ääniraidat"
 msgid "auto"
 msgstr "autom."
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "saatavilla"
@@ -8917,6 +9196,10 @@ msgid "blue"
 msgstr "sininen"
 
 #
+msgid "bob"
+msgstr "bob"
+
+#
 #, python-format
 msgid "burn audio track (%s)"
 msgstr "Polta ääniraita (%s)"
@@ -8955,6 +9238,9 @@ msgstr "tyhjennä soittolista"
 msgid "complex"
 msgstr "monipuolinen"
 
+msgid "config changed."
+msgstr "asetuksia muutettu."
+
 #
 msgid "config menu"
 msgstr "Asetusvalikko"
@@ -8986,6 +9272,12 @@ msgstr "ei voitu poistaa"
 msgid "create directory"
 msgstr "luo hakemisto"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr "nykyinen ohjelmisto: %s"
@@ -8999,6 +9291,10 @@ msgid "day"
 msgstr "päivä"
 
 #
+msgid "default"
+msgstr "oletus"
+
+#
 msgid "delete"
 msgstr "Poista"
 
@@ -9026,7 +9322,7 @@ msgid "delete..."
 msgstr "Poista tallenne"
 
 msgid "description"
-msgstr ""
+msgstr "kuvaus"
 
 #
 msgid "disable"
@@ -9060,6 +9356,9 @@ msgstr "Älä tallenna"
 msgid "done!"
 msgstr "tallennettu"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr "Ajuri Realtek USB WLAN-laitteille"
+
 #
 msgid "edit alternatives"
 msgstr "Vaihtoehtojen lisäys ja poisto"
@@ -9339,6 +9638,9 @@ msgstr "minuutti"
 msgid "minutes"
 msgstr "minuuttia"
 
+msgid "missing parameter \"id\""
+msgstr "parametri \"id\" puuttuu"
+
 #
 msgid "month"
 msgstr "kuukausi"
@@ -9428,7 +9730,7 @@ msgid "not locked"
 msgstr "ei lukittu"
 
 msgid "not supported"
-msgstr ""
+msgstr "ei tuettu"
 
 #
 msgid "not used"
@@ -9537,9 +9839,6 @@ msgstr "punainen"
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr "Näytä ilmoitusikkunat Growl:in kautta"
-
 #
 msgid "remove a nameserver entry"
 msgstr "poista nimipalvelin"
@@ -9673,7 +9972,7 @@ msgid "select the movie path"
 msgstr "valitse tallennehakemisto"
 
 msgid "service PIN"
-msgstr ""
+msgstr "kanavan PIN"
 
 msgid "set enigma2 to standby-mode after startup"
 msgstr ""
@@ -9683,7 +9982,7 @@ msgid "sets the Audio Delay (LipSync)"
 msgstr "aseta ääniviive (lipsync)"
 
 msgid "setup PIN"
-msgstr ""
+msgstr "aseta PIN"
 
 #
 msgid "show DVD main menu"
@@ -9874,7 +10173,11 @@ msgid "toggle time, chapter, audio, subtitle info"
 msgstr "valitse aika, kappale, ääni, tekstitys"
 
 msgid "tuner is not supported"
-msgstr ""
+msgstr "viritin ei ole tuettu"
+
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr "ei löydy ajastusta id %i"
 
 #
 msgid "unavailable"
@@ -9946,6 +10249,9 @@ msgstr "joka viikko"
 msgid "whitelist"
 msgstr "hyväksytyt"
 
+msgid "wireless network interface"
+msgstr "WLAN-yhteys"
+
 #
 msgid "working"
 msgstr "työskentelee"
@@ -10039,26 +10345,6 @@ msgstr "vaihdettu"
 #~ msgstr "Nouseva"
 
 #
-#~ msgid ""
-#~ "Autoresolution Plugin Testmode:\n"
-#~ "Is %s ok?"
-#~ msgstr ""
-#~ "Autoresoluutio lisäosan testitila:\n"
-#~ "Toimiiko %s ?"
-
-#~ msgid "Autoresolution Switch"
-#~ msgstr "Autoresoluution kytkentä"
-
-#~ msgid "Autoresolution is not working in Scart/DVI-PC Mode"
-#~ msgstr "Autoresoluutio ei toimi SCART/DVI-PC-tiloissa"
-
-#~ msgid "Autoresolution settings"
-#~ msgstr "Autoresoluution asetukset"
-
-#~ msgid "Autoresolution videomode setup"
-#~ msgstr "Autoresoluution kuvatilan asetukset"
-
-#
 #~ msgid "Backup"
 #~ msgstr "Luo"
 
@@ -10117,6 +10403,22 @@ msgstr "vaihdettu"
 #~ msgstr "Valitse lähde"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Koodinopeus (korkea)"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Koodinopeus (alhainen)"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Koodinopeus (HP)"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Koodinopeus (LP)"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "CompactFlash-kortti"
 
@@ -10154,15 +10456,6 @@ msgstr "vaihdettu"
 #~ msgid "Default settings"
 #~ msgstr "Lataa oletusarvot"
 
-#~ msgid "Deinterlacer mode for interlaced content"
-#~ msgstr "Lomitustila lomitellulle materiaalille"
-
-#~ msgid "Deinterlacer mode for progressive content"
-#~ msgstr "Lomitustila lomittamattomalle materiaalille"
-
-#~ msgid "Delay x seconds after service started"
-#~ msgstr "Viive x sekuntia palvelun käynnistämisen jälkeen"
-
 #~ msgid "Delete selected mount"
 #~ msgstr "Poista valittu jako"
 
@@ -10206,21 +10499,6 @@ msgstr "vaihdettu"
 #~ msgid "Edit IPKG source URL..."
 #~ msgstr "Muokkaa IPKG-lähdeosoitetta..."
 
-#~ msgid "Enable 1080p24 Mode"
-#~ msgstr "Ota käyttöön 1080p24-tila"
-
-#~ msgid "Enable 1080p25 Mode"
-#~ msgstr "Ota käyttöön 1080p25-tila"
-
-#~ msgid "Enable 1080p30 Mode"
-#~ msgstr "Ota käyttöön 1080p30-tila"
-
-#~ msgid "Enable 720p24 Mode"
-#~ msgstr "Ota käyttöön 720p24-tila"
-
-#~ msgid "Enable Autoresolution"
-#~ msgstr "Ota autoresoluutio käyttöön"
-
 #
 #~ msgid "Encrypted: %s"
 #~ msgstr "Salattu: %s"
@@ -10241,6 +10519,14 @@ msgstr "vaihdettu"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Aloita kelaus eteenpäin nopeudella"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Aloita kelaus taaksepäin nopeudella"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Syötä WLAN-verkon nimi/SSID:"
 
@@ -10266,6 +10552,10 @@ msgstr "vaihdettu"
 #~ msgid "Following tasks will be done after you press continue."
 #~ msgstr "Seuraavat tehtävät suoritetaan kun valitset jatka."
 
+#
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Ruudun toistomäärä hyppivällä kelauksella"
+
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP-osoite"
 
@@ -10284,16 +10574,43 @@ msgstr "vaihdettu"
 #~ msgid "General PCM delay"
 #~ msgstr "PCM-viive (ms)"
 
-#~ msgid "HD Interlace Mode"
-#~ msgstr "Lomitettu HD-tila"
+#~ msgid ""
+#~ "Growlee allows your Dreambox to send short messages using the growl "
+#~ "protocol\n"
+#~ "like Recording started notifications to a PC running a growl client"
+#~ msgstr ""
+#~ "Growleen avulla Dreambox voi lähettää lyhyitä Growl-protokollan mukaisia "
+#~ "viestejä,\n"
+#~ "esim. ilmoituksen tallennuksen aloittamisesta, PC:lle jossa pyörii Growl-"
+#~ "asiakasohjelma"
+
+#
+#~ msgid "Guard Interval"
+#~ msgstr "Suojaväli"
 
-#~ msgid "HD Progressive Mode"
-#~ msgstr "Lomittamaton HD-tila"
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Suojaväli-tila"
+
+#
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hierarkia-tietoja"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hierarkia-tila"
 
 #
 #~ msgid "How to handle found crashlogs:"
 #~ msgstr "Mitä lokitiedostoille tehdään:"
 
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Jos tämä valinta on käytössä, olemassa olevan ajastuksen tulkitaan "
+#~ "tallentavan ohjelma jos se tallentaa vähintään 80% siitä."
+
 #
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Jos näet tämän sivun, paina OK."
@@ -10387,6 +10704,10 @@ msgstr "vaihdettu"
 #~ msgid "Online-Upgrade"
 #~ msgstr "Online-päivitys"
 
+#
+#~ msgid "Orbital Position"
+#~ msgstr "Sijainti"
+
 #~ msgid "Order by"
 #~ msgstr "Tilaaja"
 
@@ -10425,6 +10746,10 @@ msgstr "vaihdettu"
 #~ msgid "Plugin manager"
 #~ msgstr "Lisäosien hallinta"
 
+#
+#~ msgid "Polarity"
+#~ msgstr "Polarisaatio"
+
 #~ msgid ""
 #~ "Power state to change to after recordings. Select \"standard\" to not "
 #~ "change the default behaviour of enigma2 or values changed by yourself."
@@ -10487,20 +10812,8 @@ msgstr "vaihdettu"
 #~ msgid "Retrieving network information. Please wait..."
 #~ msgstr "Noudetaan verkkotietoja. Odota..."
 
-#~ msgid "Running in testmode"
-#~ msgstr "Suoritetaan testitilassa"
-
-#~ msgid "SD 25/50HZ Interlace Mode"
-#~ msgstr "SD 25/50Hz lomitettu tila"
-
-#~ msgid "SD 25/50HZ Progressive Mode"
-#~ msgstr "SD 25/50Hz lomittamaton tila"
-
-#~ msgid "SD 30/60HZ Interlace Mode"
-#~ msgstr "SD 30/60Hz lomitettu tila"
-
-#~ msgid "SD 30/60HZ Progressive Mode"
-#~ msgstr "SD 30/60Hz lomittamaton tila"
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
 
 #
 #~ msgid "Satteliteequipment"
@@ -10587,9 +10900,6 @@ msgstr "vaihdettu"
 #~ msgid "Setup for the AC3 Lip Sync Plugin"
 #~ msgstr "AC3 Lip Sync -lisäosan asetukset"
 
-#~ msgid "Show info screen"
-#~ msgstr "Näytä tietoruutu"
-
 #
 #~ msgid "Skin..."
 #~ msgstr "Teema..."
@@ -10632,6 +10942,14 @@ msgstr "vaihdettu"
 #~ msgid "Switch to user key- delays"
 #~ msgstr "Ota itse määritellyt viiveen pikavalinnat käyttöön"
 
+#
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbolinopeus"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolinopeus"
+
 #~ msgid ""
 #~ "The USB stick is now bootable. Do you want to download the latest image "
 #~ "from the feed server and save it on the stick?"
@@ -10718,6 +11036,14 @@ msgstr "vaihdettu"
 #~ "3) Odota käynnistymistä ja seuraa ohjeita."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Lähetystapa"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Lähettimen tyyppi"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -10761,6 +11087,10 @@ msgstr "vaihdettu"
 #~ msgstr "Vakiot pikaval."
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Hyppivä kelaus kun nopeus ylittää"
+
+#
 #~ msgid "Use user delays"
 #~ msgstr "Omat pikaval."
 
@@ -10871,18 +11201,10 @@ msgstr "vaihdettu"
 #~ msgstr "Määritetyt kanavat/palveluntarjoajat"
 
 #
-#~ msgid "bob"
-#~ msgstr "bob"
-
-#
 #~ msgid "choose destination directory"
 #~ msgstr "valitse kohdehakemisto"
 
 #
-#~ msgid "default"
-#~ msgstr "oletus"
-
-#
 #~ msgid "enigma2 and network"
 #~ msgstr "enigma2 ja verkko"
 
@@ -10922,6 +11244,9 @@ msgstr "vaihdettu"
 #~ msgid "open virtual keyboard input help"
 #~ msgstr "avaa virtuaalinäppäimistön ohje"
 
+#~ msgid "redirect notifications to Growl"
+#~ msgstr "Näytä ilmoitusikkunat Growl:in kautta"
+
 #
 #~ msgid "required medium type:"
 #~ msgstr "tarvittava tallennusmedia:"
index ea368df..6625914 100755 (executable)
--- a/po/fr.po
+++ b/po/fr.po
@@ -3,14 +3,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: enigma 2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2011-02-09 20:34+0200\n"
 "Last-Translator: Remi <remi.jarrige0293@orange.fr>\n"
 "Language-Team: french\n"
-"Language: fr\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
 "Plural-Forms: nplurals=2; plural=(n > 1);\n"
 "X-Generator: Pootle 2.0.3\n"
 "X-Poedit-Language: French\n"
@@ -182,6 +182,12 @@ msgid "%H:%M"
 msgstr "%H:%M"
 
 #, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
+#, python-format
 msgid "%d jobs are running in the background!"
 msgstr "les travaux %d fonctionnent en arrière-plan!"
 
@@ -213,6 +219,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 msgid "(ZAP)"
 msgstr "(ZAP)"
 
@@ -336,12 +346,12 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr ""
+
 msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr "Un thème retour aux sources .. ou bon vieux temps."
 
-msgid "A BackToTheRoots-Skin ... or good old times."
-msgstr "Un thème retour aux sources ... ou bon vieux temps."
-
 msgid "A basic ftp client"
 msgstr "Un client FTP basic"
 
@@ -360,6 +370,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Un plugin démo pour usage TPM."
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -383,6 +396,9 @@ msgstr "Un EPG graphique pour tous les services d'un bouquet spécifique"
 msgid "A graphical EPG interface"
 msgstr "Un interface graphique EPG"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr "Un interface graphique EPG."
 
@@ -860,6 +876,9 @@ msgstr "Demande utilisateur"
 msgid "Aspect Ratio"
 msgstr "Format d'image"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Assignation opérateurs/services/caids à un module CI"
 
@@ -873,6 +892,9 @@ msgstr "Audio"
 msgid "Audio Options..."
 msgstr "Options audio..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr "Synchro audio"
@@ -943,6 +965,15 @@ msgstr ""
 "La ProgAuto balaye l'EPG et crée des programmations définies par les "
 "critères de recherche utilisateur."
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Automatique"
@@ -980,6 +1011,24 @@ msgstr "Régénérer automatiquement EPG"
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr "Envoyer automatiquement les crashlogs à Dream Multimedia"
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr "Autos ¬ Véhicules"
@@ -1022,6 +1071,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Arrière"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Arrière plan"
@@ -1114,6 +1169,11 @@ msgstr "Brésil"
 msgid "Brightness"
 msgstr "Luminosité"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr "Recherche pour et connection partages réseau"
 
@@ -1142,6 +1202,17 @@ msgstr "Graver vos enregistrements sur DVD"
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1410,21 +1481,11 @@ msgstr "Fermer et sauver les changements"
 msgid "Close title selection"
 msgstr "Fermer sélection titre"
 
-#
-msgid "Code rate high"
-msgstr "Fréquence symbole haut"
-
-#
-msgid "Code rate low"
-msgstr "Fréquence symbole bas"
-
-#
-msgid "Coderate HP"
-msgstr "Fréquence code haut"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Fréquence code bas"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1607,6 +1668,10 @@ msgstr "N'a pu ouvrir l'image dans l'image"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Enregistrement impossible! Conflit programmation %s!"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr "Configuration crashlog"
@@ -1791,6 +1856,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr "DVD Explorateur fichiers"
@@ -1878,9 +1946,18 @@ msgstr "Définir un services démarrage"
 msgid "Define a startup service for your Dreambox."
 msgstr "Définir un services démarrage pour votre Dreambox"
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 msgid "Delay"
 msgstr "Délai"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Effacer"
@@ -2067,6 +2144,12 @@ msgstr ""
 "Cela pourait prendre beaucoup de temps!"
 
 #, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
+#, python-format
 msgid "Do you really want to delete %s?"
 msgstr "Voulez-vous vraiment effacer %s?"
 
@@ -2257,6 +2340,12 @@ msgstr "Données DVD en format Dreambox (Compatible HDTV)"
 msgid "Dreambox software because updates are available."
 msgstr "logiciel de Dreambox car des mises à jour sont disponibles."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr "Durée: "
@@ -2401,9 +2490,28 @@ msgid "Enable /media"
 msgstr "Activer /média"
 
 #
+msgid "Enable 1080p24 Mode"
+msgstr "Activer mode 1080p24"
+
+#
+msgid "Enable 1080p25 Mode"
+msgstr "Activer mode 1080p25"
+
+#
+msgid "Enable 1080p30 Mode"
+msgstr "Activer mode 1080p30"
+
+#
 msgid "Enable 5V for active antenna"
 msgstr "Autoriser 5V pour antenne active"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+#
+msgid "Enable Autoresolution"
+msgstr "Activer Autoresolution"
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr "Autoriser assistant nettoyage?"
@@ -2536,17 +2644,9 @@ msgstr ""
 "© 2006 - Stephan Reichholf"
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Entrer avance rapide à la vitesse"
-
-#
 msgid "Enter IP to scan..."
 msgstr "Saisir IP à analyser..."
 
-#
-msgid "Enter Rewind at speed"
-msgstr "Entrer rembobinage à la vitesse"
-
 msgid "Enter main menu..."
 msgstr "Entrer dans le menu principal..."
 
@@ -2619,6 +2719,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estonien"
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Programme TV"
@@ -2824,6 +2927,11 @@ msgstr "Termine le redémarrage de votre réseau"
 msgid "Finnish"
 msgstr "Finlandais"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr "Produire d'abord votre modèle-thème avec l'Ai.HD-Contrôle."
 
@@ -2843,6 +2951,12 @@ msgstr "Le suivi des tâches suivantes sera fait après appui sur OK!"
 msgid "Format"
 msgstr "Format"
 
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -2853,10 +2967,6 @@ msgstr ""
 "%d programmations ont été ajoutées et %d modifiées."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Répétition compteur vues pendant lecture discontinue"
-
-#
 msgid "Frame size in full view"
 msgstr "Dimension frame en plein écran"
 
@@ -2900,6 +3010,9 @@ msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 "FritzCall montre des appels entrant vers votre Fritz!Box sur votre Dreambox."
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr "Tuner pour /tmp/mmi.socket"
 
@@ -2957,6 +3070,9 @@ msgstr "Retard général PCM"
 msgid "General PCM delay (ms)"
 msgstr "Retard général PCM (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Genre"
@@ -3037,26 +3153,25 @@ msgid "Green boost"
 msgstr "Intensifier le vert"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
+msgstr ""
+
+msgid "Guard interval"
 msgstr ""
-"Growlee permet à votre Dreambox d'envoyer des messages courts par le "
-"protocole growl\n"
-"comme des notifications d'enregistrements démarrés vers un PC avec un client "
-"growl"
 
 #
-msgid "Guard Interval"
-msgstr "Intervalle garde"
+msgid "Guess existing timer based on begin/end"
+msgstr "Suposer l'existance d'une programmation basée sur début/fin"
 
 #
-msgid "Guard interval mode"
-msgstr "Mode intervalle garde"
+msgid "HD Interlace Mode"
+msgstr "HD mode entrelacement"
 
 #
-msgid "Guess existing timer based on begin/end"
-msgstr "Suposer l'existance d'une programmation basée sur début/fin"
+msgid "HD Progressive Mode"
+msgstr "HD mode progressif"
 
 #
 msgid "HD videos"
@@ -3084,6 +3199,9 @@ msgstr "Disque dur en veille après"
 msgid "Help"
 msgstr "Aide"
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "SSID réseau caché"
@@ -3092,13 +3210,8 @@ msgstr "SSID réseau caché"
 msgid "Hidden networkname"
 msgstr "Nom réseau caché"
 
-#
-msgid "Hierarchy Information"
-msgstr "Information hiérarchie"
-
-#
-msgid "Hierarchy mode"
-msgstr "Mode Hiérarchie"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3166,14 +3279,11 @@ msgstr "Chemin ISO"
 msgid "Icelandic"
 msgstr "Islandais"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"Si ceci est activé une programmation existante sera également considérée "
-"enregistrement d'une émission s'il enregistre au moins 80% de celle-ci."
 
 #
 msgid ""
@@ -3274,6 +3384,12 @@ msgstr "Informations"
 msgid "Init"
 msgstr "Initialiser"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr "Emplacement initial pour nouveaux enregistrements"
@@ -3375,6 +3491,9 @@ msgstr "Flash interne"
 msgid "Internal LAN adapter."
 msgstr "Adaptateur interne LAN"
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr "Updater interne firmware"
 
@@ -3576,6 +3695,11 @@ msgstr "Sélection de la langue"
 msgid "Last config"
 msgstr "Dernière config"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 msgid "Last speed"
 msgstr "Dernière vitesse"
 
@@ -3632,6 +3756,9 @@ msgstr "Lien:"
 msgid "Linked titles with a DVD menu"
 msgstr "Titres liés avec un menu DVD"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Liste périphériques stockage"
@@ -3771,6 +3898,9 @@ msgstr "Gestion de votre logiciel récepteur"
 msgid "Manual Scan"
 msgstr "Analyse manuelle"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Transpondeur manuel"
@@ -4072,6 +4202,9 @@ msgstr "Menu liste film"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr "Multimédia"
@@ -4080,6 +4213,9 @@ msgstr "Multimédia"
 msgid "Multiple service support"
 msgstr "Support service multiple"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4145,6 +4281,9 @@ msgstr "Flash de l'image NFI terminé. Presser Jaune pour redémarrer!"
 msgid "NFS share"
 msgstr "Partage NFS"
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "MAINTENANT"
@@ -4174,6 +4313,9 @@ msgstr "Paramètres nom serveur"
 msgid "Nameserver settings"
 msgstr "Paramètres nom serveur"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr "Thème Nemesis BlackBox"
 
@@ -4329,6 +4471,9 @@ msgstr "Parcours réseau"
 msgid "NetworkWizard"
 msgstr "Assistant réseau"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr "Jamais"
@@ -4493,6 +4638,9 @@ msgstr "Pas de vidéos à afficher"
 msgid "No wireless networks found! Please refresh."
 msgstr "Aucun réseau sans fil trouvé! veuillez rafraichir."
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 msgid ""
 "No working local network adapter found.\n"
 "Please verify that you have attached a network cable and your network is "
@@ -4585,6 +4733,12 @@ msgstr "Nord"
 msgid "Norwegian"
 msgstr "Norvégien"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4598,6 +4752,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Pas chercher entrées feed"
 
+msgid "Not-Associated"
+msgstr ""
+
 msgid ""
 "Nothing to scan!\n"
 "Please setup your tuner settings before you start a service scan."
@@ -4640,6 +4797,9 @@ msgstr "OK, retirer autre extensions"
 msgid "OK, remove some extensions"
 msgstr "OK, retirer quelques extensions"
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "Paramètres OSD"
@@ -4709,9 +4869,8 @@ msgstr "Ouvrir menu plugin"
 msgid "Optionally enter your name if you want to."
 msgstr "Optionnel, saisir votre nom si vous le souhaitez."
 
-#
-msgid "Orbital Position"
-msgstr "Position orbitale"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4734,10 +4893,16 @@ msgstr "Ecraser fichiers configuration pendant mise à jour logicielle?"
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Mise à jour liste paquets"
@@ -5194,10 +5359,6 @@ msgstr "Podcast envoie flux Podcast vers votre Dreambox."
 msgid "Poland"
 msgstr "Pologne"
 
-#
-msgid "Polarity"
-msgstr "Polarité"
-
 msgid "Polarization"
 msgstr "Polarisation"
 
@@ -5232,6 +5393,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portugais"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Positionneur"
@@ -5446,6 +5610,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr "Visualisateur RSS"
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5558,6 +5725,9 @@ msgstr "Enregistrements"
 msgid "Recordings always have priority"
 msgstr "Enregistrements toujours prioritaires"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr "Re-saisir nouveau PIN"
 
@@ -5782,6 +5952,9 @@ msgstr "Restaurer votre Drembox avec clé USB"
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr "Restreindre \"après émission\" à une certaine période?"
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Reprendre depuis la dernière position"
@@ -5822,9 +5995,8 @@ msgstr "Vitesses rembobinage"
 msgid "Right"
 msgstr "Droite"
 
-#
-msgid "Rolloff"
-msgstr "Défaire"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5834,6 +6006,9 @@ msgstr "Vitesse rotation rotor"
 msgid "Running"
 msgstr "tourne"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr "Russie"
@@ -5846,6 +6021,21 @@ msgstr "Russe"
 msgid "S-Video"
 msgstr "S-Vidéo"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr "SIMPLE COUCHE DVD"
@@ -5862,6 +6052,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Sam"
@@ -6327,6 +6530,9 @@ msgstr ""
 "Service non trouvé!\n"
 "(SID pas trouvé dans PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Analyse des services"
@@ -6462,6 +6668,9 @@ msgstr "Montrer progression-événement dans sélecteur chaînes"
 msgid "Show in extension menu"
 msgstr "Montrer dans le menu extension"
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Montrer infobar en changeant de chaîne"
@@ -6473,6 +6682,9 @@ msgstr "Montrer infobar en changeant d'émission"
 msgid "Show infobar on skip forward/backward"
 msgstr "Montrer infobar sur saut avant/arrière"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Montrer mouvements positionneur"
@@ -6745,6 +6957,9 @@ msgstr "Voltage Fan en veille %d"
 msgid "Start Webinterface"
 msgstr "Démarrer interface Web"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Démarrer depuis le début"
@@ -6867,6 +7082,9 @@ msgstr "Dim"
 msgid "Sunday"
 msgstr "Dimanche"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Inverser fenêtres services"
@@ -6891,12 +7109,8 @@ msgstr "basculer vers sous-service précédent"
 msgid "Switchable tuner types:"
 msgstr "Types de tuner permutables:"
 
-#
-msgid "Symbol Rate"
-msgstr "Fréquence symbole"
-
-msgid "Symbolrate"
-msgstr "Fréquence Symbole"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6912,10 +7126,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "Fichier TS trop grand pour le niveau 1 ISO9660!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "Système TV"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Table des matières pour la collection"
@@ -6948,6 +7171,9 @@ msgstr "Taiwan"
 msgid "Temperature and Fan control"
 msgstr "Contrôle Fan et Température"
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Terrestre"
@@ -7699,10 +7925,6 @@ msgid "Translation:"
 msgstr "Traduction:"
 
 #
-msgid "Transmission Mode"
-msgstr "Mode transmission"
-
-#
 msgid "Transmission mode"
 msgstr "Mode de transmission"
 
@@ -7710,9 +7932,6 @@ msgstr "Mode de transmission"
 msgid "Transponder"
 msgstr "Transpondeur"
 
-msgid "Transponder Type"
-msgstr "Type transpondeur"
-
 #
 msgid "Travel & Events"
 msgstr "Voyages & Evénements"
@@ -7844,6 +8063,9 @@ msgstr "Défaire installation"
 msgid "Undo uninstall"
 msgstr "Défaire désinstallation"
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr "UnhandledKey"
@@ -7872,6 +8094,9 @@ msgstr "Etats Unis"
 msgid "Universal LNB"
 msgstr "LNB universel"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr "Adaptateur réseau inconnu"
 
@@ -7991,10 +8216,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr "Utiliser et contrôler multiples Dreamboxes avec différentes RCs."
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Utiliser lecture discontinue aux vitesses ci-dessus"
-
-#
 msgid "Use power measurement"
 msgstr "Utiliser mesure puissance"
 
@@ -8077,15 +8298,24 @@ msgstr "VMGM (intro bande-annonce)"
 msgid "Vali-XD skin"
 msgstr "Thème Vali-XD"
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr "Thème Vali.HD.nano"
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 "Vérifie l'authenticité de votre Dreambox en lançant le plugin authenticité "
 "dreambox!"
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr "Vertical"
@@ -8101,6 +8331,9 @@ msgstr "Assistant accord-fin vidéo"
 msgid "Video Output"
 msgstr "Sortie vidéo"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Paramètres vidéo"
@@ -8350,6 +8583,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr "Prévisions météorologiques sur votre Dreambox"
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr "Webinterface"
@@ -8522,6 +8758,11 @@ msgstr "Que voulez-vous analyser?"
 msgid "What to do with submitted crashlogs?"
 msgstr "Que faire des crashlogs soumis?"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8566,6 +8807,15 @@ msgstr "Réseau sans fil"
 msgid "Wireless Network State"
 msgstr "Etat réseau sans fil"
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8833,6 +9083,12 @@ msgstr ""
 "'Nom' est juste un nom lisible par l'homme affiché dans la vue d'ensemble, "
 "'correspondance dans le titre' est ce qui est recherché dans l'EPG."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Vous ne pouvez effacer ceci!"
@@ -9051,6 +9307,9 @@ msgstr "Votre nom (optionnel):"
 msgid "Your network configuration has been activated."
 msgstr "Votre configuration réseau a été activée."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr "Votre montage réseau a été activé."
@@ -9271,6 +9530,12 @@ msgstr "CAIds assignés:"
 msgid "assigned Services/Provider:"
 msgstr "Services/Opérateurs assignés:"
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9289,6 +9554,9 @@ msgstr "pistes audio"
 msgid "auto"
 msgstr "auto"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "disponible"
@@ -9321,6 +9589,9 @@ msgstr "liste noire"
 msgid "blue"
 msgstr "bleu"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9362,6 +9633,9 @@ msgstr "effacer liste de lecture"
 msgid "complex"
 msgstr "complexe"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "menu de configuration"
@@ -9393,6 +9667,12 @@ msgstr "Ne peut-être retiré"
 msgid "create directory"
 msgstr "création répertoire"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr "image installée actuellement: %s"
@@ -9406,6 +9686,10 @@ msgid "day"
 msgstr "Jour"
 
 #
+msgid "default"
+msgstr "défaut"
+
+#
 msgid "delete"
 msgstr "Effacer"
 
@@ -9464,6 +9748,9 @@ msgstr "ne pas enregistrer"
 msgid "done!"
 msgstr "terminé!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "éditer les alternatifs"
@@ -9743,6 +10030,9 @@ msgstr "minute"
 msgid "minutes"
 msgstr "minutes"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "Mois"
@@ -9939,9 +10229,6 @@ msgstr "rouge"
 msgid "redesigned Kerni-HD1 skin"
 msgstr "thème kerni-HD1 redessiné"
 
-msgid "redirect notifications to Growl"
-msgstr "rediriger notification vers Growl"
-
 #
 msgid "remove a nameserver entry"
 msgstr "retirer une entrée nom serveur"
@@ -10275,6 +10562,10 @@ msgstr "commuter temps, chapitre, audio, info sous-titres"
 msgid "tuner is not supported"
 msgstr "le tuner n'est pas supporté"
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr "indisponible"
@@ -10345,6 +10636,9 @@ msgstr "hebdomadaire"
 msgid "whitelist"
 msgstr "liste blanche"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "travail en cours..."
@@ -10412,6 +10706,9 @@ msgstr "zappé"
 #~ msgid "/var directory"
 #~ msgstr "répertoire /var"
 
+#~ msgid "A BackToTheRoots-Skin ... or good old times."
+#~ msgstr "Un thème retour aux sources ... ou bon vieux temps."
+
 #
 #~ msgid "Adress"
 #~ msgstr "Adresse"
@@ -10493,6 +10790,22 @@ msgstr "zappé"
 #~ msgstr "Choisissez la source"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Fréquence symbole haut"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Fréquence symbole bas"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Fréquence code haut"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Fréquence code bas"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Carte compact flash"
 
@@ -10585,22 +10898,6 @@ msgstr "zappé"
 #~ msgstr "Téléchargement description image..."
 
 #
-#~ msgid "Enable 1080p24 Mode"
-#~ msgstr "Activer mode 1080p24"
-
-#
-#~ msgid "Enable 1080p25 Mode"
-#~ msgstr "Activer mode 1080p25"
-
-#
-#~ msgid "Enable 1080p30 Mode"
-#~ msgstr "Activer mode 1080p30"
-
-#
-#~ msgid "Enable Autoresolution"
-#~ msgstr "Activer Autoresolution"
-
-#
 #~ msgid "Encrypted: %s"
 #~ msgstr "Chiffré: %s"
 
@@ -10625,6 +10922,14 @@ msgstr "zappé"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Entrer avance rapide à la vitesse"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Entrer rembobinage à la vitesse"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Entrer nom/SSID réseau WLAN:"
 
@@ -10652,6 +10957,10 @@ msgstr "zappé"
 #~ msgstr "Taille police"
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Répétition compteur vues pendant lecture discontinue"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Adresse FON IP Fritz!Box"
 
@@ -10663,13 +10972,39 @@ msgstr "zappé"
 #~ msgid "Genre:"
 #~ msgstr "Genre:"
 
+#~ msgid ""
+#~ "Growlee allows your Dreambox to send short messages using the growl "
+#~ "protocol\n"
+#~ "like Recording started notifications to a PC running a growl client"
+#~ msgstr ""
+#~ "Growlee permet à votre Dreambox d'envoyer des messages courts par le "
+#~ "protocole growl\n"
+#~ "comme des notifications d'enregistrements démarrés vers un PC avec un "
+#~ "client growl"
+
+#
+#~ msgid "Guard Interval"
+#~ msgstr "Intervalle garde"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Mode intervalle garde"
+
+#
+#~ msgid "Hierarchy Information"
+#~ msgstr "Information hiérarchie"
+
 #
-#~ msgid "HD Interlace Mode"
-#~ msgstr "HD mode entrelacement"
+#~ msgid "Hierarchy mode"
+#~ msgstr "Mode Hiérarchie"
 
 #
-#~ msgid "HD Progressive Mode"
-#~ msgstr "HD mode progressif"
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Si ceci est activé une programmation existante sera également considérée "
+#~ "enregistrement d'une émission s'il enregistre au moins 80% de celle-ci."
 
 #
 #~ msgid "If you can see this page, please press OK."
@@ -10756,6 +11091,10 @@ msgstr "zappé"
 #~ msgstr "Mise à jour en ligne"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Position orbitale"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Autres..."
 
@@ -10805,6 +11144,10 @@ msgstr "zappé"
 #~ msgstr "Veuillez attendre la vérification signature md5..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polarité"
+
+#
 #~ msgid "RSS Feed URI"
 #~ msgstr "RSS-Feed-URI"
 
@@ -10845,6 +11188,10 @@ msgstr "zappé"
 #~ "activer les paramètres restaurés."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Défaire"
+
+#
 #~ msgid "Running in Testmode"
 #~ msgstr "Tourne en mode test"
 
@@ -10939,6 +11286,13 @@ msgstr "zappé"
 #~ msgstr "Stéréo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Fréquence symbole"
+
+#~ msgid "Symbolrate"
+#~ msgstr "Fréquence Symbole"
+
+#
 #~ msgid ""
 #~ "The .NFI Image flasher USB stick is now ready to use. Please download an ."
 #~ "NFI image file from the feed server and save it on the stick. Then reboot "
@@ -11049,6 +11403,13 @@ msgstr "zappé"
 #~ "3) Attendre que ça boot et suivre les instructions de l'assistant."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Mode transmission"
+
+#~ msgid "Transponder Type"
+#~ msgstr "Type transpondeur"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -11061,6 +11422,10 @@ msgstr "zappé"
 #~ msgstr "Mise à jour terminée. Voulez-vous redémarrer votre Dreambox?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Utiliser lecture discontinue aux vitesses ci-dessus"
+
+#
 #~ msgid "Waiting for USB stick to settle..."
 #~ msgstr "Attente de la clef USB à arranger..."
 
@@ -11206,10 +11571,6 @@ msgstr "zappé"
 #~ msgstr "couleur"
 
 #
-#~ msgid "default"
-#~ msgstr "défaut"
-
-#
 #~ msgid "edit Interface"
 #~ msgstr "Edition interface"
 
@@ -11281,6 +11642,9 @@ msgstr "zappé"
 #~ msgid "rebooting..."
 #~ msgstr "reboot..."
 
+#~ msgid "redirect notifications to Growl"
+#~ msgstr "rediriger notification vers Growl"
+
 #
 #~ msgid "seconds."
 #~ msgstr "secondes."
index 5ed3e0e..f61ec6c 100755 (executable)
--- a/po/fy.po
+++ b/po/fy.po
@@ -9,7 +9,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: fy\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2008-12-29 16:22+0100\n"
 "Last-Translator: gerrit <gerrit@nedlinux.nl>\n"
 "Language-Team: gerrit <fy@li.org>\n"
@@ -178,6 +178,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -216,6 +222,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -372,10 +382,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -396,6 +406,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -419,6 +432,9 @@ msgstr "In grafyske EPG foar alle kanalen fan in spesifyk bouquet"
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -873,6 +889,9 @@ msgstr "freechje gebrûker"
 msgid "Aspect Ratio"
 msgstr "Aspect ratio"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -887,6 +906,9 @@ msgstr "Lûd"
 msgid "Audio Options..."
 msgstr "Lûd opsjes..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -953,6 +975,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Automatysk"
@@ -987,6 +1018,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1029,6 +1078,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Werom"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Eftergrûn"
@@ -1123,6 +1178,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Helderens"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1153,6 +1213,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1419,21 +1490,11 @@ msgstr "Feroaringen opslaan en ôfslúte"
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Kode faasje heech"
-
-#
-msgid "Code rate low"
-msgstr "Kode faasje leech"
-
-#
-msgid "Coderate HP"
-msgstr "Kode faasje HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Kode faasje LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1617,6 +1678,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr ""
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr ""
@@ -1796,6 +1861,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1881,10 +1949,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Fertraging"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Ferwiderje"
@@ -2068,6 +2145,12 @@ msgid ""
 "This could take lots of time!"
 msgstr "Wolle jo echt it bestânsysteem neisjen ?<br> Dit kin lang duorje !"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2261,6 +2344,12 @@ msgstr "Dreambox yndieling data DVD (HDTV geskikt)"
 msgid "Dreambox software because updates are available."
 msgstr ""
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2402,10 +2491,25 @@ msgstr "Ynskeakelje"
 msgid "Enable /media"
 msgstr ""
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "5V ynskeakelje foar hjoeddeiske antenne"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2526,18 +2630,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Ynjefte rap foarút by faasje"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Ynjefte rap efterút by faasje"
-
-#
 msgid "Enter main menu..."
 msgstr "Nei it haadmenu..."
 
@@ -2610,6 +2706,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Barren oersjoch"
@@ -2814,6 +2913,11 @@ msgstr "Klear mei it opnei starten fan it netwurk"
 msgid "Finnish"
 msgstr "Finsk"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2833,6 +2937,12 @@ msgstr ""
 msgid "Format"
 msgstr "Formaat"
 
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -2843,10 +2953,6 @@ msgstr ""
 "%d Tiidsbarren binne tafoege en %d feroare."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Byld herhelling by net glêd foar/efterút spielen"
-
-#
 msgid "Frame size in full view"
 msgstr "gedielte yn folslein skerm"
 
@@ -2889,6 +2995,9 @@ msgstr "Frysk "
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2943,6 +3052,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Sjenre"
@@ -3021,23 +3133,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "ynterfal yn 'e gaten halde"
-
-#
-msgid "Guard interval mode"
-msgstr "Ynterfal modus yn 'e gaten halde"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr "In gok nei in besteand Tiidsbarren besjoen nei Begjin/EinTiid"
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3066,6 +3179,9 @@ msgstr "Hurde skiif yn sliipstand nei"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "Ferberche netwurk SSID"
@@ -3074,13 +3190,8 @@ msgstr "Ferberche netwurk SSID"
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Hiërarchie Ynformaasje"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hiërarchie mode"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3151,11 +3262,10 @@ msgstr "ISO paad"
 msgid "Icelandic"
 msgstr "Iislansk"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3257,6 +3367,12 @@ msgstr "Ynformaasje"
 msgid "Init"
 msgstr "Initialisearje"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3358,6 +3474,9 @@ msgstr "Ynterne Flash"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3560,6 +3679,11 @@ msgstr "Taal Kieze"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Lêste faasje"
@@ -3617,6 +3741,9 @@ msgstr "Link:"
 msgid "Linked titles with a DVD menu"
 msgstr "Keppele titels mei in DVD menu"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Lyst Opslach Apparatuur"
@@ -3753,6 +3880,9 @@ msgstr ""
 msgid "Manual Scan"
 msgstr "Hanmatig sykje"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Hanmatige transponder"
@@ -4040,6 +4170,9 @@ msgstr "Filmlyst menu"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr ""
@@ -4048,6 +4181,9 @@ msgstr ""
 msgid "Multiple service support"
 msgstr "Kin meardere utstjoeringen oan"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4117,6 +4253,9 @@ msgstr "NFI image flashen is klear. Druk giel om nei te starten!"
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "No"
@@ -4146,6 +4285,9 @@ msgstr "Nammeserver Ynstellingen"
 msgid "Nameserver settings"
 msgstr "Nammeserver ynstellingen"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4301,6 +4443,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr "Netwurk gûcheler"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr "Nea"
@@ -4467,6 +4612,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4559,6 +4707,12 @@ msgstr "Noard"
 msgid "Norwegian"
 msgstr "Noarsk"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4572,6 +4726,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4614,6 +4771,9 @@ msgstr ""
 msgid "OK, remove some extensions"
 msgstr ""
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "OSD-ynstellingen"
@@ -4683,9 +4843,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr ""
 
-#
-msgid "Orbital Position"
-msgstr "Rumtelyke posisje"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4708,10 +4867,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Bywurkje pakketlyst  "
@@ -5151,10 +5316,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Polariteit"
-
-#
 msgid "Polarization"
 msgstr "Polarisaasje"
 
@@ -5190,6 +5351,9 @@ msgstr "Poort D"
 msgid "Portuguese"
 msgstr "Portugeesk"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Rotor"
@@ -5405,6 +5569,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5515,6 +5682,9 @@ msgstr ""
 msgid "Recordings always have priority"
 msgstr "Opnimmen hat altiid foarrang"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5736,6 +5906,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Fierder gean fanôf lêste posysje"
@@ -5776,9 +5949,8 @@ msgstr "Werom spiel faasje"
 msgid "Right"
 msgstr "Rjochts"
 
-#
-msgid "Rolloff"
-msgstr "Utrolje"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5788,6 +5960,9 @@ msgstr "Rotor rotaasje faasje"
 msgid "Running"
 msgstr "Dwaande"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5800,6 +5975,21 @@ msgstr "Russysk"
 msgid "S-Video"
 msgstr "S Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5816,6 +6006,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Sneon"
@@ -6277,6 +6480,9 @@ msgstr ""
 "Service net fûn!\n"
 "(SID net fûn yn PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Kanaal sykje"
@@ -6409,6 +6615,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Ynfobalke sjen litte by kanaal wiksel"
@@ -6421,6 +6630,9 @@ msgstr "Ynfobalke sjen litte by barren wiksel"
 msgid "Show infobar on skip forward/backward"
 msgstr "Ynfobalke sjen by rap foarút / efterút"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Rotor beweching sjen litte"
@@ -6689,6 +6901,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr "Start de Webynterface"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Start fanôf it begjin"
@@ -6812,6 +7027,9 @@ msgstr "Sne"
 msgid "Sunday"
 msgstr "Snein"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Kanalen wikselje"
@@ -6836,13 +7054,8 @@ msgstr "Gjin nei foarige undersender"
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Symbool faasje"
-
-#
-msgid "Symbolrate"
-msgstr "Symboolfaasje"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6857,10 +7070,19 @@ msgstr "Oersetter ynfo"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS triem is te grut foar ISO 9660 level 1!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV Systeem"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Ynhalds tabel foar kolleksje"
@@ -6893,6 +7115,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Ether"
@@ -7571,10 +7796,6 @@ msgid "Translation:"
 msgstr "Oersetting:"
 
 #
-msgid "Transmission Mode"
-msgstr "Oerstjoeren moadus"
-
-#
 msgid "Transmission mode"
 msgstr "Oerstjoeren type"
 
@@ -7583,10 +7804,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Transponder type"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7714,6 +7931,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7742,6 +7962,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "Unifersele LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7856,10 +8079,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Brûk net glêd spielen by faasjes heecher"
-
-#
 msgid "Use power measurement"
 msgstr "Fermogensmjitting brûke"
 
@@ -7940,13 +8159,22 @@ msgstr "VMGM (yntro fan film)"
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr ""
@@ -7963,6 +8191,9 @@ msgstr "Fideo fyn ynstel gucheler"
 msgid "Video Output"
 msgstr "Fideo útgong"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Fideo ynstellingen"
@@ -8207,6 +8438,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr "Webynterface"
@@ -8353,6 +8587,11 @@ msgstr "Wat wolle jo ôfsykje ?"
 msgid "What to do with submitted crashlogs?"
 msgstr ""
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8389,6 +8628,15 @@ msgstr "Triidloas netwurk"
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8613,6 +8861,12 @@ msgstr ""
 "'Namme' is in namme dy't yn de lyst toant wurd, 'Match' is een titel wêr "
 "nei  sjoen wurd yn de EPG."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Jo kinne dit net ferwiderje!"
@@ -8807,6 +9061,9 @@ msgstr ""
 msgid "Your network configuration has been activated."
 msgstr "Netwurk ynstellingen binne no aktief."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -9024,6 +9281,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9042,6 +9305,9 @@ msgstr "audio spoor"
 msgid "auto"
 msgstr "auto"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr ""
@@ -9074,6 +9340,9 @@ msgstr "swarte lyst"
 msgid "blue"
 msgstr "blauw"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9115,6 +9384,9 @@ msgstr "ofspiellyst leeg meitsje"
 msgid "complex"
 msgstr "complex"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "konfiguraasje menu"
@@ -9146,6 +9418,12 @@ msgstr ""
 msgid "create directory"
 msgstr "map meitsje"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9158,6 +9436,9 @@ msgstr "eltse dei"
 msgid "day"
 msgstr "dei"
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "ferwiderje"
@@ -9217,6 +9498,9 @@ msgstr "net opnimme"
 msgid "done!"
 msgstr "Klear!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "bewurkje alternatief"
@@ -9497,6 +9781,9 @@ msgstr "minuut"
 msgid "minutes"
 msgstr "minuten"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "maand"
@@ -9695,9 +9982,6 @@ msgstr "read"
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr "Ferwiderje in nammeserver"
@@ -10034,6 +10318,10 @@ msgstr "tiid, haadstik, lûd en undertiteling ynfo omskeakelje"
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr ""
@@ -10104,6 +10392,9 @@ msgstr "wikeliks"
 msgid "whitelist"
 msgstr "wyte lyst"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr ""
@@ -10236,6 +10527,22 @@ msgstr "knipt"
 #~ msgstr "Kies bron"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Kode faasje heech"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Kode faasje leech"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Kode faasje HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Kode faasje LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact flash kaart"
 
@@ -10315,6 +10622,14 @@ msgstr "knipt"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Ynjefte rap foarút by faasje"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Ynjefte rap efterút by faasje"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Ynjefte fan WLAN netwurk namme / SSID"
 
@@ -10333,6 +10648,10 @@ msgstr "knipt"
 #~ "Earst moat de lêste opstart triemen binnenhelle wurde foar de USB flasher."
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Byld herhelling by net glêd foar/efterút spielen"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP adres"
 
@@ -10341,6 +10660,22 @@ msgstr "knipt"
 #~ msgstr "Nog net ynbouwde funksje"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "ynterfal yn 'e gaten halde"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Ynterfal modus yn 'e gaten halde"
+
+#
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hiërarchie Ynformaasje"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hiërarchie mode"
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Kinne dizze side sjen, druk dan op OK"
 
@@ -10397,6 +10732,10 @@ msgstr "knipt"
 #~ msgstr "Online-Bywurkje"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Rumtelyke posisje"
+
+#
 #~ msgid "Page"
 #~ msgstr "Side"
 
@@ -10425,6 +10764,10 @@ msgstr "knipt"
 #~ msgstr "Selektearje doel map of medium"
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polariteit"
+
+#
 #~ msgid "Port"
 #~ msgstr "Poort"
 
@@ -10461,6 +10804,10 @@ msgstr "knipt"
 #~ "meitsjen"
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Utrolje"
+
+#
 #~ msgid "SSL"
 #~ msgstr "SSL"
 
@@ -10519,6 +10866,14 @@ msgstr "knipt"
 #~ msgstr "Stereo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbool faasje"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symboolfaasje"
+
+#
 #~ msgid ""
 #~ "The USB stick is now bootable. Do you want to download the latest image "
 #~ "from the feed server and save it on the stick?"
@@ -10601,6 +10956,14 @@ msgstr "knipt"
 #~ "3) Is de box opstart, folgje dan de opjeftes fan de gûcheler."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Oerstjoeren moadus"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Transponder type"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -10613,6 +10976,10 @@ msgstr "knipt"
 #~ msgstr "Klear mei bywurkjen. Wolle jo de Dreambox opnij starte?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Brûk net glêd spielen by faasjes heecher"
+
+#
 #~ msgid ""
 #~ "We will now test if your TV can also display this resolution at 50hz. If "
 #~ "your screen goes black, wait 20 seconds and it will switch back to 60hz.\n"
index 0d0187c..9dd5baa 100755 (executable)
--- a/po/hr.po
+++ b/po/hr.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: \n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2008-01-27 23:38+0100\n"
 "Last-Translator: Jurica <jurica@clarkdigital.com>\n"
 "Language-Team:  <jurica@dream-multimedia.eu>\n"
@@ -168,6 +168,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%S:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -206,6 +212,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -362,10 +372,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -386,6 +396,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -409,6 +422,9 @@ msgstr "Grafički EPG za sve usluge od specifičnog paketa"
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -856,6 +872,9 @@ msgstr ""
 msgid "Aspect Ratio"
 msgstr "Omjer slike"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -870,6 +889,9 @@ msgstr "Zvuk"
 msgid "Audio Options..."
 msgstr "Zvučne opcije..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -936,6 +958,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr ""
@@ -970,6 +1001,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1012,6 +1061,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr ""
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr ""
@@ -1106,6 +1161,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Svjetlost"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1136,6 +1196,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Bus:"
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1403,21 +1474,11 @@ msgstr ""
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Visoka kod rata"
-
-#
-msgid "Code rate low"
-msgstr "Niska kod rata"
-
-#
-msgid "Coderate HP"
-msgstr "Kodrata HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Kodrata LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1601,6 +1662,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr ""
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr ""
@@ -1780,6 +1845,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1865,10 +1933,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Odgoda"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Obriši"
@@ -2050,6 +2127,12 @@ msgid ""
 "This could take lots of time!"
 msgstr ""
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2243,6 +2326,12 @@ msgstr ""
 msgid "Dreambox software because updates are available."
 msgstr ""
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2384,10 +2473,25 @@ msgstr "Omogući"
 msgid "Enable /media"
 msgstr ""
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Uključi 5V za aktivnu antenu"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2508,18 +2612,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr ""
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr ""
-
-#
 msgid "Enter main menu..."
 msgstr "Uđi u Glavni Izbornik"
 
@@ -2590,6 +2686,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Pregled događaja"
@@ -2788,6 +2887,11 @@ msgstr ""
 msgid "Finnish"
 msgstr "Finski"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2807,15 +2911,17 @@ msgstr ""
 msgid "Format"
 msgstr ""
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
 msgstr ""
 
 #
@@ -2861,6 +2967,9 @@ msgstr ""
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2915,6 +3024,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Žanrovi"
@@ -2993,23 +3105,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Interval Zaštite"
-
-#
-msgid "Guard interval mode"
-msgstr "Mod zaštitnog intervala"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3038,6 +3151,9 @@ msgstr "Isključi tvrdi disk nakon"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr ""
@@ -3046,13 +3162,8 @@ msgstr ""
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Informacije hierhije"
-
-#
-msgid "Hierarchy mode"
-msgstr "Mod hierhije"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3123,11 +3234,10 @@ msgstr ""
 msgid "Icelandic"
 msgstr "Islandski"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3223,6 +3333,12 @@ msgstr "Informacije"
 msgid "Init"
 msgstr "Init"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3324,6 +3440,9 @@ msgstr "Unutarnji Flash"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3521,6 +3640,11 @@ msgstr "Odaberite Jezik"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr ""
@@ -3578,6 +3702,9 @@ msgstr ""
 msgid "Linked titles with a DVD menu"
 msgstr ""
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Lista uređaja za pohranu"
@@ -3714,6 +3841,9 @@ msgstr ""
 msgid "Manual Scan"
 msgstr "Ručno skeniranje"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Ručno uneseni transponder"
@@ -4001,6 +4131,9 @@ msgstr "Meni izbornika filmova"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr ""
@@ -4009,6 +4142,9 @@ msgstr ""
 msgid "Multiple service support"
 msgstr "Podrška za višestruke usluge"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4078,6 +4214,9 @@ msgstr ""
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "SADA"
@@ -4107,6 +4246,9 @@ msgstr "Postavke Nameservera"
 msgid "Nameserver settings"
 msgstr ""
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4262,6 +4404,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr ""
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4430,6 +4575,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4515,6 +4663,12 @@ msgstr "Sjever"
 msgid "Norwegian"
 msgstr "Norveški"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4526,6 +4680,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4565,6 +4722,9 @@ msgstr ""
 msgid "OK, remove some extensions"
 msgstr ""
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "Postavke OSD"
@@ -4634,9 +4794,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr ""
 
-#
-msgid "Orbital Position"
-msgstr "Orbitalna Pozicija"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4659,10 +4818,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Nadogradnja liste paketa"
@@ -5101,10 +5266,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Polaritet"
-
-#
 msgid "Polarization"
 msgstr "Polarizacija"
 
@@ -5140,6 +5301,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portugalski"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Motor"
@@ -5355,6 +5519,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5465,6 +5632,9 @@ msgstr ""
 msgid "Recordings always have priority"
 msgstr "Snimanje uvijek ima prioritet"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5686,6 +5856,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr ""
@@ -5726,9 +5899,8 @@ msgstr ""
 msgid "Right"
 msgstr "Desno"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5738,6 +5910,9 @@ msgstr "Brzina okretanja rotora"
 msgid "Running"
 msgstr "Pokrenuto"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5750,6 +5925,21 @@ msgstr "Ruski"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5766,6 +5956,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Sat"
@@ -6226,6 +6429,9 @@ msgstr ""
 "Usluga nije pronađena!\n"
 "(SID nije pronađen u PATu)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Pretraga usluga"
@@ -6360,6 +6566,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Prikaži infobar na promjeni kanala"
@@ -6372,6 +6581,9 @@ msgstr "Prikaži info traku pri promjeni događaja"
 msgid "Show infobar on skip forward/backward"
 msgstr "Prikaži info traku na presk. naprijed/unazad"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Prikaži kretanje motora"
@@ -6640,6 +6852,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr ""
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr ""
@@ -6763,6 +6978,9 @@ msgstr "Ned"
 msgid "Sunday"
 msgstr "Nedelja"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Zamjeni prozore"
@@ -6787,13 +7005,8 @@ msgstr "prebaci u predhodnu poduslugu "
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Simbol rata"
-
-#
-msgid "Symbolrate"
-msgstr "Simbolrata"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6808,10 +7021,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr ""
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV Sistem"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr ""
@@ -6844,6 +7066,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Zemaljski"
@@ -7475,10 +7700,6 @@ msgid "Translation:"
 msgstr "Prijevod:"
 
 #
-msgid "Transmission Mode"
-msgstr "Mod Transmisije"
-
-#
 msgid "Transmission mode"
 msgstr "Mod transmisije"
 
@@ -7487,10 +7708,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Tip Transpondera"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7618,6 +7835,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7646,6 +7866,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "Univerzalni LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7761,10 +7984,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr ""
-
-#
 msgid "Use power measurement"
 msgstr "Koristi mjerenje snage"
 
@@ -7847,13 +8066,22 @@ msgstr ""
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr ""
@@ -7870,6 +8098,9 @@ msgstr ""
 msgid "Video Output"
 msgstr "Video izlaz"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Video postavke"
@@ -8109,6 +8340,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr ""
@@ -8249,6 +8483,11 @@ msgstr "Što želite skenirati?"
 msgid "What to do with submitted crashlogs?"
 msgstr ""
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8285,6 +8524,15 @@ msgstr ""
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8504,6 +8752,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Ne možete obrisati ovo!"
@@ -8681,6 +8935,9 @@ msgstr ""
 msgid "Your network configuration has been activated."
 msgstr ""
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -8898,6 +9155,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -8916,6 +9179,9 @@ msgstr ""
 msgid "auto"
 msgstr ""
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr ""
@@ -8948,6 +9214,9 @@ msgstr "crnalista"
 msgid "blue"
 msgstr ""
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -8989,6 +9258,9 @@ msgstr "očisti Playlistu"
 msgid "complex"
 msgstr "kompleksno"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "konfiguracijski izbornik"
@@ -9020,6 +9292,12 @@ msgstr ""
 msgid "create directory"
 msgstr ""
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9032,6 +9310,9 @@ msgstr "dnevno"
 msgid "day"
 msgstr ""
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "Obriši"
@@ -9091,6 +9372,9 @@ msgstr "ne snimaj"
 msgid "done!"
 msgstr "Učinjeno!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "editiraj alternative"
@@ -9371,6 +9655,9 @@ msgstr "minuta"
 msgid "minutes"
 msgstr "minute"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr ""
@@ -9569,9 +9856,6 @@ msgstr ""
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr ""
@@ -9908,6 +10192,10 @@ msgstr ""
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr ""
@@ -9978,6 +10266,9 @@ msgstr "tjedno"
 msgid "whitelist"
 msgstr "bijelalista"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr ""
@@ -10173,6 +10464,22 @@ msgstr "prebačen"
 #~ msgstr "Odaberi izvor"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Visoka kod rata"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Niska kod rata"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Kodrata HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Kodrata LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Kompakt flash kartica"
 
@@ -10301,10 +10608,26 @@ msgstr "prebačen"
 #~ msgstr "Igre / Dodaci"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Interval Zaštite"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Mod zaštitnog intervala"
+
+#
 #~ msgid "Hide error windows"
 #~ msgstr "Sakrij prozor greA!ke"
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Informacije hierhije"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Mod hierhije"
+
+#
 #~ msgid "Image-Upgrade"
 #~ msgstr "Nadogradnja-Softvera"
 
@@ -10377,6 +10700,10 @@ msgstr "prebačen"
 #~ msgstr "Online-nadogradnja"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Orbitalna Pozicija"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Ostalo..."
 
@@ -10401,6 +10728,10 @@ msgstr "prebačen"
 #~ msgstr "Molim odaberite kljućnu riječ za filtraciju..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polaritet"
+
+#
 #~ msgid "Predefined satellite"
 #~ msgstr "Predefinirani sateliti"
 
@@ -10485,6 +10816,10 @@ msgstr "prebačen"
 #~ "postavki sada."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
+#
 #~ msgid "Satconfig"
 #~ msgstr "Satkonfig"
 
@@ -10575,6 +10910,14 @@ msgstr "prebačen"
 #~ msgstr "Stereo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Simbol rata"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Simbolrata"
+
+#
 #~ msgid "The pin code has been changed successfully."
 #~ msgstr "Pin kod je uspješno promjenjen."
 
@@ -10591,6 +10934,14 @@ msgstr "prebačen"
 #~ msgstr "Vremeski pomak"
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Mod Transmisije"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Tip Transpondera"
+
+#
 #~ msgid "Transpondertype"
 #~ msgstr "TipTranspondera"
 
index a1971ca..f870d65 100755 (executable)
--- a/po/hu.po
+++ b/po/hu.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2008-11-26 15:36+0100\n"
 "Last-Translator: MediaVox-Extrasat <info@mediavox.hu>\n"
 "Language-Team: none\n"
@@ -173,6 +173,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -211,6 +217,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(UGRÁS)"
@@ -367,10 +377,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -391,6 +401,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -414,6 +427,9 @@ msgstr "Grafikus EPG egy adott bouquet összes csatornájához"
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -868,6 +884,9 @@ msgstr "Felhasználó kérdezése"
 msgid "Aspect Ratio"
 msgstr "Képarány"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -882,6 +901,9 @@ msgstr "Hang"
 msgid "Audio Options..."
 msgstr "Hang beállítások..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -948,6 +970,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Automatikus"
@@ -982,6 +1013,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1024,6 +1073,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Vissza"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Háttér"
@@ -1118,6 +1173,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Fényerő"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1148,6 +1208,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1414,21 +1485,11 @@ msgstr ""
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Felsö kódarány"
-
-#
-msgid "Code rate low"
-msgstr "Alsó kódarány"
-
-#
-msgid "Coderate HP"
-msgstr "HP kódarány"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "LP kódarány"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1612,6 +1673,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr ""
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr ""
@@ -1791,6 +1856,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1876,10 +1944,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Késleltetés"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Törlés"
@@ -2067,6 +2144,12 @@ msgstr ""
 "Biztos le akarja ellenőrizni a fájlrendszert?\n"
 "Ez hosszú ideig is eltarthat!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2262,6 +2345,12 @@ msgstr "Dreambox formátumú adat DVD (HDTV kompatibilis)"
 msgid "Dreambox software because updates are available."
 msgstr ""
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2403,10 +2492,25 @@ msgstr "Engedélyezve"
 msgid "Enable /media"
 msgstr ""
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "5V kimenet az akítv antennához engedélyezve"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2527,18 +2631,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Adja meg a gyors előre csévélést ezen a sebességen"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Adja meg a vissza csévélést ezen a sebességen"
-
-#
 msgid "Enter main menu..."
 msgstr "Belépés a főmenübe..."
 
@@ -2611,6 +2707,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Eseménynézet"
@@ -2810,6 +2909,11 @@ msgstr ""
 msgid "Finnish"
 msgstr "Finn"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2829,16 +2933,18 @@ msgstr ""
 msgid "Format"
 msgstr "Formázás"
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Képkocka ismétlések száma non-smooth csévélésnél"
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
+msgstr ""
 
 #
 msgid "Frame size in full view"
@@ -2883,6 +2989,9 @@ msgstr ""
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2937,6 +3046,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr ""
@@ -3015,23 +3127,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Védelmi intervallum"
-
-#
-msgid "Guard interval mode"
-msgstr "Védelmi intervallum mód"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3060,6 +3173,9 @@ msgstr "HDD leállítás a megadott idö után"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr ""
@@ -3068,13 +3184,8 @@ msgstr ""
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Hierarchia információk"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hierarchikus mód"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3145,11 +3256,10 @@ msgstr ""
 msgid "Icelandic"
 msgstr "Izlandi"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3254,6 +3364,12 @@ msgstr "Információk"
 msgid "Init"
 msgstr "Inicializálás"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3355,6 +3471,9 @@ msgstr "Belső Flash"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3552,6 +3671,11 @@ msgstr "Válasszon nyelvet"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Utolsó sebesség"
@@ -3609,6 +3733,9 @@ msgstr "Link:"
 msgid "Linked titles with a DVD menu"
 msgstr "DVD menüvel linkelt címek"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Tárolóeszközök listája"
@@ -3745,6 +3872,9 @@ msgstr ""
 msgid "Manual Scan"
 msgstr "Kézi keresés"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Kézi transzponder"
@@ -4032,6 +4162,9 @@ msgstr "Filmlista menü"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr ""
@@ -4040,6 +4173,9 @@ msgstr ""
 msgid "Multiple service support"
 msgstr "Több csatorna támogatása"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4110,6 +4246,9 @@ msgstr ""
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "MOST"
@@ -4139,6 +4278,9 @@ msgstr "Névszerver beállítások"
 msgid "Nameserver settings"
 msgstr "Névszerver beállítások..."
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4294,6 +4436,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr "Hálózati varázsló"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4462,6 +4607,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4547,6 +4695,12 @@ msgstr "Észak"
 msgid "Norwegian"
 msgstr "Norvég"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4560,6 +4714,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4603,6 +4760,9 @@ msgstr ""
 msgid "OK, remove some extensions"
 msgstr ""
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "OSD beállítások"
@@ -4672,9 +4832,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr ""
 
-#
-msgid "Orbital Position"
-msgstr "Pálya pozíció"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4697,10 +4856,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PID-ek"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Csomaglista frissítés"
@@ -5145,10 +5310,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Polaritás"
-
-#
 msgid "Polarization"
 msgstr "Polarizáció szerint"
 
@@ -5184,6 +5345,9 @@ msgstr "D Port"
 msgid "Portuguese"
 msgstr "Portugál"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Pozícioner"
@@ -5399,6 +5563,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Rádió"
@@ -5509,6 +5676,9 @@ msgstr ""
 msgid "Recordings always have priority"
 msgstr "A felvételnek mindíg elsőbbsége van"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5730,6 +5900,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Folytatás az utolsó pozíciótól"
@@ -5770,9 +5943,8 @@ msgstr "Viszacsévélési sebességek"
 msgid "Right"
 msgstr "Jobb"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5782,6 +5954,9 @@ msgstr "Rotor mozgatási sebessége"
 msgid "Running"
 msgstr "Futó"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5794,6 +5969,21 @@ msgstr "Orosz"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5810,6 +6000,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Szo"
@@ -6270,6 +6473,9 @@ msgstr ""
 "Szolgáltatás nem található!\n"
 "(Nincs SID a PAT-ban)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Csatornakeresés"
@@ -6404,6 +6610,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Csatornaváltáskor mutassa az infósort"
@@ -6416,6 +6625,9 @@ msgstr "Műsorváltozásnál mutassa az infósort"
 msgid "Show infobar on skip forward/backward"
 msgstr "Előre/Hátra lépésnél mutassa az infosort"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Mutassa a motor mozgását"
@@ -6684,6 +6896,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr ""
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Indítsa az elejétől"
@@ -6807,6 +7022,9 @@ msgstr "Vas"
 msgid "Sunday"
 msgstr "Vasárnap"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Csatornák cserélése"
@@ -6831,13 +7049,8 @@ msgstr "Ugrás az előző alcsatornára"
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Symbol Rate"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolrate"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6858,10 +7071,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr ""
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV rendszer"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Gyűjtemény tartalmának táblázata"
@@ -6894,6 +7116,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Földi"
@@ -7566,10 +7791,6 @@ msgid "Translation:"
 msgstr "Fordítás:"
 
 #
-msgid "Transmission Mode"
-msgstr "Adás módja"
-
-#
 msgid "Transmission mode"
 msgstr "Adási mód"
 
@@ -7578,10 +7799,6 @@ msgid "Transponder"
 msgstr "Transzponder"
 
 #
-msgid "Transponder Type"
-msgstr "Transzponder típusa"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7711,6 +7928,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7739,6 +7959,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "Univerzális LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7852,10 +8075,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Non-smooth csévélés használata ezen sebességek felett"
-
-#
 msgid "Use power measurement"
 msgstr "Forgatási paraméterek megadása"
 
@@ -7937,13 +8156,22 @@ msgstr "VMGM (Intro trailer)"
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr ""
@@ -7960,6 +8188,9 @@ msgstr "Video finom beállítások varázsló"
 msgid "Video Output"
 msgstr "Video kimenet"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Videó beállítások"
@@ -8204,6 +8435,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr ""
@@ -8350,6 +8584,11 @@ msgstr "Mit szeretne lekeresni?"
 msgid "What to do with submitted crashlogs?"
 msgstr ""
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8386,6 +8625,15 @@ msgstr "Wireless hálózat"
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8607,6 +8855,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Ez nem törölheti le!"
@@ -8791,6 +9045,9 @@ msgstr ""
 msgid "Your network configuration has been activated."
 msgstr ""
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -9008,6 +9265,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9026,6 +9289,9 @@ msgstr "hangsávok"
 msgid "auto"
 msgstr ""
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr ""
@@ -9058,6 +9324,9 @@ msgstr "feketelista"
 msgid "blue"
 msgstr ""
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9099,6 +9368,9 @@ msgstr "playlista törlése"
 msgid "complex"
 msgstr "komplex"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "konfig. menü"
@@ -9130,6 +9402,12 @@ msgstr ""
 msgid "create directory"
 msgstr "könyvtár létrehozása"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9142,6 +9420,9 @@ msgstr "naponta"
 msgid "day"
 msgstr "nap"
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "törlés"
@@ -9201,6 +9482,9 @@ msgstr "ne vegye fel"
 msgid "done!"
 msgstr "kész!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "alternatívák módosítása"
@@ -9481,6 +9765,9 @@ msgstr "perc"
 msgid "minutes"
 msgstr "perc"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "hónap"
@@ -9679,9 +9966,6 @@ msgstr ""
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr ""
@@ -10018,6 +10302,10 @@ msgstr "idő, chapter, hangsáv, feliratsáv választás"
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr ""
@@ -10088,6 +10376,9 @@ msgstr "hetente"
 msgid "whitelist"
 msgstr "fehér lista"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr ""
@@ -10326,6 +10617,22 @@ msgstr "zap-elt"
 #~ msgstr "Forrás kiválasztása"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Felsö kódarány"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Alsó kódarány"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "HP kódarány"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "LP kódarány"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact flash kártya"
 
@@ -10522,6 +10829,14 @@ msgstr "zap-elt"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Adja meg a gyors előre csévélést ezen a sebességen"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Adja meg a vissza csévélést ezen a sebességen"
+
+#
 #~ msgid "Exit wizard and configure later manually"
 #~ msgstr "Kilépés a varázslóból, beállítás kézi módszerrel késöbb"
 
@@ -10544,6 +10859,10 @@ msgstr "zap-elt"
 #~ msgstr "Font méret"
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Képkocka ismétlések száma non-smooth csévélésnél"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP szám"
 
@@ -10560,10 +10879,26 @@ msgstr "zap-elt"
 #~ msgstr "Műfaj:"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Védelmi intervallum"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Védelmi intervallum mód"
+
+#
 #~ msgid "Hello!"
 #~ msgstr "Helló!"
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hierarchia információk"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hierarchikus mód"
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Ha látja ezt a képernyőt, akkor nyomja meg az OK gombot."
 
@@ -10694,6 +11029,10 @@ msgstr "zap-elt"
 #~ msgstr "Online-Frissítés"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Pálya pozíció"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Egyéb..."
 
@@ -10771,6 +11110,10 @@ msgstr "zap-elt"
 #~ msgstr "Kérem várjon, az md5 szignatúra ellenőrzés folyik..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polaritás"
+
+#
 #~ msgid ""
 #~ "Pressing OK enables the built in wireless LAN support of your Dreambox.\n"
 #~ "Wlan USB Sticks with Zydas ZD1211B and RAlink RT73 Chipset are "
@@ -10856,6 +11199,10 @@ msgstr "zap-elt"
 #~ "a visszaállított beállításokat."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
+#
 #~ msgid "Save current project to disk"
 #~ msgstr "Jelenlegi project mentése lemezre"
 
@@ -10954,6 +11301,14 @@ msgstr "zap-elt"
 #~ msgstr "Sztereó"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbol Rate"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolrate"
+
+#
 #~ msgid ""
 #~ "Thank you for using the wizard. Your Dreambox is now ready to use.\n"
 #~ "\n"
@@ -11071,6 +11426,14 @@ msgstr "zap-elt"
 #~ "és kérésre tegye azt vissza. Nyomja meg az OK gombot ha kivette a sticket."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Adás módja"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Transzponder típusa"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -11093,6 +11456,10 @@ msgstr "zap-elt"
 #~ msgstr "Frissiítés sikeres. Újraindítsam most a DreamBox-ot?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Non-smooth csévélés használata ezen sebességek felett"
+
+#
 #~ msgid "VCR Switch"
 #~ msgstr "VCR kapcsoló"
 
index 4dbdde3..8ca1f19 100755 (executable)
--- a/po/is.po
+++ b/po/is.po
@@ -5,14 +5,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Icelandic translation v.1.44\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
-"PO-Revision-Date: 2010-11-18 19:57+0200\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
+"PO-Revision-Date: 2011-05-04 19:44+0200\n"
 "Last-Translator: Baldur <bsveinsson@gmail.com>\n"
 "Language-Team: Polar Team/LT Team <baddi@oreind.is>\n"
+"Language: is\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: is\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 2.0.3\n"
 "X-Poedit-Language: Icelandic\n"
@@ -196,6 +196,14 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+"Það urðu %d árekstrar við að bæta við upptökum:\n"
+"%s"
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -233,6 +241,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr "%s: %s við %s"
+
 #
 msgid "(ZAP)"
 msgstr "(STÖKK)"
@@ -383,10 +395,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
-msgstr "BackToTheRoots-Skin eða gömlu góðu dagarnir."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr "BackToTheRoots-Skinn .. en með Warp-8 hraða."
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr "BackToTheRoots-Skin eða gömlu góðu dagarnir."
 
 msgid "A basic ftp client"
@@ -407,6 +419,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Íforrits sýnishorn."
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr "Skinn í stíl SG-Atlantis."
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -430,6 +445,9 @@ msgstr "Myndrænt EPG fyrir allar rásir á ákveðnum rásavendi"
 msgid "A graphical EPG interface"
 msgstr "Myndrænt EPG viðmót"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr "Myndrænt EPG viðmót og EPG tóla stjórnun"
+
 msgid "A graphical EPG interface."
 msgstr "Myndrænt EPG viðmót."
 
@@ -841,6 +859,9 @@ msgstr "Spyrja notanda"
 msgid "Aspect Ratio"
 msgstr "Stærðarhlutfall"
 
+msgid "Aspect ratio"
+msgstr "Stærðar hlutfall"
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Merkja sendendur/rásir/caids til að nota CI einingu"
 
@@ -853,6 +874,9 @@ msgstr "Hljóð"
 msgid "Audio Options..."
 msgstr "Hljóð stillingar..."
 
+msgid "Audio PID"
+msgstr "Hljóð PID"
+
 msgid "Audio Sync"
 msgstr "Hljóð tími"
 
@@ -909,6 +933,15 @@ msgstr ""
 "Sjálfvirk tímataka leita í EPG og bætir við upptökum eftir þeim "
 "leitarskilyrðum sem notandi slær inn."
 
+msgid "AutoTimer was added successfully"
+msgstr "Tókst að bæta við sjálfvirkum tímastillingum."
+
+msgid "AutoTimer was changed successfully"
+msgstr "Tókst að breyta sjálfvirkri tímastillingu"
+
+msgid "AutoTimer was removed"
+msgstr "Sjálfvirk upptaka var tekin út"
+
 msgid "Automatic"
 msgstr "Sjálfvirkt"
 
@@ -943,6 +976,26 @@ msgstr "Uppfærir EPG sjálfvirkt"
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr "Sendir sjálfvirkt hrunskýrslur til Dream Multimedia"
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+"Prufuhamur Sjálfvirkrar upplausnar:\n"
+"Er þetta í lagi (%s)?"
+
+msgid "Autoresolution Switch"
+msgstr "Sjálfvirk upplausn"
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Sjálfvirk upplausn virkar ekki með Scart/DVI-PC ham"
+
+msgid "Autoresolution settings"
+msgstr "Stillingar Sjálfvirkrar upplausnar"
+
+msgid "Autoresolution videomode setup"
+msgstr "Uppsetning sjálfvirkrar upplausnar"
+
 msgid "Autos & Vehicles"
 msgstr "Bílar og farartæki"
 
@@ -976,6 +1029,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Til baka"
 
+msgid "Back, lower USB Slot"
+msgstr "Neðra USB tengi, aftaná"
+
+msgid "Back, upper USB Slot"
+msgstr "Efra USB tengi, aftaná"
+
 msgid "Background"
 msgstr "Bakgrunnur"
 
@@ -1048,6 +1107,12 @@ msgstr "Brasilía"
 msgid "Brightness"
 msgstr "Birta"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+"Skoða ORF og SAT1 Textavarp án tenginar við rás. Þetta þarf I-net tengingu."
+
 msgid "Browse for and connect to network shares"
 msgstr "Leita að og tengjast við samnýtt gögn á netinu"
 
@@ -1073,6 +1138,22 @@ msgid "Bus: "
 msgstr "Rás:"
 
 msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+"Með því að virkja þetta þá munu atriði ekki vera valin ef þau eru ekki á "
+"ákveðnum dögum."
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+"Ef þetta er valið þá ertu látinn vita um árekstra á milli atriða jafnóðum og "
+"þau finnast en ekki er athugað ef þau komi fyrir aftur og aftur. Varað er "
+"við árekstrum jafnóðum og þeir koma fram."
+
+msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
 "displayed."
 msgstr ""
@@ -1156,13 +1237,13 @@ msgid "Change pin code"
 msgstr "Breyta aðgangskóða"
 
 msgid "Change service PIN"
-msgstr ""
+msgstr "Breyta aðgangsorði fyrir rásir"
 
 msgid "Change service PINs"
-msgstr ""
+msgstr "Breyta aðgangsorðum fyrir rásir"
 
 msgid "Change setup PIN"
-msgstr ""
+msgstr "Breyta aðgangsorði fyrir uppsetningu"
 
 msgid "Change step size"
 msgstr "Breyta skrefa stærð"
@@ -1255,10 +1336,10 @@ msgid "Cleanup Wizard settings"
 msgstr "Stillingar tiltektar ráðgjafa"
 
 msgid "Cleanup timerlist automatically"
-msgstr ""
+msgstr "Hreinsa tímalista sjálfvirkt"
 
 msgid "Cleanup timerlist automatically."
-msgstr ""
+msgstr "Hreinsa tímalista sjálfvirkt."
 
 msgid "CleanupWizard"
 msgstr "Tiltektar ráðgjafi"
@@ -1284,17 +1365,11 @@ msgstr "Loka og vista breytingar"
 msgid "Close title selection"
 msgstr "Loka titils vali"
 
-msgid "Code rate high"
-msgstr "Gagna hraði, hár"
-
-msgid "Code rate low"
-msgstr "Gagna hraði, lár"
-
-msgid "Coderate HP"
-msgstr "Gagnahraði HP"
+msgid "Code rate HP"
+msgstr "Bitahraði HP"
 
-msgid "Coderate LP"
-msgstr "Gagnahraði LP"
+msgid "Code rate LP"
+msgstr "Bitahraði LP"
 
 msgid "Collection name"
 msgstr "Nafn safns"
@@ -1357,7 +1432,7 @@ msgid "Configure nameservers"
 msgstr "Stilla nafnaþjón"
 
 msgid "Configure your WLAN network interface"
-msgstr ""
+msgstr "Stilla WLAN netkort"
 
 msgid "Configure your internal LAN"
 msgstr "Stilla innbyggt netkort"
@@ -1406,28 +1481,28 @@ msgid "Contrast"
 msgstr "Skerpa"
 
 msgid "Control your Dreambox with your Web browser."
-msgstr ""
+msgstr "Stjórna Dreamboxinu þínu með vef vafra."
 
 msgid "Control your Dreambox with your browser"
-msgstr ""
+msgstr "Stjórna Dreamboxinu þínu með vef vafra"
 
 msgid "Control your dreambox with only the MUTE button"
-msgstr ""
+msgstr "Stjórna Dreamboxinu bara með MUTE takka"
 
 msgid "Control your dreambox with only the MUTE button."
-msgstr ""
+msgstr "Stjórna Dreamboxinu bara með MUTE takka."
 
 msgid "Control your internal system fan."
-msgstr ""
+msgstr "Stjórna viftunni í móttakaranum."
 
 msgid "Control your kids's tv usage"
-msgstr ""
+msgstr "Stjórna sjónvarps notkun barnanna"
 
 msgid "Control your system fan"
-msgstr ""
+msgstr "Stjórna viftunni í móttakaranum"
 
 msgid "Copy, rename, delete, move local files on your Dreambox."
-msgstr ""
+msgstr "Afrita, endurnefna, eyða og færa skrár á Dreamboxinu."
 
 msgid "Could not connect to Dreambox .NFI Image Feed Server:"
 msgstr "Gat ekki tengt við Dreambox .NFI stýrikerfis vefþjón:"
@@ -1442,6 +1517,10 @@ msgstr "Gat ekki opnað mynd í mynd"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Gat ekki tekið upp vegna skörunar á tímastillingum %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr "Gat ekki tekið upp vegna þess að rásin %s er ekki í lagi"
+
 msgid "Crashlog settings"
 msgstr "Hrunskýrslu stillingar"
 
@@ -1465,10 +1544,10 @@ msgid "Create DVD-ISO"
 msgstr "Búa til DVD-ISO"
 
 msgid "Create a backup of your Video DVD on your DreamBox hard drive."
-msgstr ""
+msgstr "Taka afrit af DVD disknum yfir á harða diskinn."
 
 msgid "Create a backup of your Video-DVD"
-msgstr ""
+msgstr "Taka afrit af DVD diskunum þínum"
 
 msgid "Create a new AutoTimer."
 msgstr "Búa til nýjan sjálfvirka tíma stillingu."
@@ -1483,13 +1562,13 @@ msgid "Create movie folder failed"
 msgstr "Tókst ekki að búa til bíómyndamöppu"
 
 msgid "Create preview pictures of your Movies"
-msgstr ""
+msgstr "Búa til forsýn af bíómyndum þínum"
 
 msgid "Create remote timers"
-msgstr ""
+msgstr "Búa til fjarstýriðar tímastillingar"
 
 msgid "Create timers on remote Dreamboxes."
-msgstr ""
+msgstr "Búa til tímastillingar á öðrum Dreamboxum"
 
 #, python-format
 msgid "Creating directory %s failed."
@@ -1542,22 +1621,22 @@ msgid "Customize"
 msgstr "Aðrar stillingar"
 
 msgid "Customize Vali-XD skins"
-msgstr ""
+msgstr "Stillingar Vali-XD skinna"
 
 msgid "Customize Vali-XD skins by yourself."
-msgstr ""
+msgstr "Hér getur þú stillt Vali-XD skinnið."
 
 msgid "Cut"
 msgstr "Klippa"
 
 msgid "Cut your movies"
-msgstr ""
+msgstr "Klippa bíómyndirnar"
 
 msgid "Cut your movies."
-msgstr ""
+msgstr "Klippa bíómyndirnar."
 
 msgid "CutListEditor allows you to edit your movies"
-msgstr ""
+msgstr "Klippistjórinn gerir þér mögulegt að klippa til bíómyndirnar"
 
 msgid ""
 "CutListEditor allows you to edit your movies.\n"
@@ -1565,6 +1644,11 @@ msgid ""
 "cut'.\n"
 "Then seek to the end, press OK, select 'end cut'. That's it."
 msgstr ""
+"Klippistjórinn gerir mögulegt að klippa bíómyndirnar.\n"
+"Farðu á byrjun þess sem að þú vilt klippa burtu, ýttu á OK og veldu 'byrja "
+"klippingu'.\n"
+"Farðu svo að enda þess sem á að klippa burtu og ýttu á OK og veldu 'enda "
+"klippingu'."
 
 msgid "Cutlist editor..."
 msgstr "Klippingastjóri..."
@@ -1591,6 +1675,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr "DVD drif"
+
 msgid "DVD File Browser"
 msgstr "DVD skráar stjóri"
 
@@ -1607,13 +1694,16 @@ msgid "DVD media toolbox"
 msgstr "DVD miðla tól"
 
 msgid "DVDPlayer plays your DVDs on your Dreambox"
-msgstr ""
+msgstr "DVD spilari spilar DVD diska á Dreamboxinu"
 
 msgid ""
 "DVDPlayer plays your DVDs on your Dreambox.\n"
 "With the DVDPlayer you can play your DVDs on your Dreambox from a DVD or "
 "even from an iso file or video_ts folder on your harddisc or network."
 msgstr ""
+"DVD spilari spilar DVD diska á Dreamboxinu.\n"
+"Með DVD spilaranum getur þú spilað DVD diska og einnig ISO skrár frá harða "
+"diskinum þínum eða video_ts möppur af harða disknum eða netinu."
 
 #
 msgid "Danish"
@@ -1664,15 +1754,24 @@ msgid "Defaults"
 msgstr "Venjulegt"
 
 msgid "Define a startup service"
-msgstr ""
+msgstr "Velja þjónustu sem starta á"
 
 msgid "Define a startup service for your Dreambox."
-msgstr ""
+msgstr "Velja þjónustu sem starta á við ræsingu."
+
+msgid "Deinterlacer mode for interlaced content"
+msgstr "Heilskönnunar hamur fyrir fléttuskannað efni"
+
+msgid "Deinterlacer mode for progressive content"
+msgstr "Fléttuskönnunar hamur fyrir heilskannað efni"
 
 #
 msgid "Delay"
 msgstr "Seinkun"
 
+msgid "Delay x seconds after service started"
+msgstr "Seinkun x sekúndur eftir að sýning byrjar"
+
 #
 msgid "Delete"
 msgstr "Eyða"
@@ -1713,7 +1812,7 @@ msgid "Deselect"
 msgstr "Ekki velja"
 
 msgid "Details for plugin: "
-msgstr ""
+msgstr "Upplýsingar um íforrit:"
 
 #
 msgid "Detected HDD:"
@@ -1759,7 +1858,7 @@ msgid "Dir:"
 msgstr "Mappa:"
 
 msgid "Direct playback of Youtube videos"
-msgstr ""
+msgstr "Bein afspilun af Youtube myndböndum"
 
 #
 msgid "Direct playback of linked titles without menu"
@@ -1832,10 +1931,10 @@ msgid "Display search results by:"
 msgstr "Sýna útkomu leitar sem:"
 
 msgid "Display your photos on the TV"
-msgstr ""
+msgstr "Sýna myndirnar þínar á skjánum"
 
 msgid "Displays movie information from the InternetMovieDatabase"
-msgstr ""
+msgstr "Sýna upplýsingar um bíómyndina frá gagnagrunni af internetinu"
 
 #, python-format
 msgid ""
@@ -1853,6 +1952,14 @@ msgstr ""
 "Viltu örugglega athuga skráarkerfi?\n"
 "Það tekur langan tíma!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+"Viltu örugglega eyða %s\n"
+"%s?"
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2009,7 +2116,7 @@ msgid "Download Video"
 msgstr "Haða niður bíómyndum"
 
 msgid "Download files from Rapidshare"
-msgstr ""
+msgstr "Hlaða niður skrám frá Rapidshare"
 
 msgid "Download location"
 msgstr "Niðurhals staður"
@@ -2037,6 +2144,13 @@ msgstr "Dreambox gagna formaður DVD diskur (HDTV samhæfður)"
 msgid "Dreambox software because updates are available."
 msgstr "Hugbúnaður uppfærslur eru tiltækar fyrir Dreamboxið."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+"Rekill fyrir þráðlaust USB netkort byggt á Ralink RT8070/RT3070/RT3370."
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr "Rekill fyrir þráðlaust USB netkort byggt á  Realtek r8712u."
+
 msgid "Duration: "
 msgstr "Lengd:"
 
@@ -2064,6 +2178,10 @@ msgid ""
 "(in standby mode without any running recordings) to perform updates of the "
 "epg information on these channels."
 msgstr ""
+"EPGHressing mun skipta yfir á rás sem að notandi stillir ef að móttakarinn "
+"er ónotaður\n"
+"(í biðstöðu ef upptaka er ekki í gangi) til að uppfæra EPG upplýsingar á "
+"þessum rásum."
 
 #, python-format
 msgid "ERROR - failed to scan (%s)!"
@@ -2118,10 +2236,10 @@ msgid "Edit settings"
 msgstr "Breyta stillingum"
 
 msgid "Edit tags of recorded movies"
-msgstr ""
+msgstr "Breyta merki á uppteknum bíómyndum"
 
 msgid "Edit tags of recorded movies."
-msgstr ""
+msgstr "Breyta merki á uppteknum bíómyndum."
 
 #
 msgid "Edit the Nameserver configuration of your Dreambox.\n"
@@ -2152,7 +2270,7 @@ msgid "Electronic Program Guide"
 msgstr "Rafrænn dagskrárstjóri (EPG)"
 
 msgid "Emailclient is an IMAP4 e-mail viewer for the Dreambox."
-msgstr ""
+msgstr "Emailclient er IMAP4 póst skoðari fyrir Dreambox."
 
 #
 msgid "Enable"
@@ -2161,10 +2279,25 @@ msgstr "Virkja"
 msgid "Enable /media"
 msgstr "Virkja /media"
 
+msgid "Enable 1080p24 Mode"
+msgstr "Virkja 1080p24 ham"
+
+msgid "Enable 1080p25 Mode"
+msgstr "Virkja 1080p25 ham"
+
+msgid "Enable 1080p30 Mode"
+msgstr "Virkja 1080p30 ham"
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Kveikja á 5V fyrir loftnet með magnara"
 
+msgid "Enable 720p24 Mode"
+msgstr "Virkja 720p24 ham"
+
+msgid "Enable Autoresolution"
+msgstr "Virkja sjálfvirka upplausn"
+
 msgid "Enable Cleanup Wizard?"
 msgstr "Virkja hreinsi ráðgjafa?"
 
@@ -2262,6 +2395,9 @@ msgid ""
 "Enigma2 Plugin to play AVI/DIVX/WMV/etc. videos from PC on your Dreambox. "
 "Needs a running VLC from www.videolan.org on your pc."
 msgstr ""
+"Enigma2 íforrit til að spila AVI/DIVX/WMV og fleiri myndir frá PC tölvu á "
+"Dreamboxinu. Þarf að hafa VLC spilara keyrandi frá www.videolan.org á "
+"tölvunni þinni."
 
 #
 msgid ""
@@ -2279,18 +2415,10 @@ msgstr ""
 "\n"
 "© 2006 - Stephan Reichholf"
 
-#
-msgid "Enter Fast Forward at speed"
-msgstr "Hraðspólunar hraði áfram, fyrst"
-
 msgid "Enter IP to scan..."
 msgstr "Sláðu inn IP til að leita..."
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Hraðspólunar hraði til baka, fyrst"
-
-#
 msgid "Enter main menu..."
 msgstr "Fara í aðal valmynd..."
 
@@ -2351,6 +2479,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Eistneska"
 
+msgid "Ethernet network interface"
+msgstr "Ethernet netkort"
+
 #
 msgid "Eventview"
 msgstr "Skoða atriði"
@@ -2372,7 +2503,7 @@ msgid "Execute \"after event\" during timespan"
 msgstr "Keyra \"eftir atriði\" innan tímamarka"
 
 msgid "Execute TuxboxPlugins"
-msgstr ""
+msgstr "Keyra Tuxbox Íforrit"
 
 #
 msgid "Execution Progress:"
@@ -2439,6 +2570,8 @@ msgid ""
 "FTPBrowser allows uploading and downloading files between your Dreambox and "
 "a server using the file transfer protocol."
 msgstr ""
+"FTPBrowser gerir mögulegt að hlaða upp og niður skrám frá Dreamboxinu þínu "
+"til vefþjóns með því að nota FTP staðal."
 
 #
 msgid "Factory reset"
@@ -2530,8 +2663,15 @@ msgstr "Búið að endurræsa netkerfið"
 msgid "Finnish"
 msgstr "Finnska"
 
-msgid "First generate your skin-style with the Ai.HD-Control plugin."
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
 msgstr ""
+"Fyrsti dagur til að skoða atriði. Engin atriði sem að passa fyrir þessa "
+"dagsetningu verða skoðuð."
+
+msgid "First generate your skin-style with the Ai.HD-Control plugin."
+msgstr "Fyrst þarf að búa til skinn stíl þinn með Ai.HD-Control íforritinu."
 
 #
 msgid "Flash"
@@ -2551,14 +2691,19 @@ msgstr "Forma"
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+"Fann samtals %d passandi atriði.\n"
+"%d atriðum var bætt við tímastillingar og %d var breytt. %d skaranir fundust."
+
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
 "%d Timer were added and %d modified."
 msgstr ""
 "Fann samtals %d passandi atriði.\n"
 "%d tímastillingar verða bætt við og %d breytt."
 
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Fjöldi ramma sem á að sleppa við hraðspólun"
-
 #
 msgid "Frame size in full view"
 msgstr "Stærð ramma í fullri stærð"
@@ -2600,8 +2745,11 @@ msgstr "Frísneska"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr "USB tengi að framan"
+
 msgid "Frontend for /tmp/mmi.socket"
-msgstr ""
+msgstr "Framhluti fyrir /tmp/mmi.socket"
 
 #
 #, python-format
@@ -2621,14 +2769,16 @@ msgstr ""
 "Viltu endurræsa gluggakerfi núna?"
 
 msgid "GUI that allows user to change the ftp- / telnet password."
-msgstr ""
+msgstr "Forrit til að breyta ftp og telnet aðgangsorði."
 
 msgid ""
 "GUI that allows user to change the ftp-/telnet-password of the Dreambox."
 msgstr ""
+"Forrit sem að gerir mögulegt að breyta ftp og telnet aðgangsorði á "
+"Dreamboxinu."
 
 msgid "GUI to change the ftp and telnet-password"
-msgstr ""
+msgstr "Forrit til að breyta ftp og telnet aðgangsorði"
 
 msgid "Gaming"
 msgstr "Leikir"
@@ -2651,6 +2801,9 @@ msgstr "Heildar PCM seinkun"
 msgid "General PCM delay (ms)"
 msgstr "Heildar PCM seinkun (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr "Býr til og sýnir mynd af öllum notendum sem hafa þetta íforrit uppsett"
+
 #
 msgid "Genre"
 msgstr "Gerð"
@@ -2662,23 +2815,23 @@ msgid "Genuine Dreambox validation failed!"
 msgstr "Staðfesting á að Dreamboxið er ósvikið tókst ekki!"
 
 msgid "Genuine Dreambox verification"
-msgstr ""
+msgstr "Staðfesting á því að þetta sé orginal Dreambox"
 
 #
 msgid "German"
 msgstr "Þýska"
 
 msgid "German storm information"
-msgstr ""
+msgstr "Þýsk stormviðvörun"
 
 msgid "German traffic information"
-msgstr ""
+msgstr "Umferðar upplýsingar fyrir Þýskaland"
 
 msgid "Germany"
 msgstr "Þýskaland"
 
 msgid "Get AudioCD info from CDDB and CD-Text"
-msgstr ""
+msgstr "Ná í AudioCD upplýsingum af CDDB og CD-Texta"
 
 msgid "Get latest experimental image"
 msgstr "Ná í nýjustu prufuútgáfu stýrikerfis"
@@ -2700,12 +2853,14 @@ msgid "Goto position"
 msgstr "Fara á staðsetningu"
 
 msgid "GraphMultiEPG shows a graphical timeline EPG"
-msgstr ""
+msgstr "GraphMultiEPG sýnir myndræna framsetningu á EPG"
 
 msgid ""
 "GraphMultiEPG shows a graphical timeline EPG.\n"
 "Shows a nice overview of all running und upcoming tv shows."
 msgstr ""
+"GraphMultiEPG sýnir myndræna framsetningu á EPG.\n"
+"Sýnir á skemmtilegan hátt atriði í gangi og komandi atriði."
 
 #
 msgid "Graphical Multi EPG"
@@ -2723,22 +2878,26 @@ msgid "Green boost"
 msgstr "Auka grænan"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
+"Growlee gerir mögulegt að Dreamboxið sendi upplýsingar eins og 'Upptaka "
+"hófst' til tölvu sem keyrir growl, snarl eða syslog samhæft tæki eða beint í "
+"iPhone sem notar prowl."
 
-#
-msgid "Guard Interval"
-msgstr "Guard Interval"
-
-#
-msgid "Guard interval mode"
-msgstr "Guard millibils hamur"
+msgid "Guard interval"
+msgstr "Guard interval"
 
 msgid "Guess existing timer based on begin/end"
 msgstr "Giska á núverandi tímastillingu grundvallað á byrjun og enda"
 
+msgid "HD Interlace Mode"
+msgstr "HD fléttuskönnun"
+
+msgid "HD Progressive Mode"
+msgstr "HD heildarskönnun"
+
 msgid "HD videos"
 msgstr "HD myndir"
 
@@ -2763,6 +2922,9 @@ msgstr "Harði diskur í biðstöðu eftir"
 msgid "Help"
 msgstr "Hjálp"
 
+msgid "Hidden network"
+msgstr "Falið netkerfi"
+
 #
 msgid "Hidden network SSID"
 msgstr "Falið netkerfis SSID"
@@ -2770,12 +2932,8 @@ msgstr "Falið netkerfis SSID"
 msgid "Hidden networkname"
 msgstr "Falið nafn á netkerfi"
 
-#
-msgid "Hierarchy Information"
-msgstr "Stigskipta upplýsingar"
-
-msgid "Hierarchy mode"
-msgstr "Stigskipta hamur"
+msgid "Hierarchy info"
+msgstr "Hierarchy upplýsingar"
 
 #
 msgid "High bitrate support"
@@ -2795,7 +2953,7 @@ msgid "Horizontal"
 msgstr "Lárétt"
 
 msgid "Hotplugging for removeable devices"
-msgstr ""
+msgstr "Tenging með tæki í gangi fyrir aftengjanleg tæki"
 
 #
 msgid "How many minutes do you want to record?"
@@ -2817,7 +2975,7 @@ msgid "Hungarian"
 msgstr "Ungverska"
 
 msgid "IMAP4 e-mail viewer for the Dreambox"
-msgstr ""
+msgstr "IMAP4 póstskoðari fyrir Dreambox"
 
 #
 msgid "IP Address"
@@ -2827,7 +2985,7 @@ msgid "IP:"
 msgstr "IP:"
 
 msgid "IRC Client for Enigma2"
-msgstr ""
+msgstr "IRC notandi fyrir Enigma2"
 
 #
 msgid "ISO file is too large for this filesystem!"
@@ -2844,10 +3002,10 @@ msgstr "Íslenska"
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"Ef þetta er virkt þá mun núverandi tímastilling vera líka skoðuð sem upptaka "
-"er atriði er allavega 80% tekið upp."
+"Ef þetta er virkt þá munu tímastilltar upptökur líka verða skoðaðar sem "
+"upptaka í gangi ef það tekur upp allavega 80%% af efninu."
 
 #
 msgid ""
@@ -2941,6 +3099,12 @@ msgstr "Upplýsingar"
 msgid "Init"
 msgstr "Stilli"
 
+msgid "Initial Fast Forward speed"
+msgstr "Byrjunar hraði hraðspólunar áfram"
+
+msgid "Initial Rewind speed"
+msgstr "Byrjunar hraði hraðspólunar afturábak"
+
 msgid "Initial location in new timers"
 msgstr "Sjálfgefin staður í nýjum tímastillingum"
 
@@ -3033,8 +3197,11 @@ msgstr "Innra Flash minni"
 msgid "Internal LAN adapter."
 msgstr "Innbyggt netkort."
 
+msgid "Internal USB Slot"
+msgstr "Innra USB tengi"
+
 msgid "Internal firmware updater"
-msgstr ""
+msgstr "Innri hugbúnaðar uppfærsla"
 
 #
 msgid "Invalid Location"
@@ -3098,10 +3265,10 @@ msgid "Italian"
 msgstr "Ítalska"
 
 msgid "Italian Weather forecast on Dreambox"
-msgstr ""
+msgstr "Ítölsk veðurspá á Dreamboxið"
 
 msgid "Italian Weather forecast on Dreambox from www.google.it."
-msgstr ""
+msgstr "Ítölsk veðurspá á Dreamboxið frá www.google.it"
 
 msgid "Italy"
 msgstr "Ítalía"
@@ -3119,49 +3286,49 @@ msgid "Just Scale"
 msgstr "Bara full mynd"
 
 msgid "Kerni's BrushedAlu-HD skin"
-msgstr ""
+msgstr "Skinn frá Kerni BrushedAlu-HD"
 
 msgid "Kerni's DreamMM-HD skin"
-msgstr ""
+msgstr "Skinn frá Kerni, DreamMM-HD"
 
 msgid "Kerni's Elgato-HD skin"
-msgstr ""
+msgstr "Skinn frá Kerni, Elgato-HD"
 
 msgid "Kerni's SWAIN skin"
-msgstr ""
+msgstr "Skinn frá Kerni, SWAIN"
 
 msgid "Kerni's SWAIN-HD skin"
-msgstr ""
+msgstr "Skinn frá Kerni, SWAIN-HD"
 
 msgid "Kerni's UltraViolet skin"
-msgstr ""
+msgstr "Skinn frá Kerni, UltraViolet"
 
 msgid "Kerni's YADS-HD skin"
-msgstr ""
+msgstr "Skinn frá Kerni, YADS-HD"
 
 msgid "Kerni's dTV-HD skin"
-msgstr ""
+msgstr "Skinn frá Kerni, dTV-HD"
 
 msgid "Kerni's dTV-HD-Reloaded skin"
-msgstr ""
+msgstr "Skinn frá Kerni, dTV-HD-Reloaded"
 
 msgid "Kerni's dmm-HD skin"
-msgstr ""
+msgstr "Skinn frá Kerni, dmm-HD"
 
 msgid "Kerni's dreamTV-HD skin"
-msgstr ""
+msgstr "Skinn frá Kerni, dreamTV-HD"
 
 msgid "Kerni's simple skin"
-msgstr ""
+msgstr "Skinn frá Kerni, simple"
 
 msgid "Kerni-HD1 skin"
-msgstr ""
+msgstr "Kerni-HD1 skinn"
 
 msgid "Kerni-HD1R2 skin"
-msgstr ""
+msgstr "Kerni-HD1R2 skinn"
 
 msgid "Kernis HD1 skin"
-msgstr ""
+msgstr "Kerni HD1 skinn"
 
 #, python-format
 msgid "Key %(Key)s successfully set to %(delay)i ms"
@@ -3188,7 +3355,7 @@ msgid "Keymap"
 msgstr "Lyklaborðsstilling"
 
 msgid "KiddyTimer allows to control your kids's daily tv usage."
-msgstr ""
+msgstr "KiddyTimer stjórnar því hve mikið barnið horfir á sjónvaroið á dag."
 
 #
 msgid "LAN Adapter"
@@ -3225,6 +3392,13 @@ msgstr "Val tungumáls"
 msgid "Last config"
 msgstr "Síðasta stilling"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+"Síðasti dagur til að athuga með atriði. Atriði sem passa fyrir þessa "
+"dagsetningu verða notuð."
+
 #
 msgid "Last speed"
 msgstr "Síðasti hraði"
@@ -3281,14 +3455,17 @@ msgstr "Tenging:"
 msgid "Linked titles with a DVD menu"
 msgstr "Tengdir titlar við DVD valmynd"
 
+msgid "List available networks"
+msgstr "Sýna netkerfi í boði"
+
 msgid "List of Storage Devices"
 msgstr "Listi geymslu tækja"
 
 msgid "Listen and record internet radio"
-msgstr ""
+msgstr "Hlusta á og taka upp netútvarp"
 
 msgid "Listen and record shoutcast internet radio on your Dreambox."
-msgstr ""
+msgstr "Hlusta á og taka upp shoutcast netútvarp á Dreamboxið."
 
 #
 msgid "Lithuanian"
@@ -3382,13 +3559,13 @@ msgid "Manage extensions"
 msgstr "Sýsla með íforrit"
 
 msgid "Manage local files"
-msgstr ""
+msgstr "Halda utanum skrár á móttakara"
 
 msgid "Manage logos to display at boot time or while in radio mode."
-msgstr ""
+msgstr "Sýsla með myndir við ræsingu og í útvarps ham."
 
 msgid "Manage logos to display at boottime"
-msgstr ""
+msgstr "Sýsla með myndir við ræsingu"
 
 msgid "Manage network shares"
 msgstr "Sýsla með net tengingar"
@@ -3396,6 +3573,7 @@ msgstr "Sýsla með net tengingar"
 msgid ""
 "Manage your music files in a database, play it with Merlin Music Player."
 msgstr ""
+"Sýsla með tónlist í gagnagrunni og spila hana með Merlin tónlistar spilara."
 
 msgid "Manage your network shares..."
 msgstr "Sýsla með net tengingar..."
@@ -3408,6 +3586,9 @@ msgstr "Stjórna hugbúnaði móttakarans"
 msgid "Manual Scan"
 msgstr "Handvirk leitun"
 
+msgid "Manual configuration"
+msgstr "Handvirk stilling"
+
 #
 msgid "Manual transponder"
 msgstr "Handvirk leit á sendi"
@@ -3460,12 +3641,17 @@ msgid ""
 "MediaScanner scans devices for playable media files and displays a menu with "
 "possible actions like viewing pictures or playing movies."
 msgstr ""
+"MediaLeit leitar að öllum spilanlegum skrám, sýnir valmynd með mögulegur "
+"aðgerðum svo sem að sýna myndir eða spila bíómyndir."
 
 msgid ""
 "Mediaplayer plays your favorite music and videos.\n"
 "Play all your favorite music and video files, organize them in playlists, "
 "view cover and album information."
 msgstr ""
+"Spilari spilar uppáhaldstónlistina og bíómyndirnar þínar.\n"
+"Spilar alla uppáhalds tónlist og bíóyndir, búa til spilunarlista, skoða "
+"albúmin og upplýsingar um plöturnar."
 
 #
 msgid "Medium is not a writeable DVD!"
@@ -3480,7 +3666,7 @@ msgid "Menu"
 msgstr "Valmynd"
 
 msgid "Merlin Music Player and iDream"
-msgstr ""
+msgstr "Merlin spilarin og iDream"
 
 #
 msgid "Message"
@@ -3637,10 +3823,10 @@ msgid "Move west"
 msgstr "Færa vestur"
 
 msgid "Movie information from the Online Film Datenbank (German)."
-msgstr ""
+msgstr "Bíómynda upplýsingar frá gagnabanka af netinu (Þýskur)."
 
 msgid "Movie informations from the Online Film Datenbank"
-msgstr ""
+msgstr "Bíómynda upplýsingar frá gagnabanka af netinu"
 
 msgid "Movie location"
 msgstr "Staðsetning bíómynda"
@@ -3648,11 +3834,14 @@ msgstr "Staðsetning bíómynda"
 msgid ""
 "MovieTagger adds tags to recorded movies to sort a large list of movies."
 msgstr ""
+"MovieTagger bætir við merki við uppteknar bíómyndir til að flokka myndirnar."
 
 msgid ""
 "Movielist Preview creates screenshots of recordings and shows them inside "
 "the movielist."
 msgstr ""
+"Forskoðum bíómynda býr til kyrrmynd af uppteknum bíómyndum og sýnir þær í "
+"bíómynda listanum."
 
 #
 msgid "Movielist menu"
@@ -3662,6 +3851,9 @@ msgstr "Bíómynda valmynd"
 msgid "Multi EPG"
 msgstr "Mörg EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr "Mörg-EPG rásavanda val"
+
 #
 msgid "Multimedia"
 msgstr "Margmiðlun"
@@ -3670,6 +3862,9 @@ msgstr "Margmiðlun"
 msgid "Multiple service support"
 msgstr "Styður margar rásir"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Margir gervihnettir"
@@ -3713,6 +3908,8 @@ msgid ""
 "NCID Client shows incoming voice calls promoted by any NCID server (e.g. "
 "Vodafone Easybox) on your Dreambox."
 msgstr ""
+"NCID þjónn sýnir ef að síminn hringir frá einhverjum NCID vefþjón (s.s. "
+"Vodafone Easybox) á Dreamboxinu."
 
 #
 msgid "NEXT"
@@ -3728,6 +3925,9 @@ msgstr "NFI forritun er lokið. Ýttu á gulan til að endurræsa!"
 msgid "NFS share"
 msgstr "NFS samnýting"
 
+msgid "NIM"
+msgstr "NIM"
+
 #
 msgid "NOW"
 msgstr "NÚNA"
@@ -3757,101 +3957,104 @@ msgstr "Uppsetning nafnaþjóns"
 msgid "Nameserver settings"
 msgstr "Uppsetning nafnaþjóns"
 
+msgid "Namespace"
+msgstr "Nafnabox"
+
 msgid "Nemesis BlackBox Skin"
-msgstr ""
+msgstr "Nemesis BlackBox Skinn"
 
 msgid "Nemesis BlackBox Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis BlackBox Skinn fyrir Dreamboxið"
 
 msgid "Nemesis Blueline Single Skin"
-msgstr ""
+msgstr "Nemesis Blueline Single Skinn"
 
 msgid "Nemesis Blueline Single Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Blueline Single Skinn fyrir Dreamboxið"
 
 msgid "Nemesis Blueline Skin"
-msgstr ""
+msgstr "Nemesis Blueline Skinn"
 
 msgid "Nemesis Blueline Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Blueline Skinn fyrir Dreamboxið"
 
 msgid "Nemesis Blueline.Extended Skin"
-msgstr ""
+msgstr "Nemesis Blueline.Extended Skinn"
 
 msgid "Nemesis Blueline.Extended Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Blueline.Extended Skinn fyrir Dreamboxið"
 
 msgid "Nemesis ChromeLine Cobolt Skin"
-msgstr ""
+msgstr "Nemesis ChromeLine Cobolt Skinn"
 
 msgid "Nemesis ChromeLine Cobolt Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis ChromeLine Cobolt Skinn fyrir Dreamboxið"
 
 msgid "Nemesis ChromeLine Skin"
-msgstr ""
+msgstr "Nemesis ChromeLine Skinn"
 
 msgid "Nemesis ChromeLine Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis ChromeLine Skinn fyrir Dreamboxið"
 
 msgid "Nemesis Flatline Blue Skin"
-msgstr ""
+msgstr "Nemesis Flatline Blue Skinn"
 
 msgid "Nemesis Flatline Blue Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Flatline Blue Skinn fyrir Dreamboxið"
 
 msgid "Nemesis Flatline Skin"
-msgstr ""
+msgstr "Nemesis Flatline Skinn"
 
 msgid "Nemesis Flatline Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Flatline Skinn fyrir Dreamboxið"
 
 msgid "Nemesis GlassLine Skin"
-msgstr ""
+msgstr "Nemesis GlassLine Skinn"
 
 msgid "Nemesis GlassLine Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis GlassLine Skinn fyrir Dreamboxið"
 
 msgid "Nemesis Greenline Extended Skin"
-msgstr ""
+msgstr "Nemesis Greenline Extended Skinn"
 
 msgid "Nemesis Greenline Extended Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greenline Extended Skinn fyrir Dreamboxið"
 
 msgid "Nemesis Greenline Single Skin"
-msgstr ""
+msgstr "Nemesis Greenline Single Skinn"
 
 msgid "Nemesis Greenline Single Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greenline Single Skinn fyrir Dreamboxið"
 
 msgid "Nemesis Greenline Skin"
-msgstr ""
+msgstr "Nemesis Greenline Skinn"
 
 msgid "Nemesis Greenline Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greenline Skinn fyrir Dreamboxið"
 
 msgid "Nemesis Greyline Extended Skin"
-msgstr ""
+msgstr "Nemesis Greyline Extended Skinn"
 
 msgid "Nemesis Greyline Extended Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greyline Extended Skinn fyrir Dreamboxið"
 
 msgid "Nemesis Greyline Single Skin"
-msgstr ""
+msgstr "Nemesis Greyline Single Skinn"
 
 msgid "Nemesis Greyline Single Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greyline Single Skinn fyrir Dreamboxið"
 
 msgid "Nemesis Greyline Skin"
-msgstr ""
+msgstr "Nemesis Greyline Skinn"
 
 msgid "Nemesis Greyline Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greyline Skinn fyrir Dreamboxið"
 
 msgid "Nemesis ShadowLine Skin"
-msgstr ""
+msgstr "Nemesis ShadowLine Skinn"
 
 msgid "Nemesis ShadowLine Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis ShadowLine Skinn fyrir Dreamboxið"
 
 #
 msgid "Netmask"
@@ -3909,6 +4112,9 @@ msgstr "Netkerfis vafri"
 msgid "NetworkWizard"
 msgstr "Nettengi ráðgjafi"
 
+msgid "Networkname (SSID)"
+msgstr "Netkerfis nafn (SSID)"
+
 msgid "Never"
 msgstr "Aldrei"
 
@@ -3917,7 +4123,7 @@ msgid "New"
 msgstr "Nýtt"
 
 msgid "New PIN"
-msgstr ""
+msgstr "Nýtt PIN númer"
 
 msgid "New Zealand"
 msgstr "Nýja Sjáland"
@@ -4067,6 +4273,9 @@ msgstr "Engar bíómyndir til að sýna"
 msgid "No wireless networks found! Please refresh."
 msgstr "Það fannst ekkert þráðlaust net! Reyndu aftur."
 
+msgid "No wireless networks found! Searching..."
+msgstr "Ekkert þráðlaust net fannst! Leita..."
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4155,6 +4364,12 @@ msgstr "Norður"
 msgid "Norwegian"
 msgstr "Norska"
 
+msgid "Not after"
+msgstr "Ekki eftir"
+
+msgid "Not before"
+msgstr "Ekki fyrir"
+
 #
 #, python-format
 msgid ""
@@ -4167,6 +4382,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Sæki ekki fæði rásir"
 
+msgid "Not-Associated"
+msgstr "Ekki tengt"
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4206,6 +4424,9 @@ msgstr "OK, eyða öðru íforriti"
 msgid "OK, remove some extensions"
 msgstr "OK, eyða íforritum"
 
+msgid "ONID"
+msgstr "ONID"
+
 #
 msgid "OSD Settings"
 msgstr "Stilling valmynda"
@@ -4265,15 +4486,14 @@ msgstr "Opna íforrita valmynd"
 msgid "Optionally enter your name if you want to."
 msgstr "Settu inn nafn þitt ef að þú vilt."
 
-#
-msgid "Orbital Position"
-msgstr "Staðsetnging gervihnattar"
+msgid "Orbital position"
+msgstr "Staðsetning hnattar"
 
 msgid "Outer Bound (+/-)"
 msgstr "Ytri mörk (+/-)"
 
 msgid "Overlay for scrolling bars"
-msgstr ""
+msgstr "Yfirlag fyrir rúllandi borða"
 
 msgid "Override found with alternative service"
 msgstr "Önnur rás fannst í stað hunsaðar rásar"
@@ -4288,10 +4508,16 @@ msgstr "Skrifa yfir stillinga skrár við hugbúnaðar uppfærslu?"
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr "PCR PID"
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr "PMT PID"
+
 #
 msgid "Package list update"
 msgstr "Listi uppfærðra pakka"
@@ -4340,6 +4566,8 @@ msgid ""
 "Partnerbox allows editing a remote Dreambox's record timers and stream its "
 "TV  program."
 msgstr ""
+"Partnerbox gerir mögulegt að breyta tímastilltum upptökum á öðru Dreamboxi "
+"og streyma myndum þaðan."
 
 #
 msgid "Password"
@@ -4353,10 +4581,10 @@ msgid "People & Blogs"
 msgstr "Fólk & blogg"
 
 msgid "PermanentClock shows the clock permanently on the screen."
-msgstr ""
+msgstr "PermanentClock sýnir klukkuna alltaf á skjánum."
 
 msgid "Persian"
-msgstr ""
+msgstr "Persneska"
 
 msgid "Pets & Animals"
 msgstr "Dýralíf"
@@ -4406,10 +4634,10 @@ msgid "Play YouTube movies"
 msgstr "Spila YouTube myndbönd"
 
 msgid "Play music from Last.fm"
-msgstr ""
+msgstr "Spila tónlist frá Last.FM"
 
 msgid "Play music from Last.fm."
-msgstr ""
+msgstr "Spila tónlist frá Last.FM."
 
 msgid "Play next video"
 msgstr "Spila næstu bíómynd"
@@ -4421,19 +4649,19 @@ msgid "Play video again"
 msgstr "Spila bíómynd aftur"
 
 msgid "Play videos from PC on your Dreambox"
-msgstr ""
+msgstr "Spila bíómyndir frá tölvu á Dreamboxinu"
 
 msgid "Playback of Youtube through a PC"
-msgstr ""
+msgstr "Spila Youtube myndbönd í gegnum tölvuna þína"
 
 msgid "Player for Network and Internet Streams"
-msgstr ""
+msgstr "Spilari fyrir Netkerfi og Internet strauma"
 
 msgid "Player for Network and Internet Streams."
-msgstr ""
+msgstr "Spilari fyrir Netkerfi og Internet strauma."
 
 msgid "Plays your favorite music and videos"
-msgstr ""
+msgstr "Spilar uppáhalds tónlistina og bíómyndirnar þínar"
 
 #
 msgid "Please Reboot"
@@ -4449,6 +4677,8 @@ msgid ""
 "Please be aware, that anyone can disable the parental control, if you have "
 "not set a PIN."
 msgstr ""
+"Hafðu í huga að ef ekkert PIN númer er sett þá er hægt að slökkva á "
+"foreldralæsingunni."
 
 msgid "Please change recording endtime"
 msgstr "Vinsamlega breytið lokatíma upptöku"
@@ -4515,7 +4745,7 @@ msgid "Please enter the correct pin code"
 msgstr "Sláðu inn réttan kóða"
 
 msgid "Please enter the old PIN code"
-msgstr ""
+msgstr "Sláðu inn gamla PIN kóðann þinn"
 
 #
 msgid "Please enter your email address here:"
@@ -4712,16 +4942,12 @@ msgid "Plugins"
 msgstr "Íforrit"
 
 msgid "PodCast streams podcasts to your Dreambox."
-msgstr ""
+msgstr "PodCast strauma hlaðvarp í Dreamboxið þitt."
 
 msgid "Poland"
 msgstr "Pólland"
 
 #
-msgid "Polarity"
-msgstr "Pólun"
-
-#
 msgid "Polarization"
 msgstr "Pólun"
 
@@ -4755,6 +4981,9 @@ msgstr "Tengi D"
 msgid "Portuguese"
 msgstr "Portúgalska"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr "Staður lokinna tímastilltra upptaka í listanum"
+
 #
 msgid "Positioner"
 msgstr "Mótorstýring"
@@ -4776,7 +5005,7 @@ msgid "Positioner storage"
 msgstr "Vistun í staðsetjjara"
 
 msgid "PositionerSetup helps you installing a motorized dish"
-msgstr ""
+msgstr "Staðsetjara uppsetning hjálpar við að setja upp mótordrifinn disk"
 
 msgid ""
 "Power state to change to after recordings. Select \"standard\" to not change "
@@ -4887,10 +5116,10 @@ msgid "Preview menu"
 msgstr "Forskoða valmynd"
 
 msgid "Preview screenshots of running tv shows"
-msgstr ""
+msgstr "Forsýning frá sjónvarpsrásum í gangi"
 
 msgid "Preview screenshots of running tv shows."
-msgstr ""
+msgstr "Forsýning frá sjónvarpsrásum í gangi."
 
 #
 msgid "Primary DNS"
@@ -4936,7 +5165,7 @@ msgid "Python frontend for /tmp/mmi.socket"
 msgstr "Python framendi fyrir /tmp/mmi.socket"
 
 msgid "Python frontend for /tmp/mmi.socket."
-msgstr ""
+msgstr "Python hluti fyrir /tmp/mmi.socket."
 
 #
 msgid "Quick"
@@ -4959,7 +5188,10 @@ msgid "RGB"
 msgstr "RGB"
 
 msgid "RSS viewer"
-msgstr ""
+msgstr "RSS skoðari"
+
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr "Þráðlaust USB netkort byggt á RT8070/RT3070/RT3370"
 
 #
 msgid "Radio"
@@ -5021,10 +5253,10 @@ msgid "Reception Settings"
 msgstr "Stilling móttöku"
 
 msgid "Reconstruct .ap and .sc files"
-msgstr ""
+msgstr "Byggja upp .ap og .sc skrár"
 
 msgid "Reconstruct missing or corrupt .ap and .sc files of recorded movies."
-msgstr ""
+msgstr "Lagfæra eða búa til .ap og .sc skrár af uppteknum bíómyndum."
 
 #
 msgid "Record"
@@ -5064,8 +5296,11 @@ msgstr "Upptökur"
 msgid "Recordings always have priority"
 msgstr "Upptaka hefur alltaf forgang"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr "Áframsenda tilkynningar til Growl, Snarl, Prowl eða Syslog"
+
 msgid "Reenter new PIN"
-msgstr ""
+msgstr "Sláðu aftur inn nýtt PIN"
 
 #
 msgid "Refresh Rate"
@@ -5089,13 +5324,13 @@ msgid "Reload Black-/Whitelists"
 msgstr "Endurhlaða svart-/hvítlista"
 
 msgid "Remember service PIN"
-msgstr ""
+msgstr "Muna eftir PIN númeri rásar"
 
 msgid "Remember service PIN cancel"
-msgstr ""
+msgstr "Hætta að muna eftir PIN númeri rásar"
 
 msgid "Remote timer and remote TV player"
-msgstr ""
+msgstr "Fjarstýrð tímastillt upptaka og afspilun"
 
 #
 msgid "Remove"
@@ -5160,7 +5395,7 @@ msgid "Rename crashlogs"
 msgstr "Endurnefna hrunskýrslu"
 
 msgid "Rename your movies"
-msgstr ""
+msgstr "Endurnefna bíómyndirnar þínar"
 
 #
 msgid "Repeat"
@@ -5179,10 +5414,10 @@ msgid "Repeats"
 msgstr "Endurtekningar"
 
 msgid "Replace the minute input for the seek functions with a seekbar."
-msgstr ""
+msgstr "Breyta mínútu fjölda sem stökkva á við afspilun bíómynda."
 
 msgid "Replace the rewind  input with a seekbar"
-msgstr ""
+msgstr "Breyta mínútufjölda sem stökkva á til baka við afspilun"
 
 msgid "Require description to be unique"
 msgstr "Þarf lýsingu til að vera einstakt"
@@ -5267,11 +5502,14 @@ msgid "Restore system settings"
 msgstr "Setja inn kerfis stillingar"
 
 msgid "Restore your Dreambox with a USB stick"
-msgstr ""
+msgstr "Endurforrita Dreamboxið með USB staut"
 
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr "Binda \"eftir atriði\" að ákveðnu tímabili?"
 
+msgid "Restrict to events on certain dates"
+msgstr "Takmarka atriði við ákveðnar dagsetningar"
+
 #
 msgid "Resume from last position"
 msgstr "Halda áfram frá sama stað og síðast"
@@ -5311,9 +5549,8 @@ msgstr "Hraði hraðspólunar til baka"
 msgid "Right"
 msgstr "Hægri"
 
-#
-msgid "Rolloff"
-msgstr "Sníða af"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5323,6 +5560,9 @@ msgstr "Hraði mótors"
 msgid "Running"
 msgstr "Keyri"
 
+msgid "Running in testmode"
+msgstr "Keyri í prufu ham"
+
 msgid "Russia"
 msgstr "Rûssland"
 
@@ -5334,6 +5574,21 @@ msgstr "Rússneska"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr "SD 25/50HZ Fléttunar hamur"
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr "SD 25/50HZ Heilskönnunarhamur"
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr "SD 30/60HZ Fléttunar hamur"
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr "SD 30/60HZ Heilskönnunar hamur"
+
+msgid "SID"
+msgstr "SID"
+
 msgid "SINGLE LAYER DVD"
 msgstr "SINGLE LAYER DVD"
 
@@ -5349,6 +5604,26 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+"SVDPR er staðall hannaður fyrir VDR hugbúnað tl að stjórna móttökurum úr "
+"fjarlægð.\n"
+"Þetta ífforit styður hluta af SVDPR og ræsir sjálfvirkt með sjálfgefnum "
+"gildum.\n"
+"\n"
+"Þú þarft þetta sennilega ekki en ættir að nota venjulega Vef viðmótið til að "
+"stjórna Enigma2."
+
+msgid "SVDRP server for Enigma2"
+msgstr "SVDRP þjónn fyrir Enigma2"
+
 #
 msgid "Sat"
 msgstr "Lau"
@@ -5370,6 +5645,7 @@ msgstr "Gervihnatta búnaður"
 
 msgid "SatelliteEquipmentControl allows you to fine-tune DiSEqC-settings"
 msgstr ""
+"SatelliteEquipmentControl gerir mögulegt að fínstilla DiSEqC stillingar"
 
 #
 msgid "Satellites"
@@ -5380,7 +5656,7 @@ msgid "Satfinder"
 msgstr "Gervihnattaleit"
 
 msgid "Satfinder helps you to align your dish"
-msgstr ""
+msgstr "Satfinder hjálpar við að stilla diskinn þinn"
 
 msgid "Sats"
 msgstr "Gervihn."
@@ -5517,7 +5793,7 @@ msgid "Scan band US SUPER"
 msgstr "Leita á bandi US SUPER"
 
 msgid "Scan devices for playable media files"
-msgstr ""
+msgstr "Leita að spilanlegum skrám"
 
 msgid "Scan range"
 msgstr "Leitar svið"
@@ -5528,7 +5804,7 @@ msgid ""
 msgstr "Leita að þráðlausu neti og tengjast þeim með völdu netkorti.\n"
 
 msgid "Scans default lamedbs sorted by satellite"
-msgstr ""
+msgstr "Leita að rásum á hverjum gervihnetti fyrir sig"
 
 #
 msgid ""
@@ -5564,7 +5840,7 @@ msgid "Search strictness"
 msgstr "Leitar nákvæmni"
 
 msgid "Search through the EPG"
-msgstr ""
+msgstr "Leita í EPG"
 
 msgid "Search type"
 msgstr "Gerð leitar"
@@ -5580,7 +5856,7 @@ msgid "Searching for new installed or removed packages. Please wait..."
 msgstr "Leita að nýinnsettum eða fjarlægðum pökkum. Vinsamlega bíðið..."
 
 msgid "Searching your network. Please wait..."
-msgstr "Leita á netinu. VInsamlega bíðið..."
+msgstr "Leita á neti. Vinsamlega bíðið..."
 
 #
 msgid "Secondary DNS"
@@ -5590,7 +5866,7 @@ msgid "Security service not running."
 msgstr "Öryggis rás ekki í keyrslu."
 
 msgid "See service-epg (and PiP) from other channels in an infobar."
-msgstr ""
+msgstr "Sjá rása-EPG (og PIP) af öðrum rásum í upplýsingaborða"
 
 #
 msgid "Seek"
@@ -5775,6 +6051,9 @@ msgstr ""
 "Rás fannst ekki!\n"
 "(SID fannst ekki í PAT)"
 
+msgid "Service reference"
+msgstr "Rása upplýsingar"
+
 #
 msgid "Service scan"
 msgstr "Rása leit"
@@ -5796,7 +6075,7 @@ msgid "Services"
 msgstr "Rásir"
 
 msgid "Set Bitstream/PCM audio delays"
-msgstr ""
+msgstr "Stilla Bitastraum/PCM hljóð seinkun"
 
 msgid "Set End Time"
 msgstr "Stilla loka tíma"
@@ -5828,7 +6107,7 @@ msgid "Set this NO to disable this AutoTimer."
 msgstr "Stilla á NEI til að hætta með sjálfvirka tímastillingu"
 
 msgid "Sets your Dreambox into Deep-Standby"
-msgstr ""
+msgstr "Setja Dreamboxið þitt í djúpan svefn"
 
 msgid "Setting key canceled"
 msgstr "Hætt við að stilla takka"
@@ -5901,6 +6180,9 @@ msgstr "Sýna framvindu atriðis við rásaval"
 msgid "Show in extension menu"
 msgstr "Sýna við viðbótar valmynd"
 
+msgid "Show info screen"
+msgstr "Sýna upplýsingar"
+
 #
 msgid "Show infobar on channel change"
 msgstr "Sýna upplýsingaborða við að skipta um stöð"
@@ -5913,6 +6195,9 @@ msgstr "Sýna upplýsinga borða við breytingu á atriði"
 msgid "Show infobar on skip forward/backward"
 msgstr "Sýna upplýsingaborða við stökk fram eða aftur"
 
+msgid "Show notification on conflicts"
+msgstr "Sýna viðvaranir um árekstra"
+
 #
 msgid "Show positioner movement"
 msgstr "Sýna færslu mótors"
@@ -5929,24 +6214,26 @@ msgid "Show the tv player..."
 msgstr "Sýna sjónvarpsspilara..."
 
 msgid "Show webcam pictures on your TV Screen"
-msgstr ""
+msgstr "Sýna frá vefmyndavélum á sjómvarpsskjánum"
 
 msgid ""
 "Shows a list containing the zapping-history and allows user to zap to the "
 "entries or to modify them."
 msgstr ""
+"Sýnir lista sem inniheldur stökk sögu og gerir mögulegt að stökkva beint í "
+"listanum eða breyta honum."
 
 msgid "Shows a list of recent zap entries"
-msgstr ""
+msgstr "Sýnir lista af rásum sem síðast hefur verið horft á"
 
 msgid "Shows average bitrate of video and audio"
-msgstr ""
+msgstr "Sýnir meðaltals bitahraða á mynd og hljóði"
 
 msgid "Shows statistics of watched services"
-msgstr ""
+msgstr "Sýnir tölfræði rása sem horft er á"
 
 msgid "Shows the clock permanently on the screen"
-msgstr ""
+msgstr "Sýnir klukku alltaf á skjánum"
 
 #
 msgid "Shows the state of your wireless LAN connection.\n"
@@ -5980,14 +6267,14 @@ msgid "Simple"
 msgstr "Einfalt"
 
 msgid "Simple IRC GroupChat client for e2 #dm8000-vip channel"
-msgstr ""
+msgstr "Einfalt IRC hópspjalls forrit fyrir e2 #dm8000-vip rásina"
 
 #
 msgid "Simple titleset (compatibility for legacy players)"
 msgstr "Einföld valmynd (virkar fyrir flesta spilara)"
 
 msgid "SimpleRSS allows reading RSS newsfeeds on your Dreambox."
-msgstr ""
+msgstr "EinfaltRSS gerir mögulegt að lesa RSS fréttastrauma á Dreamboxinu."
 
 #
 msgid "Single"
@@ -6014,7 +6301,7 @@ msgid "Skin"
 msgstr "Skinn"
 
 msgid "SkinSelector shows a menu with selectable skins"
-msgstr ""
+msgstr "Skinn val sýnir valmynd með veljanlegum skinnum"
 
 #
 msgid "Skins"
@@ -6072,7 +6359,7 @@ msgid "Software update"
 msgstr "Hugbúnaðar uppfærsla"
 
 msgid "SoftwareManager manages your Dreambox software"
-msgstr ""
+msgstr "Hugbúnaðarumsýsla stjórnar hugbúnaði á Dreamboxinu"
 
 msgid "Softwaremanager information"
 msgstr "Upplýsingar hugbúnaðar umsýslu"
@@ -6174,6 +6461,9 @@ msgstr "%d Volt á viftu í biðstöðu "
 msgid "Start Webinterface"
 msgstr "Ræsa vefviðmót"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr "Ræsir auðveldlega margmiðlunar íforrit með PVR takka."
+
 #
 msgid "Start from the beginning"
 msgstr "Byrja frá byrjun"
@@ -6201,7 +6491,7 @@ msgid "Std. Feeds"
 msgstr "Std. fæðirásir"
 
 msgid "Step by step network configuration"
-msgstr ""
+msgstr "Netkerfis stillingar stig af stigi"
 
 #
 msgid "Step east"
@@ -6263,10 +6553,10 @@ msgid "Stored position"
 msgstr "Vistuð staða"
 
 msgid "Stream podcasts"
-msgstr ""
+msgstr "Hlaðvarps straumar"
 
 msgid "Streaming modules for the orf.at iptv web page."
-msgstr ""
+msgstr "Strauma spilun fyrir orf.at iptv vefsíður."
 
 #
 msgid "Subservice list..."
@@ -6292,6 +6582,9 @@ msgstr "Sun"
 msgid "Sunday"
 msgstr "Sunnudagur"
 
+msgid "Support \"Fast Scan\"?"
+msgstr "Styður \"Hrað skönnun\"?"
+
 #
 msgid "Swap Services"
 msgstr "Skipta á rásum"
@@ -6314,13 +6607,8 @@ msgstr "Skipta á fyrri undirrás"
 msgid "Switchable tuner types:"
 msgstr "Gerðir umskiptanlegra móttakara:"
 
-#
-msgid "Symbol Rate"
-msgstr "Gagnahraði"
-
-#
-msgid "Symbolrate"
-msgstr "Gagnahraði"
+msgid "Symbol rate"
+msgstr "Bitahraði"
 
 #
 msgid "System"
@@ -6341,10 +6629,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS skrá er of stór fyrir ISO9660 level 1!"
 
+msgid "TSID"
+msgstr "TSID"
+
+msgid "TV Charts of all users"
+msgstr "Mynd af öllum notendum"
+
 #
 msgid "TV System"
 msgstr "Sjónvarps kerfi"
 
+msgid "TXT PID"
+msgstr "TXT PID"
+
 #
 msgid "Table of content for collection"
 msgstr "Efnisyfirlit yfir safn"
@@ -6373,6 +6670,9 @@ msgstr "Taiwan"
 msgid "Temperature and Fan control"
 msgstr "Hiti og viftu stillingar"
 
+msgid "Temperature-dependent fan control."
+msgstr "Hitastýrð hraðastýring fyrir viftu."
+
 #
 msgid "Terrestrial"
 msgstr "Stafrænt í lofti"
@@ -6402,7 +6702,7 @@ msgid "Test the network configuration of your Dreambox.\n"
 msgstr "Prófa stillingar netkorts í Dreamboxinu.\n"
 
 msgid "Test your DiSEqC equipment"
-msgstr ""
+msgstr "Prófa DiSEqC búnaðinn þinn"
 
 #
 msgid "Test-Messagebox?"
@@ -6437,6 +6737,8 @@ msgid ""
 "has dropped below a definable threshold.You can use this wizard to remove "
 "some plugins."
 msgstr ""
+"Hreinsiálfurinn lætur vita þegar innraminni móttakarans er komið niður fyrir "
+"stillanleg mörk. Þú getur notað álfinn til að taka út íforrit."
 
 msgid ""
 "The DVD standard doesn't support H.264 (HDTV) video streams. Do you want to "
@@ -6454,10 +6756,17 @@ msgid ""
 "The box automatically wakes up for recordings or at the end of the sleep "
 "time. You therefore don't have to wait until it is on again."
 msgstr ""
+"Elektro Save íforritið setur móttakarann í djúp svefn (Deep Standby) á "
+"ákveðnum tímum.\n"
+"Það gerist bara ef að móttakarinn er í biðstöðu og það er engin upptaka á "
+"dagskrá næstu 20 mínúturnar.\n"
+"Móttakarinn vaknar sjálfvirkt fyrir forritaðar upptökur og við enda svefn "
+"tímans."
 
 msgid ""
 "The Hotplug plugin notifies your system of newly added or removed devices."
 msgstr ""
+"Hotplug íforritið lætur vita ef að búið sé að tengja eða aftengja tæki."
 
 msgid ""
 "The NetworkWizard extension is not installed!\n"
@@ -6467,31 +6776,40 @@ msgstr ""
 "Vinsamlega settu hann inn."
 
 msgid "The PIN code has been changed successfully."
-msgstr ""
+msgstr "Það tókst að breyta PIN kóðanum."
 
 msgid "The PIN codes you entered are different."
-msgstr ""
+msgstr "PIN númerin sem að þú slóst inn eru ekki eins."
 
 msgid ""
 "The PicturePlayer displays your photos on the TV.\n"
 "You can view them as thumbnails or slideshow."
 msgstr ""
+"Myndaskoðarinn sýnir myndirnar þínar á sjónvarpsskjánum.\n"
+"Þú getur skoðað þær sem smámyndir eða sem myndasýningu."
 
 msgid ""
 "The Satfinder plugin helps you to align your dish.\n"
 "It shows you informations about signal rate and errors."
 msgstr ""
+"Satfinder íforritið hjálpar við að stilla diskinn þinn.\n"
+"Það sýnir upplýsingar um styrk merkis og villur."
 
 msgid ""
 "The SkinSelector shows a menu with selectable skins.\n"
 "It's now easy to change the look and feel of your Dreambox."
 msgstr ""
+"Skinnval sýnir valmynd með veljanlegur skinnum.\n"
+"Núna er einfalt að breyta úliti valmynda í Dreamboxinu."
 
 msgid ""
 "The SoftwareManager manages your Dreambox software.\n"
 "It's easy to update your receiver's software, install or remove plugins or "
 "even backup and restore your system settings."
 msgstr ""
+"Hugbúnaðarstjórinn stjórnar hugbúnaði Dreamboxins þíns.\n"
+"Það er einfalt að uppfæra hugbúnað móttakarans, setja inn eða taka út "
+"íforrit eða jafnvel taka afrit eða setja inn stillingar þínar."
 
 msgid ""
 "The Softwaremanagement extension is not installed!\n"
@@ -6525,18 +6843,22 @@ msgstr ""
 msgid ""
 "The VideoEnhancement plugin provides advanced video enhancement settings."
 msgstr ""
+"VideoEnhancement íforritið gerir mögulegt að gera viðbótar stillingar á "
+"myndinni."
 
 msgid ""
 "The VideoTune helps fine-tuning your tv display.\n"
 "You can control brightness and contrast of your tv."
 msgstr ""
+"VideoTune hjálpar við að fínstilla sjónvarpsmyndina.\n"
+"Þú getur stillt birtu og skerpu á sjónvarpinu þínu."
 
 msgid "The Videomode plugin provides advanced video mode settings."
-msgstr ""
+msgstr "Videomode íforritið gerir mögulegar ítarlegri stillingar á myndinni."
 
 msgid ""
 "The WirelessLan plugin helps you configuring your WLAN network interface."
-msgstr ""
+msgstr "Þráðlaust net íforritið hjálpar við að stilla WLAN netkortið þitt."
 
 #
 msgid "The backup failed. Please choose a different backup location."
@@ -6630,7 +6952,7 @@ msgid "The results have been written to %s."
 msgstr "Útkoman hefur verið skrifuð á %s."
 
 msgid "The skin is in KingSize-definition 1024x576"
-msgstr ""
+msgstr "Skinnið er í stærðinni 1024x576"
 
 #
 msgid "The sleep timer has been activated."
@@ -6809,6 +7131,8 @@ msgid ""
 "This system tool is internally used to program the hardware with firmware "
 "updates."
 msgstr ""
+"Þetta kerfis tól er ætlað til að forrita vélbúnaðinn með hugbúnaðar "
+"uppfærslum."
 
 #
 msgid ""
@@ -6993,7 +7317,7 @@ msgid "Titleset mode"
 msgstr "Titla stillingar"
 
 msgid "To be used as simple downloading application by other Plugins."
-msgstr ""
+msgstr "MediaDownloader er einfalt niðurhleðslu forrit sem önnur íforrit nota."
 
 msgid ""
 "To update your Dreambox firmware, please follow these steps:\n"
@@ -7041,7 +7365,7 @@ msgid "Track"
 msgstr "Spor"
 
 msgid "TrafficInfo shows german traffic information."
-msgstr ""
+msgstr "TrafficInfo sýnir upplýsingar um umferð í Þýskalandi."
 
 #
 msgid "Translation"
@@ -7052,10 +7376,6 @@ msgid "Translation:"
 msgstr "Þýðing:"
 
 #
-msgid "Transmission Mode"
-msgstr "Sendi aðferð"
-
-#
 msgid "Transmission mode"
 msgstr "Sendi stilling"
 
@@ -7063,10 +7383,6 @@ msgstr "Sendi stilling"
 msgid "Transponder"
 msgstr "Sendir"
 
-#
-msgid "Transponder Type"
-msgstr "Gerð sendis"
-
 msgid "Travel & Events"
 msgstr "Ferðalög"
 
@@ -7189,6 +7505,9 @@ msgstr "Hætta við innsetningu"
 msgid "Undo uninstall"
 msgstr "Hætta við að hætta við"
 
+msgid "Unencrypted"
+msgstr "Opin rás"
+
 msgid "UnhandledKey"
 msgstr "Ónotaður"
 
@@ -7214,6 +7533,9 @@ msgstr "Bandaríkin"
 msgid "Universal LNB"
 msgstr "Venjulegt LNB"
 
+msgid "Unknown"
+msgstr "Óþekkt"
+
 msgid "Unknown network adapter."
 msgstr "Óþekkt netkort."
 
@@ -7235,7 +7557,7 @@ msgid "Unsupported"
 msgstr "Ekki stutt"
 
 msgid "UnwetterInfo shows german storm information."
-msgstr ""
+msgstr "Unwetterinfo sýnir þýskar stormviðvaranir"
 
 #
 msgid "Update"
@@ -7320,11 +7642,7 @@ msgid "Use a gateway"
 msgstr "Nota beini"
 
 msgid "Use and control multiple Dreamboxes with different RCs."
-msgstr ""
-
-#
-msgid "Use non-smooth winding at speeds above"
-msgstr "Nota kyrrmyndir við hraðspólun hraðar en"
+msgstr "Stjórna mörgum Dreamboxum með mismunandi fjarstýringum."
 
 #
 msgid "Use power measurement"
@@ -7402,10 +7720,16 @@ msgid "VMGM (intro trailer)"
 msgstr "VMGM (mynd sýnishorn)"
 
 msgid "Vali-XD skin"
-msgstr ""
+msgstr "Vali-XD skinn"
+
+msgid "Vali.HD.atlantis skin"
+msgstr "Vali.HD.atlantis skinn"
 
 msgid "Vali.HD.nano skin"
-msgstr ""
+msgstr "Vali.HD.nano skinn"
+
+msgid "Vali.HD.warp skin"
+msgstr "Vali.HD.warp skinn"
 
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
@@ -7413,6 +7737,9 @@ msgstr ""
 "Athuga hvort Dreamboxið þitt er orginal með því að keyra genuine dreambox "
 "íforrit!"
 
+msgid "Verifying your internet connection..."
+msgstr "Athuga með internet tenginguna..."
+
 #
 msgid "Vertical"
 msgstr "Lóðrétt"
@@ -7428,6 +7755,9 @@ msgstr "Mynd fínstillinga ráðgjafi"
 msgid "Video Output"
 msgstr "Mynd útgangur"
 
+msgid "Video PID"
+msgstr "Video PID"
+
 #
 msgid "Video Setup"
 msgstr "Mynd uppsetning"
@@ -7467,13 +7797,13 @@ msgid "Video mode selection."
 msgstr "Mynd hams stilling."
 
 msgid "Video streaming from the orf.at web page"
-msgstr ""
+msgstr "Mynd straumur frá orf.at vefsíðunni"
 
 msgid "VideoEnhancement provides advanced video enhancement settings"
-msgstr ""
+msgstr "VideoEnhancement gerir mögulegar ítarlegri stillingar á myndinni"
 
 msgid "VideoTune helps fine-tuning your tv display"
-msgstr ""
+msgstr "VideoTune hjálpar við að fínstilla sjónvarps myndina"
 
 msgid "Videobrowser exit behavior:"
 msgstr "Myndvafra hegðun þegar hætt er:"
@@ -7483,7 +7813,7 @@ msgid "Videoenhancement Setup"
 msgstr "Mynd endurbóta uppsetning"
 
 msgid "Videomode provides advanced video mode settings"
-msgstr ""
+msgstr "Videomode gerir mögulega ítarlegri mynd stillingar"
 
 msgid "Videoplayer stop/exit behavior:"
 msgstr "Myndspilara hegðun við að stoppa/hætta"
@@ -7492,10 +7822,10 @@ msgid "View Count"
 msgstr "Skoða fjölda"
 
 msgid "View Google maps"
-msgstr ""
+msgstr "Skoða Google maps"
 
 msgid "View Google maps with your Dreambox."
-msgstr ""
+msgstr "Skoða Google maps með dreamboxinu þinu."
 
 #
 msgid "View Movies..."
@@ -7595,12 +7925,14 @@ msgid "Virtual KeyBoard"
 msgstr "Sýndar lyklaborð"
 
 msgid "Visualization for the European Installation Bus"
-msgstr ""
+msgstr "Myndræn framsetning fyrir Instabus (EIB)"
 
 msgid ""
 "Visualize and control your lights, dimmers, blinds, thermostats etc. through "
 "EIB/KNX. (linknx server required)"
 msgstr ""
+"Sýnir og stjórnar ljósum, dimmerum, gardíum, hitastillum og fleiru með EIB/"
+"KNX. (linknx þjónn þarf)"
 
 #
 msgid "Voltage mode"
@@ -7652,13 +7984,16 @@ msgid "Warn if free space drops below (kB):"
 msgstr "Vara við ef að laust minni fer niður fyrir (kB):"
 
 msgid "Watch streams from ZDF Mediathek"
-msgstr ""
+msgstr "Horfa á myndstrauma frá ZDF Mediathek"
 
 msgid "WeatherPlugin shows weatherforecasts on your Dreambox."
-msgstr ""
+msgstr "Veður íforritið sýnir veðurspá á Dreamboxinu þínu."
 
 msgid "Weatherforecast on your Dreambox"
-msgstr ""
+msgstr "Veðurspá á Dreamboxið"
+
+msgid "Web-Bouquet-Editor for PC"
+msgstr "Rása ritill fyrir vefinn"
 
 msgid "Webinterface"
 msgstr "Vefviðmót"
@@ -7830,6 +8165,13 @@ msgid "What to do with submitted crashlogs?"
 msgstr "Hvað skal gera við innsendar hrunskýrslur?"
 
 msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+"Þegar \"Hrað leit\" er studd þá er gerð rásar ekki skoðuð. Þú þarft ekki að "
+"virkja þetta nema stýrikerfið styðji \"Hrað leit\" og þú ert að nota hana."
+
+msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
 "timer with the same description already exists in the timer list."
 msgstr ""
@@ -7871,10 +8213,21 @@ msgstr "Þráðlaust netkerfi"
 msgid "Wireless Network State"
 msgstr "Staða þráðlausa nets"
 
+msgid "Wireless network connection setup"
+msgstr "Uppsetning á þráðlausu neti"
+
+msgid "Wireless network connection setup."
+msgstr "Uppsetning á þráðlausu neti."
+
+msgid "Wireless network state"
+msgstr "Staða þráðlausa nets"
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
 msgstr ""
+"Með AntiScrollbar þá getur þú lokað fyrir fréttta borða sem sendir eru út "
+"svo sem á fréttarásum."
 
 msgid ""
 "With DVDBurn you can make compilations of records from your Dreambox hard "
@@ -7883,38 +8236,58 @@ msgid ""
 "a standard-compliant DVD that can be played on conventinal DVD players.\n"
 "HDTV recordings can only be burned in proprietary dreambox format."
 msgstr ""
+"Með DVD brennara getur þú búið til ISO skrár úr upptökum af harða diskinum "
+"þínum.\n"
+"Þú getur líka búið til valmyndir og svo brennt skrána á DVD diska sem hægt "
+"er svo að spila á venjulegur DVD spilurum.\n"
+"HDTV staðal er bara hægt að brenna á diska í Dreambox formi."
 
 msgid "With EPGSearch you can search through the EPG and create timers."
 msgstr ""
+"Með EPG leit getur þú leitað í EPG dagskránni og búið til tímastilltar "
+"upptökur."
 
 msgid "With Genuine Dreambox you can verify the authenticity of your Dreambox."
 msgstr ""
+"Með Genuine Dreambox getur þú athugað hvort að þú sért með ekta Dreambox."
 
 msgid ""
 "With IMDb you can download and displays movie information (rating, poster, "
 "cast, synopsis etc.) about the selected event."
 msgstr ""
+"Með IMDB getur þú hlaðið niður og skoðað upplýsingar af netinu um valið "
+"atriði."
 
 msgid "With MovieRetitle you can rename your movies."
-msgstr ""
+msgstr "Með MovieRetitle getur þú endurnefnt bíómyndirnar þínar."
 
 msgid ""
 "With MyTube you can play YouTube videos directly on your TV without a PC."
 msgstr ""
+"Með MyTube getur þú spilað YouTube myndbönd beint á sjónvarpinu þínu án "
+"tölvu."
 
 msgid "With WebcamViewer you can watch webcams on your TV Screen."
 msgstr ""
+"Með Vefmyndavéla skoðara getur þú horft á vefmyndavélar á sjónvarpsskjánum "
+"þínum."
 
 msgid ""
 "With Werbezapper you can bridge commercials by creating short timers\n"
 "(between 1 and 9 minutes long) which will automatically zap back to the "
 "original channel after execution."
 msgstr ""
+"Með Werbezapper getur þú sleppt auglýsingum auðveldlega með því að búa til "
+"stuttar tímastillingar\n"
+"(á milli 1 og 9 mínútur) sem stekkur sjálfvirkt aftur á sömu rás eftir "
+"keyrslu."
 
 msgid ""
 "With YouTubePlayer you can watch YouTube-Videos on the Dreambox.\n"
 "This plugin requires a PC with the VLC program running."
 msgstr ""
+"Með YouTubeSpilara getur þú spilað YouTube myndbönd á Dreamboxinu.\n"
+"Þetta íforrit þarf PC með keyrandi VLC spilara."
 
 msgid ""
 "With the CommonInterfaceAssignment plugin it is possible to use differentCI "
@@ -7922,41 +8295,59 @@ msgid ""
 "each of them.\n"
 "This allows watching a scrambled service while recording another one."
 msgstr ""
+"Með CommonInterfaceAssignment íforritinu þá er mögulegt að nota mismunandi "
+"CI einingar í Dreamboxinu og tengja ákveðin sendanda eða rása caid við hvert "
+"CI.\n"
+"Þetta gerir mögulegt að horfa á ruglaða rás og taka upp aðra ruglaða um leið."
 
 msgid ""
 "With the CrashlogAutoSubmit plugin it is possible to automaticallymail "
 "crashlogs found on your hard drive to Dream Multimedia."
 msgstr ""
+"Með CrashlogAutoSubmit íforritinu er hægt að senda sjálfvirkt villuskýrslur "
+"sem finnast á harða diskinum til Dream Multimedia."
 
 msgid ""
 "With the DefaultServicesScanner plugin you can scan default lamedbs sorted "
 "by satellite with a connected dish positioner."
 msgstr ""
+"Með DefaultServicesScanner íforritinu getur þú leitað eftir gervihnöttum ef "
+"þú ert með mótordrifinn disk."
 
 msgid ""
 "With the DiseqcTester plugin you can test your satellite equipment for "
 "DiSEqC compatibility and errors."
 msgstr ""
+"Með DiseqcTester iforritinu getur þú prufað DiSEqC virkni gervihnatta "
+"búnaðar þíns."
 
 msgid ""
 "With the NFIFlash plugin it is possible to prepare a USB stick with an "
 "Dreambox image.\n"
 "It is then possible to flash your Dreambox with the image on that stick."
 msgstr ""
+"Með NFIFlash í forritinu er hægt að útbúa USB staut með Dreambox "
+"stýrikerfi.\n"
+"Það er svo hægt að forrita Dreamboxið þitt með því stýrikerfi."
 
 msgid ""
 "With the NetworkWizard you can easily configure your network step by step."
 msgstr ""
+"Með Netkerfis álfinum þá getur þú stillt nettenginu þína skref fyrir skref."
 
 msgid ""
 "With the PositionerSetup plugin it is easy to install and configure a "
 "motorized dish."
 msgstr ""
+"Með PositionerSetup íforritinu er auðvelt að setja upp og stilla "
+"mótordrifinn disk."
 
 msgid ""
 "With the SatelliteEquipmentControl plugin it is possible to fine-tune DiSEqC-"
 "settings."
 msgstr ""
+"Með SatelliteEquipmentControl íforritinu er mögulegt að fínstilla DiSEqC "
+"stillingar."
 
 msgid ""
 "With this option enabled the channel to record on can be changed to a "
@@ -8088,6 +8479,15 @@ msgstr ""
 "Þegar 'Nafn' er bara skiljanlegt nafn sýnt í yfirliti, 'Passar í titli' er "
 "það sem leitað er að í EPG."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+"Þú getur notað EasyInfo til að stjórna EPG íforritum frá Info takkanum. Þú "
+"færð líka nýja nú og næst sýn. Myndræna EPG Easy-PG íforritið er líka "
+"innifalið."
+
 #
 msgid "You cannot delete this!"
 msgstr "Þú getur ekki eytt þessu!"
@@ -8177,6 +8577,9 @@ msgid ""
 "\n"
 "Do you want to set the pin now?"
 msgstr ""
+"Þú þarft að búa til PIN kóða og fela hann fyrir börnunum.\n"
+"\n"
+"Viltu búa til kóða núna?"
 
 msgid ""
 "You successfully configured a new AutoTimer. Do you want to add it to the "
@@ -8289,6 +8692,9 @@ msgstr "Nafn þitt (aukalega):"
 msgid "Your network configuration has been activated."
 msgstr "Stillingar netkerfis hafa verið gerðar virkar."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 msgid "Your network mount has been activated."
 msgstr "Nettengi punktur hefur verið gerður virkur."
 
@@ -8504,6 +8910,12 @@ msgstr "úthlutað CAIds:"
 msgid "assigned Services/Provider:"
 msgstr "úthlutaðar rásir/sendendur:"
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -8522,6 +8934,9 @@ msgstr "hljóð rás"
 msgid "auto"
 msgstr "sjálfvirkt"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "tiltæk"
@@ -8554,6 +8969,9 @@ msgstr "svarti listi"
 msgid "blue"
 msgstr "blár"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -8593,6 +9011,9 @@ msgstr "hreinsa spilunarlista"
 msgid "complex"
 msgstr "flókinn"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "stillinga valmynd"
@@ -8624,6 +9045,12 @@ msgstr "var ekki hægt að taka út"
 msgid "create directory"
 msgstr "búa til möppu"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr "núverandi stýrikerfi: %s"
@@ -8636,6 +9063,9 @@ msgstr "daglega"
 msgid "day"
 msgstr "dagur"
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "eyða"
@@ -8695,6 +9125,9 @@ msgstr "ekki taka upp"
 msgid "done!"
 msgstr "búinn!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "breyta valkosti"
@@ -8968,6 +9401,9 @@ msgstr "mínúta"
 msgid "minutes"
 msgstr "mínútur"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "mánuður"
@@ -9163,9 +9599,6 @@ msgstr "rauður"
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr "taka út nafnaþjón"
@@ -9412,9 +9845,8 @@ msgstr "venjulegt"
 msgid "standby"
 msgstr "biðstaða"
 
-#
 msgid "start cut here"
-msgstr "byrja að klippa hér"
+msgstr "byrja klippingu hér"
 
 #
 msgid "start directory"
@@ -9499,6 +9931,10 @@ msgstr "skipta á milli tíma, kafla, undirtexta upplýsingar"
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr "ekki tiltækt"
@@ -9566,6 +10002,9 @@ msgstr "vikulega"
 msgid "whitelist"
 msgstr "hvíti listi"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "er að vinna"
@@ -9697,6 +10136,9 @@ msgstr "stokkið"
 #~ msgid "50 Hz"
 #~ msgstr "50 Hz"
 
+#~ msgid "A BackToTheRoots-Skin ... or good old times."
+#~ msgstr "BackToTheRoots-Skin eða gömlu góðu dagarnir."
+
 #
 #~ msgid "A sleep timer want's to set your"
 #~ msgstr "Tíma stilling vill stilla "
@@ -9836,6 +10278,18 @@ msgstr "stokkið"
 #~ msgid "Choose source"
 #~ msgstr "Veldu miðil"
 
+#~ msgid "Code rate high"
+#~ msgstr "Gagna hraði, hár"
+
+#~ msgid "Code rate low"
+#~ msgstr "Gagna hraði, lár"
+
+#~ msgid "Coderate HP"
+#~ msgstr "Gagnahraði HP"
+
+#~ msgid "Coderate LP"
+#~ msgstr "Gagnahraði LP"
+
 #
 #~ msgid "Compact flash card"
 #~ msgstr "Compact flash kort"
@@ -10024,6 +10478,14 @@ msgstr "stokkið"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Hraðspólunar hraði áfram, fyrst"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Hraðspólunar hraði til baka, fyrst"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Setjið inn WLAN nafn/SSID:"
 
@@ -10070,6 +10532,9 @@ msgstr "stokkið"
 #~ msgid "Font size"
 #~ msgstr "Stafa stærð"
 
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Fjöldi ramma sem á að sleppa við hraðspólun"
+
 #
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP address"
@@ -10095,6 +10560,14 @@ msgstr "stokkið"
 #~ msgstr "Gerð:"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Guard Interval"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Guard millibils hamur"
+
+#
 #~ msgid "Hello!"
 #~ msgstr "Halló!"
 
@@ -10107,9 +10580,23 @@ msgstr "stokkið"
 #~ msgstr "Fela villuglugga"
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Stigskipta upplýsingar"
+
+#~ msgid "Hierarchy mode"
+#~ msgstr "Stigskipta hamur"
+
+#
 #~ msgid "How to handle found crashlogs:"
 #~ msgstr "Hvernig á að meðhöndla hrunskýrslur:"
 
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Ef þetta er virkt þá mun núverandi tímastilling vera líka skoðuð sem "
+#~ "upptaka er atriði er allavega 80% tekið upp."
+
 #
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Ef þú getur séð þessa mynd, ýttu þá á OK."
@@ -10263,6 +10750,10 @@ msgstr "stokkið"
 #~ msgstr "Uppfærsla frá neti"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Staðsetnging gervihnattar"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Annað..."
 
@@ -10330,6 +10821,10 @@ msgstr "stokkið"
 #~ msgstr "Innskots verk upplýsingar..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Pólun"
+
+#
 #~ msgid "Positioner mode"
 #~ msgstr "Stilling mótorstýringar"
 
@@ -10446,6 +10941,10 @@ msgstr "stokkið"
 #~ "stillingar."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Sníða af"
+
+#
 #~ msgid "Satconfig"
 #~ msgstr "Stilla gervihnetti"
 
@@ -10595,6 +11094,14 @@ msgstr "stokkið"
 #~ msgstr "Skipta á milli rása"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Gagnahraði"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Gagnahraði"
+
+#
 #~ msgid ""
 #~ "The .NFI Image flasher USB stick is now ready to use. Please download an ."
 #~ "NFI image file from the feed server and save it on the stick. Then reboot "
@@ -10715,6 +11222,14 @@ msgstr "stokkið"
 #~ "3) Bíðið eftir ræsingu og fylgdu leiðbeiningunum á skjánum."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Sendi aðferð"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Gerð sendis"
+
+#
 #~ msgid "Transpondertype"
 #~ msgstr "Gerð sendis"
 
@@ -10780,6 +11295,10 @@ msgstr "stokkið"
 #~ msgstr "Stillia notkun"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Nota kyrrmyndir við hraðspólun hraðar en"
+
+#
 #~ msgid "VCR Switch"
 #~ msgstr "Vídeó rofi"
 
index ea377f1..054272e 100755 (executable)
--- a/po/it.po
+++ b/po/it.po
@@ -4,8 +4,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: enigma2 v2.6 Italian Locale\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
-"PO-Revision-Date: 2011-02-06 00:32+0200\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
+"PO-Revision-Date: 2011-04-24 02:17+0200\n"
 "Last-Translator: spaeleus <spaeleus@croci.org>\n"
 "Language-Team: WWW.LINSAT.NET <spaeleus@croci.org>\n"
 "Language: it\n"
@@ -200,6 +200,14 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+"Il tentativo di aggiungere nuovi timer ha generato %d conflitti:\n"
+"%s"
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -238,6 +246,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr "%s: %s alle %s"
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -394,10 +406,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
-msgstr "Una skin che ci riporta alle origini... o ai bei vecchi tempi."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr "Un ritorno alle origini nelle skin... ma con la velocità di Warp-8."
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr "Una skin che ci riporta alle origini... o ai bei vecchi tempi."
 
 msgid "A basic ftp client"
@@ -418,6 +430,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Un plugin dimostrativo per l'uso di TPM"
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr "Una simulazione per Dreambox del display SG-Atlantis"
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -440,6 +455,9 @@ msgstr "EPG grafico per i canali di uno specifico bouquet"
 msgid "A graphical EPG interface"
 msgstr "Un'interfaccia grafica per l'EPG"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr "Una interfaccia EPG grafica e uno strumento di gestione EPG"
+
 msgid "A graphical EPG interface."
 msgstr "Un'interfaccia grafica per l'EPG."
 
@@ -912,6 +930,9 @@ msgstr "Chiedere"
 msgid "Aspect Ratio"
 msgstr "Rapporto d'aspetto"
 
+msgid "Aspect ratio"
+msgstr "Rapporto d'aspetto"
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Plugin per l'assegnazione di provider/canali/caid a un modulo CI"
 
@@ -926,6 +947,9 @@ msgstr "Audio"
 msgid "Audio Options..."
 msgstr "Opzioni audio..."
 
+msgid "Audio PID"
+msgstr "PID audio"
+
 #
 msgid "Audio Sync"
 msgstr "Audio Sync"
@@ -992,6 +1016,15 @@ msgstr ""
 "Plugin che permette la creazione di timer utilizzando criteri di ricerca "
 "nell'EPG definiti dall'utente."
 
+msgid "AutoTimer was added successfully"
+msgstr "AutoTimer aggiunto correttamente"
+
+msgid "AutoTimer was changed successfully"
+msgstr "AutoTimer modificato correttamente"
+
+msgid "AutoTimer was removed"
+msgstr "AutoTimer rimosso"
+
 #
 msgid "Automatic"
 msgstr "Automatico"
@@ -1028,8 +1061,29 @@ msgstr "Plugin per l'aggiornamento automatico dell'EPG"
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr "Plugin per l'invio automatico dei crashlog a DMM"
 
+#
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+"Plugin Autoresolution in modalità test:\n"
+"La modalità %s è corretta?"
+
+msgid "Autoresolution Switch"
+msgstr "Switch Autoresolution"
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Autoresolution non è disponibile in modalità Scart/DVI-PC"
+
+msgid "Autoresolution settings"
+msgstr "Configurazione Autoresolution"
+
+msgid "Autoresolution videomode setup"
+msgstr "Configurazione modalità video Autoresolution"
+
 msgid "Autos & Vehicles"
-msgstr "Auto & Veicoli"
+msgstr "Auto & veicoli"
 
 #
 msgid "Autowrite timer"
@@ -1069,6 +1123,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Indietro"
 
+msgid "Back, lower USB Slot"
+msgstr "Porta USB posteriore inferiore"
+
+msgid "Back, upper USB Slot"
+msgstr "Porta USB posteriore superiore"
+
 #
 msgid "Background"
 msgstr "Sfondo"
@@ -1160,6 +1220,13 @@ msgstr "Brasile"
 msgid "Brightness"
 msgstr "Luminosità"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+"Plugin per navigare tra le pagine Teletext di ORF e SAT1, indipendentemente "
+"dal canale sintonizzato. Richiede connessione I-net."
+
 msgid "Browse for and connect to network shares"
 msgstr "Plugin per la ricerca e la connessione di condivisioni di rete"
 
@@ -1187,6 +1254,23 @@ msgstr "Plugin per masterizzare le registrazioni su DVD"
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+"Abilitando questa funzione verranno considerati solo gli eventi previsti in "
+"date determinate."
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+"Abilitando questa opzione si verrà informati della presenza di conflitti "
+"durante il polling automatico. Non viene applicato alcun controllo in "
+"proposito, perciò si potrebbero ricevere avvisi circa lo stesso conflitto "
+"più e più volte."
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1451,21 +1535,11 @@ msgstr "Chiudere e salvare le modifiche"
 msgid "Close title selection"
 msgstr "Chiudere selezione sottotitoli"
 
-#
-msgid "Code rate high"
-msgstr "Code rate alto"
-
-#
-msgid "Code rate low"
-msgstr "Code rate basso"
-
-#
-msgid "Coderate HP"
-msgstr "Coderate HP"
+msgid "Code rate HP"
+msgstr "Code rate HP"
 
-#
-msgid "Coderate LP"
-msgstr "Coderate LP"
+msgid "Code rate LP"
+msgstr "Code rate LP"
 
 #
 msgid "Collection name"
@@ -1650,6 +1724,10 @@ msgstr "Impossibile aprire PiP"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Impossibile registrare, timer %s in conflitto!"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr "Impossibile registrare: canale %s non valido"
+
 #
 msgid "Crashlog settings"
 msgstr "Configurazione crashlog"
@@ -1830,6 +1908,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr "Drive DVD"
+
 #
 msgid "DVD File Browser"
 msgstr "File browser DVD"
@@ -1918,10 +1999,19 @@ msgstr ""
 "Plugin per definire un canale su cui il Dreambox deve sintonizzarsi ad ogni "
 "avvio."
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr "Modalità deinterlacer per contenuti interlacciati"
+
+msgid "Deinterlacer mode for progressive content"
+msgstr "Modalità deinterlacer per contenuti progressivi"
+
 #
 msgid "Delay"
 msgstr "Ritardo"
 
+msgid "Delay x seconds after service started"
+msgstr "Ritardo in secondi dopo la sintonia canale"
+
 msgid "Delete"
 msgstr "Rimuovere"
 
@@ -2105,6 +2195,14 @@ msgstr ""
 "Attenzione, potrebbe richiedere molto tempo!"
 
 #, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+"Cancellare %s\n"
+"%s?"
+
+#, python-format
 msgid "Do you really want to delete %s?"
 msgstr "Rimuovere %s?"
 
@@ -2295,6 +2393,13 @@ msgstr "Formato DVD: dati Dreambox (compatibile HDTV)"
 msgid "Dreambox software because updates are available."
 msgstr "il software del Dreambox perchè sono disponibili aggiornamenti."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+"Driver per penne USB wireless-n basate su chipset Ralink RT8070/RT3070/RT3370"
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr "Driver per penne USB wireless-n basate su chipset Realtek r8712u"
+
 #
 msgid "Duration: "
 msgstr "Durata: "
@@ -2441,10 +2546,25 @@ msgstr "Abilitare"
 msgid "Enable /media"
 msgstr "Abilitare /media"
 
+msgid "Enable 1080p24 Mode"
+msgstr "Abilitare modalità 1080p24"
+
+msgid "Enable 1080p25 Mode"
+msgstr "Abilitare modalità 1080p25"
+
+msgid "Enable 1080p30 Mode"
+msgstr "Abilitare modalità 1080p30"
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Abilitare 5V per antenna attiva"
 
+msgid "Enable 720p24 Mode"
+msgstr "Abilitare modalità 720p24"
+
+msgid "Enable Autoresolution"
+msgstr "Abilitare Autoresolution"
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr "Abilitare Cleanup Wizard?"
@@ -2575,18 +2695,10 @@ msgstr ""
 "© 2006 - Stephan Reichholf"
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Avviare FFW a velocità"
-
-#
 msgid "Enter IP to scan..."
 msgstr "Inserire IP da ricercare..."
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Avviare REW a velocità"
-
-#
 msgid "Enter main menu..."
 msgstr "Menu principale..."
 
@@ -2653,6 +2765,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estone"
 
+msgid "Ethernet network interface"
+msgstr "Interfaccia di rete Ethernet"
+
 #
 msgid "Eventview"
 msgstr "Vista eventi"
@@ -2852,6 +2967,13 @@ msgstr "Riavvio rete terminato"
 msgid "Finnish"
 msgstr "Finlandese"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+"Inizio corrispondenza eventi. Deve essere previsto il loro inizio dopo "
+"questa data."
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr "Plugin per generare uno stile di skin mediante Ai.HD-Control."
 
@@ -2869,6 +2991,14 @@ msgstr "I processi seguenti saranno eseguiti premendo Ok!"
 msgid "Format"
 msgstr "Formattare"
 
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+"Trovate in totale %d corrispondenze.\n"
+"Timer: %d aggiunti e %d modificati. Conflitti riscontrati: %d."
+
 #
 #, python-format
 msgid ""
@@ -2879,10 +3009,6 @@ msgstr ""
 "%d nuovi timer Aggiunti - %d timer modificati."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "FRC durante riproduzione discontinua"
-
-#
 msgid "Frame size in full view"
 msgstr "Dimensione frame in visualizzazione piena"
 
@@ -2927,6 +3053,9 @@ msgstr ""
 "FritzCall permette di visualizzare le chiamate che giungono alla Fritz!Box "
 "su Dreambox."
 
+msgid "Front USB Slot"
+msgstr "Porta USB anteriore"
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr "Plugin che si colloca come frontend per /tmp/mmi.socket"
 
@@ -2982,6 +3111,11 @@ msgstr "Ritardo generale PCM"
 msgid "General PCM delay (ms)"
 msgstr "Ritardo generale PCM (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+"Plugin per generare e mostrare classifiche TV tra tutti gli utenti che lo "
+"hanno installato"
+
 #
 msgid "Genre"
 msgstr "Genere"
@@ -3061,26 +3195,27 @@ msgid "Green boost"
 msgstr "Intensificare il verde"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
-"Growlee consente al Dreambox l'invio di brevi messaggi (come l'avvio di una "
-"regisrazione)\n"
-"attraverso il protocollo growl a un PC su cui sia attivo un client growl"
+"Growlee permette al Dreambox di inoltrare notifiche come \\\"Registrazione "
+"avviata\\\" a un PC dove sia attivo growl, snarl o altro client compatibile, "
+"o direttamente a un iPhone che utilizzi prowl."
 
-#
-msgid "Guard Interval"
+msgid "Guard interval"
 msgstr "Intervallo di guardia"
 
 #
-msgid "Guard interval mode"
-msgstr "Modalità intervallo di guardia"
-
-#
 msgid "Guess existing timer based on begin/end"
 msgstr "Calcolare i timer esistenti basati su inizio/fine"
 
+msgid "HD Interlace Mode"
+msgstr "Modalità HD interlacciata"
+
+msgid "HD Progressive Mode"
+msgstr "Modalità HD progressiva"
+
 #
 msgid "HD videos"
 msgstr "Filmati HD"
@@ -3109,6 +3244,9 @@ msgstr "Standby harddisk dopo"
 msgid "Help"
 msgstr "Aiuto"
 
+msgid "Hidden network"
+msgstr "Rete nascosta"
+
 #
 msgid "Hidden network SSID"
 msgstr "SSID di rete nascosto"
@@ -3117,15 +3255,10 @@ msgstr "SSID di rete nascosto"
 msgid "Hidden networkname"
 msgstr "Nome rete nascosto"
 
-#
-msgid "Hierarchy Information"
+msgid "Hierarchy info"
 msgstr "Informazioni gerarchia"
 
 #
-msgid "Hierarchy mode"
-msgstr "Modalità gerarchica"
-
-#
 msgid "High bitrate support"
 msgstr "Supporto hight bitrate"
 
@@ -3195,15 +3328,13 @@ msgstr "Percorso ISO"
 msgid "Icelandic"
 msgstr "Islandese"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"Abilitando questa opzione, un timer verrà considerato già esistente se la "
-"registrazione effettuata da quest'ultimo avrà già raggiunto almeno l'80% del "
-"totale."
+"Abilitando l'opzione, un timer esistente verrà considerato in registrazione "
+"se la percentuale registrata sarà almeno l'80%% del totale previsto."
 
 msgid ""
 "If you see this, something is wrong with\n"
@@ -3305,6 +3436,12 @@ msgstr "Informazioni"
 msgid "Init"
 msgstr "Init"
 
+msgid "Initial Fast Forward speed"
+msgstr "Velocità iniziale FFW"
+
+msgid "Initial Rewind speed"
+msgstr "Velocità iniziale REW"
+
 #
 msgid "Initial location in new timers"
 msgstr "Percorso iniziale nuovi timer"
@@ -3405,6 +3542,9 @@ msgstr "Flash interna"
 msgid "Internal LAN adapter."
 msgstr "Interfaccia di rete interna."
 
+msgid "Internal USB Slot"
+msgstr "Porta USB interna"
+
 msgid "Internal firmware updater"
 msgstr "Pluginper l'aggiornamento del firmware interno"
 
@@ -3419,7 +3559,7 @@ msgstr "La cartella selezionata non è valida: %s"
 
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 304
 msgid "Invalid response from Security service pls restart again"
-msgstr "Risposta non valida dal Servizio di sicurezza, riavviare"
+msgstr "Risposta non valida dal servizio di sicurezza: riavviare."
 
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 132
 msgid "Invalid response from server."
@@ -3607,6 +3747,13 @@ msgstr "Selezione lingua"
 msgid "Last config"
 msgstr "Ult. config."
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+"Termine corrispondenza eventi. Deve essere previsto il loro inizio prima di "
+"questa data."
+
 #
 msgid "Last speed"
 msgstr "Ultima velocità"
@@ -3662,6 +3809,9 @@ msgstr "Link:"
 msgid "Linked titles with a DVD menu"
 msgstr "Titoli collegati ad un Menu DVD"
 
+msgid "List available networks"
+msgstr "Elencare le reti disponibili"
+
 #
 msgid "List of Storage Devices"
 msgstr "Elenco supporti memorizzazione"
@@ -3803,6 +3953,9 @@ msgstr "Gestire il software del ricevitore"
 msgid "Manual Scan"
 msgstr "Ricerca manuale"
 
+msgid "Manual configuration"
+msgstr "Configurazione manuale"
+
 #
 msgid "Manual transponder"
 msgstr "Transponder manuale"
@@ -4103,6 +4256,9 @@ msgstr "Menu elenco registrazioni"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr "Selezione bouquet Multi-EPG"
+
 #
 msgid "Multimedia"
 msgstr "Multimedia"
@@ -4111,6 +4267,9 @@ msgstr "Multimedia"
 msgid "Multiple service support"
 msgstr "Supporto canali multipli"
 
+msgid "Multiplex"
+msgstr "Multiplex"
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4183,6 +4342,9 @@ msgstr ""
 msgid "NFS share"
 msgstr "Condivisione NFS"
 
+msgid "NIM"
+msgstr "NIM"
+
 #
 msgid "NOW"
 msgstr "IN ONDA"
@@ -4212,6 +4374,9 @@ msgstr "Configurazione nameserver"
 msgid "Nameserver settings"
 msgstr "Conf. nameserver"
 
+msgid "Namespace"
+msgstr "Spazio dei nomi"
+
 msgid "Nemesis BlackBox Skin"
 msgstr "Skin Nemesis BlackBox"
 
@@ -4367,6 +4532,9 @@ msgstr "NetworkBrowser"
 msgid "NetworkWizard"
 msgstr "Conf. guidata rete"
 
+msgid "Networkname (SSID)"
+msgstr "Nome rete (SSID)"
+
 #
 msgid "Never"
 msgstr "Mai"
@@ -4387,7 +4555,7 @@ msgid "New version:"
 msgstr "Nuova versione:"
 
 msgid "News & Politics"
-msgstr "Notizie & Politica"
+msgstr "Notizie & politica"
 
 #
 msgid "Next"
@@ -4533,6 +4701,9 @@ msgstr "Nessun filmato da mostrare"
 msgid "No wireless networks found! Please refresh."
 msgstr "Nessuna rete wireless rilevata! Aggiornare."
 
+msgid "No wireless networks found! Searching..."
+msgstr "Nessuna rete wireless trovata! Ricerca in corso..."
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4625,6 +4796,12 @@ msgstr "Nord"
 msgid "Norwegian"
 msgstr "Norvegese"
 
+msgid "Not after"
+msgstr "Non oltre"
+
+msgid "Not before"
+msgstr "Non prima"
+
 #
 #, python-format
 msgid ""
@@ -4638,6 +4815,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Voci feed non recuperate"
 
+msgid "Not-Associated"
+msgstr "Non associato"
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4679,6 +4859,9 @@ msgstr "Ok, rimuovere un'altra estensione"
 msgid "OK, remove some extensions"
 msgstr "Ok, rimuovere alcune estensioni"
 
+msgid "ONID"
+msgstr "ONID"
+
 #
 msgid "OSD Settings"
 msgstr "Configurazione OSD"
@@ -4748,8 +4931,7 @@ msgstr "Aprire il menu del plugin"
 msgid "Optionally enter your name if you want to."
 msgstr "E' possibile (ma facoltativo) indicare il proprio nome."
 
-#
-msgid "Orbital Position"
+msgid "Orbital position"
 msgstr "Posizione orbitale"
 
 #
@@ -4775,10 +4957,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr "PID PCR"
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr "PID PMT"
+
 #
 msgid "Package list update"
 msgstr "Aggiornamento elenco pacchetti"
@@ -4838,7 +5026,7 @@ msgid "Pause movie at end"
 msgstr "A termine riproduzione, mettere in pausa"
 
 msgid "People & Blogs"
-msgstr "Gente & Blog"
+msgstr "Gente & blog"
 
 msgid "PermanentClock shows the clock permanently on the screen."
 msgstr "Plugin per visualizzare un orologio in modo permanente sullo schermo."
@@ -5228,10 +5416,6 @@ msgid "Poland"
 msgstr "Polonia"
 
 #
-msgid "Polarity"
-msgstr "Polarità"
-
-#
 msgid "Polarization"
 msgstr "Polarizzazione"
 
@@ -5267,6 +5451,9 @@ msgstr "Porta D"
 msgid "Portuguese"
 msgstr "Portoghese"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr "Posizione dei timer conclusi in elenco timer"
+
 #
 msgid "Positioner"
 msgstr "Motore"
@@ -5483,6 +5670,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr "Plugin per visualizzare RSS"
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr "Driver wireless-n USB RT8070/RT3070/RT3370"
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5590,6 +5780,9 @@ msgstr "Registrazioni"
 msgid "Recordings always have priority"
 msgstr "Le registrazioni hanno sempre la priorità"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr "Reindirizzare notifiche a Growl, Snarlo, Prowl o Syslog"
+
 msgid "Reenter new PIN"
 msgstr "Ripetere il nuovo PIN"
 
@@ -5813,6 +6006,9 @@ msgstr "Plugin per ripristinare il firmware del Dreambox da una penna USB"
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr "Restringere \"dopo l'evento\" a un preciso intervallo?"
 
+msgid "Restrict to events on certain dates"
+msgstr "Limitarsi agli eventi in date determinate"
+
 #
 msgid "Resume from last position"
 msgstr "Riprendere dall'ultima posizione"
@@ -5852,9 +6048,8 @@ msgstr "Velocità REW"
 msgid "Right"
 msgstr "Destro"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr "Roll-off"
 
 #
 msgid "Rotor turning speed"
@@ -5864,6 +6059,9 @@ msgstr "Velocità rotazione motore"
 msgid "Running"
 msgstr "Attivato"
 
+msgid "Running in testmode"
+msgstr "Modalità test attiva"
+
 #
 msgid "Russia"
 msgstr "Russia"
@@ -5876,6 +6074,21 @@ msgstr "Russo"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr "Modalità SD25/50Hz interlacciata"
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr "Modalità SD 25/50Hz progressiva"
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr "Modalità SD 30/60Hz interlacciata"
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr "Modalità SD 30/60Hz progressiva"
+
+msgid "SID"
+msgstr "SID"
+
 msgid "SINGLE LAYER DVD"
 msgstr "DVD singolo strato"
 
@@ -5891,6 +6104,26 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+"SVDRP è un protocollo sviluppato in ambiente VDR per controllare a distanza "
+"un set-top box.\n"
+"Questo plugin supporta solo un subset di SVDRP e si avvia automaticamente "
+"con la configurazione predefinita.\n"
+"\n"
+"Con ogni probabilità questo plugin non è necessario, potendo contare in "
+"alternativa sull'interfaccia WEB di enigma2."
+
+msgid "SVDRP server for Enigma2"
+msgstr "Server SVDRP per Enigma2"
+
 #
 msgid "Sat"
 msgstr "Sab"
@@ -6090,7 +6323,7 @@ msgstr ""
 "motorizzata"
 
 msgid "Science & Technology"
-msgstr "Scienza e Tecnologia"
+msgstr "Scienza e tecnologia"
 
 msgid "Search Term(s)"
 msgstr "Criteri di ricerca"
@@ -6352,6 +6585,9 @@ msgstr ""
 "Canale non trovato!\n"
 "(SID non trovato in PAT)"
 
+msgid "Service reference"
+msgstr "Riferimento canale"
+
 #
 msgid "Service scan"
 msgstr "Ricerca canali"
@@ -6488,6 +6724,9 @@ msgstr "Mostrare il progresso evento in selezione canali"
 msgid "Show in extension menu"
 msgstr "Mostrare nel menu estensioni"
 
+msgid "Show info screen"
+msgstr "Mostrare la finestra informazioni"
+
 #
 msgid "Show infobar on channel change"
 msgstr "Mostrare barra informazioni su cambio canale"
@@ -6500,6 +6739,9 @@ msgstr "Mostrare barra informazioni su cambio evento"
 msgid "Show infobar on skip forward/backward"
 msgstr "Mostrare barra informazioni su FFW/REW"
 
+msgid "Show notification on conflicts"
+msgstr "Mostrare avviso in caso di conflitti"
+
 #
 msgid "Show positioner movement"
 msgstr "Mostrare il movimento motore"
@@ -6769,6 +7011,10 @@ msgstr "Voltaggio standby ventola %d"
 msgid "Start Webinterface"
 msgstr "Avviare l'interfaccia web"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+"Permette di avviare facilmente i plugin multimediali tramite il tasto PVR."
+
 #
 msgid "Start from the beginning"
 msgstr "Partire dall'inizio"
@@ -6887,6 +7133,9 @@ msgstr "Dom"
 msgid "Sunday"
 msgstr "Domenica"
 
+msgid "Support \"Fast Scan\"?"
+msgstr " Supportare \\\"Fast Scan\\\"?"
+
 msgid "Swap Services"
 msgstr "Scambiare canali"
 
@@ -6909,13 +7158,8 @@ msgstr "Sottocanale precedente"
 msgid "Switchable tuner types:"
 msgstr "Tipi di tuner commutabili:"
 
-#
-msgid "Symbol Rate"
-msgstr "Symbol Rate"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolrate"
+msgid "Symbol rate"
+msgstr "Symbol rate"
 
 #
 msgid "System"
@@ -6935,10 +7179,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "File TS troppo grande per ISO9660 livello 1!"
 
+msgid "TSID"
+msgstr "TSID"
+
+msgid "TV Charts of all users"
+msgstr "Classifiche TV di tutti gli utenti"
+
 #
 msgid "TV System"
 msgstr "Standard TV"
 
+msgid "TXT PID"
+msgstr "PID TXT"
+
 #
 msgid "Table of content for collection"
 msgstr "Elenco contenuti raccolta"
@@ -6971,6 +7224,9 @@ msgstr "Taiwan"
 msgid "Temperature and Fan control"
 msgstr "Controllo temperatura e ventola"
 
+msgid "Temperature-dependent fan control."
+msgstr "Controllo ventola in funzione della temperatura."
+
 #
 msgid "Terrestrial"
 msgstr "Terrestre"
@@ -7716,10 +7972,6 @@ msgid "Translation:"
 msgstr "Traduzione:"
 
 #
-msgid "Transmission Mode"
-msgstr "Modalità trasmissione"
-
-#
 msgid "Transmission mode"
 msgstr "Modalità trasmissione"
 
@@ -7727,10 +7979,6 @@ msgstr "Modalità trasmissione"
 msgid "Transponder"
 msgstr "Transponder"
 
-#
-msgid "Transponder Type"
-msgstr "Tipo transponder"
-
 msgid "Travel & Events"
 msgstr "Viaggi & Eventi"
 
@@ -7857,6 +8105,9 @@ msgstr "Annullare inst."
 msgid "Undo uninstall"
 msgstr "Annull. rimoz."
 
+msgid "Unencrypted"
+msgstr "In chiaro"
+
 msgid "UnhandledKey"
 msgstr "Tasto non gestito"
 
@@ -7884,6 +8135,9 @@ msgstr "Stati Uniti"
 msgid "Universal LNB"
 msgstr "LNB Universale"
 
+msgid "Unknown"
+msgstr "Sconosciuto"
+
 msgid "Unknown network adapter."
 msgstr "Interfaccia di rete sconosciuta."
 
@@ -7920,8 +8174,8 @@ msgid ""
 "Update done... The genuine dreambox test will now be rerun and should not "
 "ask you to update again."
 msgstr ""
-"Aggiornamento eseguito... Il test Genuine Dreambox verrà eseguito di nuovo e "
-"non dovrebbe richiedere di aggiornare nuovamente."
+"Aggiornamento eseguito... Il test di genuinità verrà ora rieseguito e non "
+"dovrebbe richiedere ulteriori aggiornamenti"
 
 msgid "Updatefeed not available."
 msgstr "Feed aggiornamenti non disponibile."
@@ -7930,8 +8184,8 @@ msgstr "Feed aggiornamenti non disponibile."
 msgid ""
 "Updating failed. Nothing is broken, just the update couldn't be applied."
 msgstr ""
-"Aggiornamento fallito. Nulla di grave, ma l'aggiornamento non può essere "
-"applicato."
+"Aggiornamento fallito. Nulla di irreparabile, ma non è stato possibile "
+"applicare l'aggiornamento."
 
 msgid "Updating finished. Here is the result:"
 msgstr "Aggiornamento terminato. Esito: "
@@ -7941,7 +8195,7 @@ msgid "Updating software catalog"
 msgstr "Aggiornamento catalogo software in corso"
 
 msgid "Updating, please wait..."
-msgstr "Attendere, aggiornamento in corso..."
+msgstr "Aggiornamento in corso, attendere..."
 
 #
 msgid "Updating... Please wait... This can take some minutes..."
@@ -7999,10 +8253,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr "Plugin per configurare diversi telecomandi per Dreambox multipli."
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Riproduzione discontinua a velocità maggiore di"
-
-#
 msgid "Use power measurement"
 msgstr "Usare misurazione di potenza"
 
@@ -8081,14 +8331,23 @@ msgstr "VMGM (trailer introduttivo)"
 msgid "Vali-XD skin"
 msgstr "Skin HD by Vali"
 
+msgid "Vali.HD.atlantis skin"
+msgstr "Skin HD Atlantis by Vali"
+
 msgid "Vali.HD.nano skin"
 msgstr "Skin Vali.HD.nano"
 
+msgid "Vali.HD.warp skin"
+msgstr "Skin HD warp by Vali"
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 "Verificare l'autenticità del Dreambox tramite il plugin Genuine Dreambox!"
 
+msgid "Verifying your internet connection..."
+msgstr "Verifica della connessione internet in corso..."
+
 #
 msgid "Vertical"
 msgstr "Verticale"
@@ -8105,6 +8364,9 @@ msgstr "Wizard regolazione fine video"
 msgid "Video Output"
 msgstr "Uscita video"
 
+msgid "Video PID"
+msgstr "PID Video"
+
 #
 msgid "Video Setup"
 msgstr "Configurazione video"
@@ -8346,6 +8608,9 @@ msgstr "WheatherPlugin fornisce informazioni metereologiche sul Dreambox."
 msgid "Weatherforecast on your Dreambox"
 msgstr "Info meteo sul Dreambox"
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr "PC-Editor di bouquet via web"
+
 #
 msgid "Webinterface"
 msgstr "Webinterface"
@@ -8526,6 +8791,14 @@ msgstr "Cosa si intende cercare?"
 msgid "What to do with submitted crashlogs?"
 msgstr "Cosa fare con i crashlog inoltrati?"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+"Se \\\"Fast Scan\\\" è abilitato, il tipo di canale è ignorato. Non è "
+"necessario abilitare il parametro, a meno che l'immagine lo supporti e sia "
+"utilizzato.  "
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8569,6 +8842,15 @@ msgstr "Rete wireless"
 msgid "Wireless Network State"
 msgstr "Stato rete wireless"
 
+msgid "Wireless network connection setup"
+msgstr "Configurazione connessione rete wireless"
+
+msgid "Wireless network connection setup."
+msgstr "Configurazione connessione rete wireless."
+
+msgid "Wireless network state"
+msgstr "Stato rete wireless"
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8838,6 +9120,15 @@ msgstr ""
 "[Descrizione] rappresenta solo la voce mostrata nell'Anteprima, mentre "
 "[Stringa di confronto] rappresenta la voce utilizzata per la ricerca nell'EPG"
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+"EasyInfo permette la gestione dei plugin per EPG attraverso l'uso del tasto "
+"Info. Dispone anche di un nuovo visualizzatore di eventi in onda-prossimi. "
+"Include anche Easy-EPG, un browser grafico per EPG."
+
 msgid "You cannot delete this!"
 msgstr "Impossibile rimuovere!"
 
@@ -9047,6 +9338,9 @@ msgstr "Nome (facoltativo):"
 msgid "Your network configuration has been activated."
 msgstr "Configurazione di rete attivata correttamente."
 
+msgid "Your network is not working. Please try again."
+msgstr "La rete non sembra funzionare. Provare di nuovo."
+
 #
 msgid "Your network mount has been activated."
 msgstr "Mount di rete attivato."
@@ -9275,6 +9569,12 @@ msgstr "CAIds assegnati:"
 msgid "assigned Services/Provider:"
 msgstr "Canali/Provider assegnati:"
 
+msgid "at beginning"
+msgstr "all'inizio"
+
+msgid "at end"
+msgstr "alla fine"
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9293,6 +9593,9 @@ msgstr "Tracce audio"
 msgid "auto"
 msgstr "Auto"
 
+msgid "autotimers need a match attribute"
+msgstr "Autotimer richiede una corrispondenza"
+
 #
 msgid "available"
 msgstr "sono disponibili."
@@ -9325,6 +9628,9 @@ msgstr "Lista nera"
 msgid "blue"
 msgstr "Blu"
 
+msgid "bob"
+msgstr "bob"
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9364,6 +9670,9 @@ msgstr "Cancellare playlist"
 msgid "complex"
 msgstr "Complesso"
 
+msgid "config changed."
+msgstr "Comfigurazione modificata."
+
 #
 msgid "config menu"
 msgstr "Menu configurazione"
@@ -9395,6 +9704,13 @@ msgstr "non può essere rimosso"
 msgid "create directory"
 msgstr "Creare cartella"
 
+msgid "creates virtual series folders from episodes"
+msgstr "Plugin per creare cartelle virtuali dagli episodi delle serie"
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+"Plugin per creare cartelle virtuali dai set di episodi delle serie registrati"
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr "Immagine installata: %s"
@@ -9407,6 +9723,9 @@ msgstr "Giornaliero"
 msgid "day"
 msgstr "Giorno"
 
+msgid "default"
+msgstr "Predefinito"
+
 msgid "delete"
 msgstr "Rimuovere"
 
@@ -9464,6 +9783,9 @@ msgstr "Uscire senza registrare"
 msgid "done!"
 msgstr "Fatto!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr "Driver per penne USB basate su chipset Realtek"
+
 #
 msgid "edit alternatives"
 msgstr "Edit alternative"
@@ -9736,6 +10058,9 @@ msgstr "Minuto"
 msgid "minutes"
 msgstr "Minuti"
 
+msgid "missing parameter \"id\""
+msgstr "Parametro \\\"id\\\" mancante"
+
 #
 msgid "month"
 msgstr "Mese"
@@ -9931,9 +10256,6 @@ msgstr "Rosso"
 msgid "redesigned Kerni-HD1 skin"
 msgstr "Skin HD1 by Kerni ridisegnata"
 
-msgid "redirect notifications to Growl"
-msgstr "Plugin per ridirezionare notifiche a Growl"
-
 #
 msgid "remove a nameserver entry"
 msgstr "Rimuovere voce nameserver"
@@ -10265,6 +10587,10 @@ msgstr "Info tempo, capitolo, audio, sottotitoli -> on/off"
 msgid "tuner is not supported"
 msgstr "Tuner non supportato"
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr "Impossibile trovare il timer con id %i"
+
 #
 msgid "unavailable"
 msgstr "non disponibile"
@@ -10334,6 +10660,9 @@ msgstr "Settimanale"
 msgid "whitelist"
 msgstr "Lista bianca"
 
+msgid "wireless network interface"
+msgstr "Interfaccia di rete wireless"
+
 #
 msgid "working"
 msgstr "Test in corso..."
@@ -10399,31 +10728,14 @@ msgstr "Zap eseguito"
 #~ msgid "50 Hz"
 #~ msgstr "50Hz"
 
+#~ msgid "A BackToTheRoots-Skin ... or good old times."
+#~ msgstr "Una skin che ci riporta alle origini... o ai bei vecchi tempi."
+
 #
 #~ msgid "Advanced"
 #~ msgstr "Avanzato"
 
 #
-#~ msgid ""
-#~ "Autoresolution Plugin Testmode:\n"
-#~ "Is %s ok?"
-#~ msgstr ""
-#~ "Plugin Autoresolution in modalità test:\n"
-#~ "La modalità %s è corretta?"
-
-#~ msgid "Autoresolution Switch"
-#~ msgstr "Switch Autoresolution"
-
-#~ msgid "Autoresolution is not working in Scart/DVI-PC Mode"
-#~ msgstr "Autoresolution non è disponibile in modalità Scart/DVI-PC"
-
-#~ msgid "Autoresolution settings"
-#~ msgstr "Configurazione Autoresolution"
-
-#~ msgid "Autoresolution videomode setup"
-#~ msgstr "Configurazione modalità video Autoresolution"
-
-#
 #~ msgid "Backup"
 #~ msgstr "Backup"
 
@@ -10480,6 +10792,22 @@ msgstr "Zap eseguito"
 #~ msgstr "Selezionare origine"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Code rate alto"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Code rate basso"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Coderate HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Coderate LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Card Compact flash"
 
@@ -10525,15 +10853,6 @@ msgstr "Zap eseguito"
 #~ msgid "Default settings"
 #~ msgstr "Configurazioni predefinite"
 
-#~ msgid "Deinterlacer mode for interlaced content"
-#~ msgstr "Modalità deinterlacer per contenuti interlacciati"
-
-#~ msgid "Deinterlacer mode for progressive content"
-#~ msgstr "Modalità deinterlacer per contenuti progressivi"
-
-#~ msgid "Delay x seconds after service started"
-#~ msgstr "Ritardo in secondi dopo la sintonia canale"
-
 #~ msgid "Delete selected mount"
 #~ msgstr "Cancellare il mount selezionato"
 
@@ -10579,21 +10898,6 @@ msgstr "Zap eseguito"
 #~ msgid "Edit IPKG source URL..."
 #~ msgstr "Mod. URL sorgenti IPKG..."
 
-#~ msgid "Enable 1080p24 Mode"
-#~ msgstr "Abilitare modalità 1080p24"
-
-#~ msgid "Enable 1080p25 Mode"
-#~ msgstr "Abilitare modalità 1080p25"
-
-#~ msgid "Enable 1080p30 Mode"
-#~ msgstr "Abilitare modalità 1080p30"
-
-#~ msgid "Enable 720p24 Mode"
-#~ msgstr "Abilitare modalità 720p24"
-
-#~ msgid "Enable Autoresolution"
-#~ msgstr "Abilitare Autoresolution"
-
 #
 #~ msgid "Encrypted: %s"
 #~ msgstr "Codificata: %s"
@@ -10616,6 +10920,14 @@ msgstr "Zap eseguito"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Avviare FFW a velocità"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Avviare REW a velocità"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "WLAN: inserire nome rete/SSID:"
 
@@ -10642,6 +10954,10 @@ msgstr "Zap eseguito"
 #~ msgstr "I processi seguenti saranno eseguiti premendo \"Continuare\"."
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "FRC durante riproduzione discontinua"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Indirizzo IP Fritz!Box FON"
 
@@ -10657,17 +10973,45 @@ msgstr "Zap eseguito"
 #~ msgid "General PCM delay"
 #~ msgstr "Ritardo generale PCM"
 
-#~ msgid "HD Interlace Mode"
-#~ msgstr "Modalità HD interlacciata"
+#~ msgid ""
+#~ "Growlee allows your Dreambox to send short messages using the growl "
+#~ "protocol\n"
+#~ "like Recording started notifications to a PC running a growl client"
+#~ msgstr ""
+#~ "Growlee consente al Dreambox l'invio di brevi messaggi (come l'avvio di "
+#~ "una regisrazione)\n"
+#~ "attraverso il protocollo growl a un PC su cui sia attivo un client growl"
+
+#
+#~ msgid "Guard Interval"
+#~ msgstr "Intervallo di guardia"
 
-#~ msgid "HD Progressive Mode"
-#~ msgstr "Modalità HD progressiva"
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Modalità intervallo di guardia"
 
 #
 #~ msgid "Here is a small overview of the available icon states."
 #~ msgstr "Ecco una piccola anteprima delle icone di stato disponibili."
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Informazioni gerarchia"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Modalità gerarchica"
+
+#
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Abilitando questa opzione, un timer verrà considerato già esistente se la "
+#~ "registrazione effettuata da quest'ultimo avrà già raggiunto almeno l'80% "
+#~ "del totale."
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Se questa pagina è visibile, premere OK."
 
@@ -10739,6 +11083,10 @@ msgstr "Zap eseguito"
 #~ msgstr "Aggiornamento online"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Posizione orbitale"
+
+#
 #~ msgid "Package details for: "
 #~ msgstr "Dettagli pacchetto per: "
 
@@ -10785,6 +11133,10 @@ msgstr "Zap eseguito"
 #~ msgid "Plugin manager process information..."
 #~ msgstr "Informazioni processi gestore plugin..."
 
+#
+#~ msgid "Polarity"
+#~ msgstr "Polarità"
+
 #~ msgid ""
 #~ "Power state to change to after recordings. Select \"standard\" to not "
 #~ "change the default behaviour of enigma2 or values changed by yourself."
@@ -10849,20 +11201,9 @@ msgstr "Zap eseguito"
 #~ msgid "Retrieving network information. Please wait..."
 #~ msgstr "Attendere, recupero informazioni sulla rete in corso..."
 
-#~ msgid "Running in testmode"
-#~ msgstr "Modalità test attiva"
-
-#~ msgid "SD 25/50HZ Interlace Mode"
-#~ msgstr "Modalità SD25/50Hz interlacciata"
-
-#~ msgid "SD 25/50HZ Progressive Mode"
-#~ msgstr "Modalità SD 25/50Hz progressiva"
-
-#~ msgid "SD 30/60HZ Interlace Mode"
-#~ msgstr "Modalità SD 30/60Hz interlacciata"
-
-#~ msgid "SD 30/60HZ Progressive Mode"
-#~ msgstr "Modalità SD 30/60Hz progressiva"
+#
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
 
 #
 #~ msgid "Satteliteequipment"
@@ -10920,9 +11261,6 @@ msgstr "Zap eseguito"
 #~ msgid "Set as default Interface"
 #~ msgstr "-> interfaccia predefinita"
 
-#~ msgid "Show info screen"
-#~ msgstr "Mostrare la finestra informazioni"
-
 #
 #~ msgid "Skin..."
 #~ msgstr "Skin..."
@@ -10958,6 +11296,14 @@ msgstr "Zap eseguito"
 #~ msgstr "Cambiare audio"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbol Rate"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolrate"
+
+#
 #~ msgid ""
 #~ "The USB stick is now bootable. Do you want to download the latest image "
 #~ "from the feed server and save it on the stick?"
@@ -11058,6 +11404,14 @@ msgstr "Zap eseguito"
 #~ "3) Attendere l'avvio e seguire le istruzioni della configurazione guidata."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Modalità trasmissione"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Tipo transponder"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -11100,6 +11454,10 @@ msgstr "Zap eseguito"
 #~ msgstr "Usare dominio/username per domini Windows come nome user!"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Riproduzione discontinua a velocità maggiore di"
+
+#
 #~ msgid "View list of available Satteliteequipment extensions."
 #~ msgstr "Elenco estensioni dispositivo satellitare disponibili."
 
@@ -11200,16 +11558,10 @@ msgstr "Zap eseguito"
 #~ msgid "assigned Services/Provider"
 #~ msgstr "Canali/Provider assegnati"
 
-#~ msgid "bob"
-#~ msgstr "bob"
-
 #
 #~ msgid "choose destination directory"
 #~ msgstr "Selezionare cartella destinazione"
 
-#~ msgid "default"
-#~ msgstr "Predefinito"
-
 #
 #~ msgid "enigma2 and network"
 #~ msgstr "enigma2 e rete"
@@ -11246,6 +11598,9 @@ msgstr "Zap eseguito"
 #~ msgid "open virtual keyboard input help"
 #~ msgstr "Aprire aiuto imput tastiera virtuale"
 
+#~ msgid "redirect notifications to Growl"
+#~ msgstr "Plugin per ridirezionare notifiche a Growl"
+
 #~ msgid "required medium type:"
 #~ msgstr "tipo di supporto richiesto:"
 
index fe69c5c..7c97f79 100755 (executable)
--- a/po/lt.po
+++ b/po/lt.po
@@ -3,8 +3,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
-"PO-Revision-Date: 2011-01-28 21:11+0200\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
+"PO-Revision-Date: 2011-04-21 13:55+0200\n"
 "Last-Translator: Audronis <audrgrin@takas.lt>\n"
 "Language-Team: Adga / enigma2 (c) <audrgrin@takas.lt>\n"
 "Language: lt\n"
@@ -131,22 +131,22 @@ msgid " "
 msgstr " "
 
 msgid " Results"
-msgstr "Rezultatai"
+msgstr " Rezultatai"
 
 msgid " extensions."
-msgstr "išplėtimai."
+msgstr " išplėtimai."
 
 msgid " ms"
-msgstr "ms"
+msgstr " ms"
 
 msgid " packages selected."
-msgstr "paketai išsirinkti."
+msgstr " paketai išsirinkti."
 
 msgid " updates available."
-msgstr "pasiekiami atnaujinimai."
+msgstr " pasiekiami atnaujinimai."
 
 msgid " wireless networks found!"
-msgstr "rastas belaidis tinklas!"
+msgstr " rastas belaidis tinklas!"
 
 #
 msgid "#000000"
@@ -187,6 +187,14 @@ msgid "%H:%M"
 msgstr "%H:%M"
 
 #, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+"%d konfliktas (-ai), su kuriais, kai bandote pridėti naujus laikmačiai:\n"
+"%s"
+
+#, python-format
 msgid "%d jobs are running in the background!"
 msgstr "%d darbai, veikiantys fone!"
 
@@ -219,6 +227,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr "%s: %s ne %s"
+
 msgid "(ZAP)"
 msgstr "(JUNGTI)"
 
@@ -367,12 +379,12 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr "BackToTheRoots-Tema .. tačiau su Warp-8 greičiu.."
+
 msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr "Atgal į TheRoots-Temą .. arba kaip senais gerais laikais."
 
-msgid "A BackToTheRoots-Skin ... or good old times."
-msgstr "Atgal į TheRoots-Temą ... arba kaip senais gerais laikais."
-
 msgid "A basic ftp client"
 msgstr "Pagrindinis ftp klientas"
 
@@ -391,6 +403,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Demonstracinė papildoma programa TPM vartojimui"
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr "Dreambox modeliavimas iš SG-Atlantis monitoriaus."
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -413,6 +428,9 @@ msgstr "Grafinis EPG visiems kanalams iš specifinio paketo"
 msgid "A graphical EPG interface"
 msgstr "Grafinė EPG sąsaja"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr "Grafinė EPG sąsaja ir EPG įrankių valdymas"
+
 msgid "A graphical EPG interface."
 msgstr "Grafinė EPG sąsaja."
 
@@ -869,6 +887,9 @@ msgstr "Klausti vartotojo"
 msgid "Aspect Ratio"
 msgstr "Vaizdo formatas"
 
+msgid "Aspect ratio"
+msgstr "Vaizdo formatas"
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Priskirti tiekėjus/kanalus/caids CI moduliui"
 
@@ -883,6 +904,9 @@ msgstr "Garsas"
 msgid "Audio Options..."
 msgstr "Garso nustatymai..."
 
+msgid "Audio PID"
+msgstr "Garso PID"
+
 msgid "Audio Sync"
 msgstr "Garso sinchronizavimas"
 
@@ -951,6 +975,15 @@ msgstr ""
 "Autolaikmatis skanuoja EPG ir kuria Laikmačius priklausomai nuo vartotojo "
 "apibrėžtų paieškos kriterijų."
 
+msgid "AutoTimer was added successfully"
+msgstr "Autolaikmatis pridėtas sėkmingai"
+
+msgid "AutoTimer was changed successfully"
+msgstr "Autolaikmatis pakeistas sėkmingai"
+
+msgid "AutoTimer was removed"
+msgstr "Autolaikmatis pašalintas"
+
 #
 msgid "Automatic"
 msgstr "Automatinis"
@@ -987,6 +1020,30 @@ msgstr "Automatiškai atnaujinti EPG"
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr "Automatiškai siųsti crashlogs į Dream Multimediją"
 
+#
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+"Auto rezoliucijos papildomos programos testavimas:\n"
+"Yra %s gerai?"
+
+#
+msgid "Autoresolution Switch"
+msgstr "Auto rezoliucijos perjungėjas"
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Auto rezoliucija neveikia Scart/DVI-PC režime"
+
+#
+msgid "Autoresolution settings"
+msgstr "Autorezoliucijos nustatymai"
+
+#
+msgid "Autoresolution videomode setup"
+msgstr "Auto rezoliucijos vaizdo būdo valdymas"
+
 msgid "Autos & Vehicles"
 msgstr "Automobiliai ir transporto priemonės"
 
@@ -1022,6 +1079,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Atgal"
 
+msgid "Back, lower USB Slot"
+msgstr "Galinis, apatinis USB lizdas"
+
+msgid "Back, upper USB Slot"
+msgstr "Galinis, viršutinis USB lizdas"
+
 #
 msgid "Background"
 msgstr "Fonas"
@@ -1116,6 +1179,13 @@ msgstr "Brazilija"
 msgid "Brightness"
 msgstr "Šviesumas"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+"Ieškoti ORF ir Sat1 Teleteksto nepriklausomo nuo kanalo. Tam reikia "
+"interneto prisijungimo."
+
 msgid "Browse for and connect to network shares"
 msgstr "Ieškoti ir jungtis prie tinklo bendrinimo"
 
@@ -1143,6 +1213,21 @@ msgstr "Irašyti savo įrašus į DVD"
 msgid "Bus: "
 msgstr "Bus:"
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+"Įjungus tai, įvykiai nebus suderinti, jei jie neįvyks tam tikromis datomis."
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+"Įjungdami tai jūs būsite informuotas apie laikmačio konfliktus, surastus per "
+"automatizuotą apklausinėjimą. Nėra jokio apimto intelekto, tokiu būdu tai "
+"galėtų trukdyti jus apie tą patį konfliktą nuolat."
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1390,18 +1475,11 @@ msgstr "Uždaryti ir išsaugoti pakeitimus"
 msgid "Close title selection"
 msgstr "Uždaryti pavadinimo pasirinkimą"
 
-msgid "Code rate high"
-msgstr "Aukšta kodavimo norma"
-
-msgid "Code rate low"
-msgstr "Žema kodavimo norma"
-
-#
-msgid "Coderate HP"
-msgstr "Kodavimo greitis HP"
+msgid "Code rate HP"
+msgstr "Kodinė norma HP"
 
-msgid "Coderate LP"
-msgstr "Kodavimo norma LP"
+msgid "Code rate LP"
+msgstr "Kodinė norma LP"
 
 #
 msgid "Collection name"
@@ -1580,6 +1658,10 @@ msgstr "Negalima atidaryti paveikslėlio paveikslėlyje"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Neįrašyta dėl prieštaringo laikmačio %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr "Negalėjo įrašyti dėl negaliojančios paslaugos %s"
+
 msgid "Crashlog settings"
 msgstr "Crashlog nustatymai"
 
@@ -1744,6 +1826,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr "DVD grotuvas"
+
 #
 msgid "DVD File Browser"
 msgstr "DVD failų naršyklė"
@@ -1830,10 +1915,22 @@ msgid "Define a startup service for your Dreambox."
 msgstr "Nustatykite paleidimo kanalą jūsų Dreambox'e."
 
 #
+msgid "Deinterlacer mode for interlaced content"
+msgstr "Deinterlacer būdas besikeičiančiam turiniui"
+
+#
+msgid "Deinterlacer mode for progressive content"
+msgstr "Deinterlacer būdas progresyviam turiniui"
+
+#
 msgid "Delay"
 msgstr "Užlaikymas"
 
 #
+msgid "Delay x seconds after service started"
+msgstr "Užlaikyti x sekundžių po kanalo starto"
+
+#
 msgid "Delete"
 msgstr "Trinti"
 
@@ -2011,6 +2108,14 @@ msgstr ""
 "Tikrai norite atlikti failų sistemos tikrinimą?\n"
 "Tai gali trukti ilgą laiką!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+"Jūs iš tikrųjų norite pašalinti %s\n"
+"%s?"
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2208,6 +2313,12 @@ msgstr "Dreambox formatuoja DVD duomenis (suderinama su HDTV)"
 msgid "Dreambox software because updates are available."
 msgstr "Dreambox programinės įrangos atnaujinimas, nes yra pasiekiamas."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr "Draiveris dėl Ralink RT8070/RT3070/RT3370 belaidžių USB įrenginių."
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr "Draiveris dėl r8712u belaidžių USB įrenginių.."
+
 #
 msgid "Duration: "
 msgstr "Trukmė:"
@@ -2353,9 +2464,29 @@ msgid "Enable /media"
 msgstr "Įjungta /medija"
 
 #
+msgid "Enable 1080p24 Mode"
+msgstr "Įjungti 1080p24 būdą"
+
+#
+msgid "Enable 1080p25 Mode"
+msgstr "Įjungti 1080p25 būdą"
+
+#
+msgid "Enable 1080p30 Mode"
+msgstr "Įjungti 1080p30 būdą"
+
+#
 msgid "Enable 5V for active antenna"
 msgstr "Įjungti 5V aktyviai antenai"
 
+#
+msgid "Enable 720p24 Mode"
+msgstr "Įjungti 720p24 būdą"
+
+#
+msgid "Enable Autoresolution"
+msgstr "Įjungti autorezoliuciją"
+
 msgid "Enable Cleanup Wizard?"
 msgstr "Įjungti išvalymo vedlį?"
 
@@ -2462,15 +2593,9 @@ msgstr ""
 "\n"
 "© 2006 - Stephan Reichholf"
 
-msgid "Enter Fast Forward at speed"
-msgstr "Eiti į greitą persukimą"
-
 msgid "Enter IP to scan..."
 msgstr "Įrašykite IP skanavimui..."
 
-msgid "Enter Rewind at speed"
-msgstr "Eiti į greitą atsukimą"
-
 msgid "Enter main menu..."
 msgstr "Eiti į pagrindinį meniu..."
 
@@ -2529,6 +2654,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estų"
 
+msgid "Ethernet network interface"
+msgstr "Ethernet tinklo sąsaja"
+
 msgid "Eventview"
 msgstr "Įvykių peržiūra"
 
@@ -2688,6 +2816,13 @@ msgstr "Baigtas jūsų tinklo paleidimas iš naujo"
 msgid "Finnish"
 msgstr "Suomių"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+"Pirma diena, kuri atitiktų įvykius. Joks atvejis, kuris prasideda prieš šią "
+"datą nebus suderintas."
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr "Pirma savo temos stiliaus generacija su Ai.HD-Control priedu."
 
@@ -2707,14 +2842,20 @@ msgstr "Formatas"
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+"Surasta iš viso %d atitikimo Įvykių.\n"
+"%d Laikmatis buvo pridėtas, ir %d pakeistas, %d konfliktai,su kuriais "
+"susiduriama."
+
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
 "%d Timer were added and %d modified."
 msgstr ""
 "Surasta iš viso %d atitikimo įvykių.\n"
 "%d Laikmatis buvo pridėtas ir %d pakeistas."
 
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Rėmo pakartojimo skaičiavimas per nelygų vingiavimą"
-
 msgid "Frame size in full view"
 msgstr "Kadro dydis pilname vaizde"
 
@@ -2748,6 +2889,9 @@ msgstr "Frizų"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr "FritzCall rodo gaunamus skambučius į jūsų Fritz! Box jūsų Dreambox'e."
 
+msgid "Front USB Slot"
+msgstr "Priekinis USB lizdas"
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr "Priekinės ir /tmp/mmi.socket"
 
@@ -2793,6 +2937,10 @@ msgstr "Bendras PCM užlaikymas"
 msgid "General PCM delay (ms)"
 msgstr "Bendras PCM užlaikymas (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+"Sukuria ir parodo TV laidas visiems vartotojams, turintiems įdiegtą šį priedą"
+
 msgid "Genre"
 msgstr "Žanras"
 
@@ -2861,23 +3009,26 @@ msgid "Green boost"
 msgstr "Žalio didėjimas"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
-"Growlee leidžia jūsų Dreambox siųsti trumpąsias žinutes, naudojant growl "
-"protokolą\n"
-"Ä®raÅ¡as paleidžia praneÅ¡imus Ä¯ PC, veikiant growl klientui"
+"Growlee leidžia, kad jūsų Dreambox persiųstų pranešimus, kaip 'Įrašas "
+"prasidėjo' į asmeninį kompiuterį ar syslog suderinamą klientą ar tiesiogiai "
+"į iPhone."
 
-msgid "Guard Interval"
+msgid "Guard interval"
 msgstr "Apsaugos intervalas"
 
-msgid "Guard interval mode"
-msgstr "Apsaugos intervalo režimas"
-
 msgid "Guess existing timer based on begin/end"
 msgstr "Spėti esamą laikmatį remiantis pradžia/pabaiga"
 
+msgid "HD Interlace Mode"
+msgstr "HD keitimosi būdas"
+
+msgid "HD Progressive Mode"
+msgstr "HD progresyvus būdas"
+
 msgid "HD videos"
 msgstr "HD vaizdai"
 
@@ -2899,18 +3050,18 @@ msgstr "Kietas diskas išsijungs po"
 msgid "Help"
 msgstr "Pagalba"
 
+msgid "Hidden network"
+msgstr "Paslėptas tinklas"
+
 msgid "Hidden network SSID"
 msgstr "Paslėptas tinklo SSID"
 
 msgid "Hidden networkname"
 msgstr "Paslėptas tinklo pavadinimas"
 
-msgid "Hierarchy Information"
+msgid "Hierarchy info"
 msgstr "Hierarchijos informacija"
 
-msgid "Hierarchy mode"
-msgstr "Hierarchijos režimas"
-
 msgid "High bitrate support"
 msgstr "Aukštos bitų spartos palaikymas"
 
@@ -2968,10 +3119,10 @@ msgstr "Islandų"
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"Jei tai įjungiama į egzistuojantį laikmatį, tai svarstoma įrašymo atveju jei "
-"jis įrašys bent jau 80% of to."
+"Jei tai įjungta jau esančiam laikmačiui, tai bus apsvarstytas įrašymo "
+"atvejis, jei įrašyta ne mažiau kaip 80%% nuo jo."
 
 msgid ""
 "If you see this, something is wrong with\n"
@@ -3058,6 +3209,12 @@ msgstr "Informacija"
 msgid "Init"
 msgstr "Inicializacija"
 
+msgid "Initial Fast Forward speed"
+msgstr "Pradinis greito persukimo greitis"
+
+msgid "Initial Rewind speed"
+msgstr "Pradinis atsukimo greitis"
+
 msgid "Initial location in new timers"
 msgstr "Pradinė naujų laikmačių vieta"
 
@@ -3136,6 +3293,9 @@ msgstr "Vidinė atmintinė"
 msgid "Internal LAN adapter."
 msgstr "Vidinis LAN adapteris"
 
+msgid "Internal USB Slot"
+msgstr "Vidinis USB lizdas"
+
 msgid "Internal firmware updater"
 msgstr "Vidinis programinės įrangos atnaujinimas"
 
@@ -3306,6 +3466,13 @@ msgstr "Kalbos pasirinkimas"
 msgid "Last config"
 msgstr "Paskutinis config"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+"Praėjusios dienos atitikti įvykiai. Įvykiai turi prasidėti prieš šią datą, "
+"ir būti suderinti."
+
 msgid "Last speed"
 msgstr "Paskutinis greitis"
 
@@ -3349,6 +3516,9 @@ msgstr "Sąsaja:"
 msgid "Linked titles with a DVD menu"
 msgstr "Sujungti pavadinimai su DVD meniu"
 
+msgid "List available networks"
+msgstr "Galimų tinklų sąrašas"
+
 msgid "List of Storage Devices"
 msgstr "Išsaugotų įrenginių sąrašas"
 
@@ -3461,6 +3631,9 @@ msgstr "Valdykite savo imtuvo programinę įrangą"
 msgid "Manual Scan"
 msgstr "Rankinė paieška"
 
+msgid "Manual configuration"
+msgstr "Rankinė konfigūracija"
+
 msgid "Manual transponder"
 msgstr "Rankinis transponderis"
 
@@ -3699,12 +3872,18 @@ msgstr "Filmų sąrašo meniu"
 msgid "Multi EPG"
 msgstr "Kanalų EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr "Multi-EPG paketų pasirinkimas"
+
 msgid "Multimedia"
 msgstr "Multimedija"
 
 msgid "Multiple service support"
 msgstr "Kelių kanalų palaikymas"
 
+msgid "Multiplex"
+msgstr "Sudėtingas"
+
 msgid "Multisat"
 msgstr "Daug palydovų"
 
@@ -3762,6 +3941,9 @@ msgstr ""
 msgid "NFS share"
 msgstr "NFS bendrinimas"
 
+msgid "NIM"
+msgstr "NIM"
+
 msgid "NOW"
 msgstr "DABAR"
 
@@ -3784,6 +3966,9 @@ msgstr "Serverio nustatymas"
 msgid "Nameserver settings"
 msgstr "Serverio pavadinimas"
 
+msgid "Namespace"
+msgstr "Pavadinimnų erdvė"
+
 msgid "Nemesis BlackBox Skin"
 msgstr "Nemesis BlackBox tema"
 
@@ -3925,6 +4110,9 @@ msgstr "Tinklo naršyklė"
 msgid "NetworkWizard"
 msgstr "Tinklo vedlys"
 
+msgid "Networkname (SSID)"
+msgstr "Tinklo pavadinimas (SSID)"
+
 msgid "Never"
 msgstr "Niekada"
 
@@ -4063,6 +4251,9 @@ msgstr "Nėra vaizdų rodymui"
 msgid "No wireless networks found! Please refresh."
 msgstr "Jokie belaidžiai tinklai nesurasti! Prašome pakartoti."
 
+msgid "No wireless networks found! Searching..."
+msgstr "Belaidžių tinklų nerasta! Vyksta paieška ..."
+
 msgid ""
 "No working local network adapter found.\n"
 "Please verify that you have attached a network cable and your network is "
@@ -4139,6 +4330,12 @@ msgstr "Šiaurė"
 msgid "Norwegian"
 msgstr "Norvegų"
 
+msgid "Not after"
+msgstr "Ne po"
+
+msgid "Not before"
+msgstr "Ne iki"
+
 #, python-format
 msgid ""
 "Not enough diskspace. Please free up some diskspace and try again. (%d MB "
@@ -4150,6 +4347,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Ne perdavimo įėjimų nustatymas"
 
+msgid "Not-Associated"
+msgstr "Ne-Asocijuotas"
+
 msgid ""
 "Nothing to scan!\n"
 "Please setup your tuner settings before you start a service scan."
@@ -4184,6 +4384,9 @@ msgstr "Gerai, pašalinkite kitus išplėtimus"
 msgid "OK, remove some extensions"
 msgstr "Gerai, pašalinkite bet kokius išplėtimus"
 
+msgid "ONID"
+msgstr "ONID"
+
 msgid "OSD Settings"
 msgstr "OSD nustatymai"
 
@@ -4236,7 +4439,7 @@ msgstr "Atidaryti papildomų programų meniu"
 msgid "Optionally enter your name if you want to."
 msgstr "Pasirinktinai įrašykite savo vardą, jei jūs norite."
 
-msgid "Orbital Position"
+msgid "Orbital position"
 msgstr "Pozicija orbitoje"
 
 msgid "Outer Bound (+/-)"
@@ -4257,9 +4460,15 @@ msgstr "Perrašyti konfigūracijos failus per programinės įrangos atnaujinimą
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr "PCR PID"
+
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr "PMT PID"
+
 msgid "Package list update"
 msgstr "Paketo sąrašo atnaujinimas"
 
@@ -4579,7 +4788,7 @@ msgid "Please wait while removing your network mount..."
 msgstr "Prašome laukti, kol šalinamas jūsų tinklo pajungimas..."
 
 msgid "Please wait while scanning is in progress..."
-msgstr "Prašome laukti kol vyksta skanavimas..."
+msgstr "Prašome laukti kol vyksta paieška..."
 
 msgid "Please wait while searching for removable packages..."
 msgstr "Prašome laukti, ieškomi pašalinami paketai..."
@@ -4627,9 +4836,6 @@ msgstr "Podcast srautų užsakomosios transliacijos į savo Dreambox"
 msgid "Poland"
 msgstr "Lenkija"
 
-msgid "Polarity"
-msgstr "Poliariškumas"
-
 msgid "Polarization"
 msgstr "Poliarizacija"
 
@@ -4657,6 +4863,9 @@ msgstr "Jungtis D"
 msgid "Portuguese"
 msgstr "Portugalų"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr "Baigtų laikmačių padėtis laikmačio sąraše"
+
 msgid "Positioner"
 msgstr "Pozicionierius"
 
@@ -4830,6 +5039,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr "RSS žiūrėjimas"
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr "RT8070/RT3070/RT3370 USB belaidžių draiveris"
+
 msgid "Radio"
 msgstr "Radijas"
 
@@ -4916,6 +5128,9 @@ msgstr "Įrašai"
 msgid "Recordings always have priority"
 msgstr "Įrašai visada turi pirmenybę"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr "Peradresuokite pranešimus syslog ir kt."
+
 msgid "Reenter new PIN"
 msgstr "Iš naujo įrašykite naują PIN"
 
@@ -5089,6 +5304,9 @@ msgstr "Atkurkite savo Dreambox su USB įrenginiu"
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr "Riboti \"po įvykio \" tam tikrą laiko atkarpą?"
 
+msgid "Restrict to events on certain dates"
+msgstr "Apriboti renginius dėl tam tikrų datų"
+
 msgid "Resume from last position"
 msgstr "Tęsti nuo paskutinės pozicijos"
 
@@ -5121,8 +5339,8 @@ msgstr "Persukimo greitis"
 msgid "Right"
 msgstr "Dešinys"
 
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr "Roll-off"
 
 msgid "Rotor turning speed"
 msgstr "Pozicionieriaus sukimosi greitis"
@@ -5130,6 +5348,9 @@ msgstr "Pozicionieriaus sukimosi greitis"
 msgid "Running"
 msgstr "Veikiantis"
 
+msgid "Running in testmode"
+msgstr "Veikia testavimo būdu"
+
 msgid "Russia"
 msgstr "Rusija"
 
@@ -5139,6 +5360,21 @@ msgstr "Rusų"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr "SD 25/50HZ vaizdavimo būdas"
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr "SD 25/50HZ progresyvus būdas"
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr "SD 30/60HZ vaizdavimo būdas"
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr "SD 30/60HZ progresyvus būdas"
+
+msgid "SID"
+msgstr "SID"
+
 msgid "SINGLE LAYER DVD"
 msgstr "VIENO SLUOKSNIO DVD"
 
@@ -5151,6 +5387,26 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+"SVDRP yra protokolas sukurtas dėl VDR programinės įrangos kontrolės set-top "
+"box nuotoliniu būdu.\n"
+"Šis priedas palaiko tik iš SVDRP poaibio ir pasileidžia automatiškai, "
+"naudojant numatytuosius parametrus.\n"
+"\n"
+"Jums tikriausiai nereikia šio priedo ir turite panaudoti reguliarią Tinklo "
+"sąsąją dėl Enigma2 vietoj to."
+
+msgid "SVDRP server for Enigma2"
+msgstr "SVDRP serveris dėl Enigma2"
+
 msgid "Sat"
 msgstr "Šeš"
 
@@ -5486,7 +5742,7 @@ msgid "Service"
 msgstr "Apie kanalą"
 
 msgid "Service Scan"
-msgstr "Kanalų skanavimas"
+msgstr "Kanalų paieška"
 
 msgid "Service Searching"
 msgstr "Kanalų paieška"
@@ -5514,6 +5770,9 @@ msgstr ""
 "Kanalas nerastas!\n"
 "(SID nėra PAT)"
 
+msgid "Service reference"
+msgstr "Kanalo nuoroda"
+
 msgid "Service scan"
 msgstr "Kanalo skanavimas"
 
@@ -5621,6 +5880,9 @@ msgstr "Rodyti atvejo eigą kanalo pasirinkime"
 msgid "Show in extension menu"
 msgstr "Rodyti išplėstame meniu"
 
+msgid "Show info screen"
+msgstr "Rodyti informaciją ekrane"
+
 msgid "Show infobar on channel change"
 msgstr "Rodyti infojuostą perjungiant kanalą"
 
@@ -5630,6 +5892,9 @@ msgstr "Rodyti infojuostą pasikeičiant užduočiai"
 msgid "Show infobar on skip forward/backward"
 msgstr "Rodyti infojuostą praleidžiant į priekį/atgal"
 
+msgid "Show notification on conflicts"
+msgstr "Rodyti pranešimą apie konfliktus"
+
 msgid "Show positioner movement"
 msgstr "Rodyti pozicionieriaus judėjimą"
 
@@ -5850,6 +6115,9 @@ msgstr "Aušintuvo budėjimo %d įtampa"
 msgid "Start Webinterface"
 msgstr "Paleisti Tinklo sąsają"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr "Pradėti lengvą multimedijos priedą su PVR mygtuku"
+
 msgid "Start from the beginning"
 msgstr "Pradėti nuo pradžios"
 
@@ -5945,6 +6213,9 @@ msgstr "Sek"
 msgid "Sunday"
 msgstr "Sekmadienis"
 
+msgid "Support \"Fast Scan\"?"
+msgstr "Palaikyti \"Greita Paieška\"?"
+
 msgid "Swap Services"
 msgstr "Keisti kanalus"
 
@@ -5963,10 +6234,7 @@ msgstr "Perjungti į ankstesnį subkanalą"
 msgid "Switchable tuner types:"
 msgstr "Perjungiamų imtuvą tipai:"
 
-msgid "Symbol Rate"
-msgstr "Simbolių greitis"
-
-msgid "Symbolrate"
+msgid "Symbol rate"
 msgstr "Simbolių greitis"
 
 msgid "System"
@@ -5979,9 +6247,18 @@ msgstr "Audronis Grincevičius (ADGA) Pasvalys, Lietuva"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS failas yra per didelis ISO9660 lygmeniui 1!"
 
+msgid "TSID"
+msgstr "TSID"
+
+msgid "TV Charts of all users"
+msgstr "TV programos visiems vartotojams"
+
 msgid "TV System"
 msgstr "TV sistema"
 
+msgid "TXT PID"
+msgstr "TXT PID"
+
 msgid "Table of content for collection"
 msgstr "Turinio lentelė dėl kolekcijos"
 
@@ -6006,6 +6283,9 @@ msgstr "Taivanis"
 msgid "Temperature and Fan control"
 msgstr "Temperatūros ir aušintuvo kontrolė"
 
+msgid "Temperature-dependent fan control."
+msgstr "Priklauso nuo temperatūros kontrolės ventiliatoriaus."
+
 msgid "Terrestrial"
 msgstr "Antžeminė"
 
@@ -6650,18 +6930,12 @@ msgstr "Vertimas"
 msgid "Translation:"
 msgstr "Vertimas:"
 
-msgid "Transmission Mode"
-msgstr "Perdavimo būdas"
-
 msgid "Transmission mode"
 msgstr "Perdavimo būdas"
 
 msgid "Transponder"
 msgstr "Transponderis"
 
-msgid "Transponder Type"
-msgstr "Transponderio tipas"
-
 msgid "Travel & Events"
 msgstr "Kelionės ir Įvykiai"
 
@@ -6762,6 +7036,9 @@ msgstr "Atšaukti įdiegimą"
 msgid "Undo uninstall"
 msgstr "Atšaukti šalinimą"
 
+msgid "Unencrypted"
+msgstr "Nešifruota"
+
 msgid "UnhandledKey"
 msgstr "Nežinomas mygtukas"
 
@@ -6783,6 +7060,9 @@ msgstr "JAV"
 msgid "Universal LNB"
 msgstr "Universali LNB"
 
+msgid "Unknown"
+msgstr "Nežinoma"
+
 msgid "Unknown network adapter."
 msgstr "Nežinomas tinklo adapteris"
 
@@ -6877,9 +7157,6 @@ msgstr "Naudoti šliuzą"
 msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr "Naudoti bei kontroliuoti kelis Dreambox su skirtingais RC."
 
-msgid "Use non-smooth winding at speeds above"
-msgstr "Naudoti nelygų vingiavimą greičiais didesniais kaip"
-
 msgid "Use power measurement"
 msgstr "Naudoti įtampos išmatavimus"
 
@@ -6947,14 +7224,23 @@ msgstr "VMGM (įvadas)"
 msgid "Vali-XD skin"
 msgstr "Vali-XD tema"
 
+msgid "Vali.HD.atlantis skin"
+msgstr "Vali.HD.atlantis tema"
+
 msgid "Vali.HD.nano skin"
 msgstr "Vali.HD.nano tema"
 
+msgid "Vali.HD.warp skin"
+msgstr "Vali.HD.warp tema"
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 "Patvirtinkite savo Dreambox autentiškumą paleisdami tikro Dreambox priedą!"
 
+msgid "Verifying your internet connection..."
+msgstr "Jūsų interneto ryšio patvirtinimas..."
+
 msgid "Vertical"
 msgstr "Vertikalus"
 
@@ -6967,6 +7253,9 @@ msgstr "Tikslaus vaizdo suderinimo vedlys"
 msgid "Video Output"
 msgstr "Vaizdo išėjimas"
 
+msgid "Video PID"
+msgstr "Vaizdo PID"
+
 msgid "Video Setup"
 msgstr "Vaizdo valdymas"
 
@@ -7169,6 +7458,9 @@ msgstr "WeatherPlugin rodo orų prognozes jūsų Dreambox."
 msgid "Weatherforecast on your Dreambox"
 msgstr "Orų prognozė Jūsų Dreambox"
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr "Web paketų redaktorius dėl PC"
+
 msgid "Webinterface"
 msgstr "Web sąsaja"
 
@@ -7335,6 +7627,14 @@ msgid "What to do with submitted crashlogs?"
 msgstr "Ką daryti su pateiktu crashlogs?"
 
 msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+"Suteikdami palaikymą \"Greita paieška\" kanalų tipas yra ignoruojamas. Jums "
+"nereikia įjungti tai,nebent jūsų atvaizdas palaiko \"Greitą paiešką\" ir "
+"naudojate tai."
+
+msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
 "timer with the same description already exists in the timer list."
 msgstr ""
@@ -7372,6 +7672,15 @@ msgstr "Belaidis tinklas"
 msgid "Wireless Network State"
 msgstr "Belaidis tinklas"
 
+msgid "Wireless network connection setup"
+msgstr "Belaidžio tinklo prisijungimo nustatymas"
+
+msgid "Wireless network connection setup."
+msgstr "Belaidžio tinklo prisijungimo nustatymas."
+
+msgid "Wireless network state"
+msgstr "Belaidžio tinklo būklė"
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -7601,6 +7910,15 @@ msgstr ""
 "Tuo metu, kai 'Vardas' yra tik žmogaus lengvai skaitomas vardas, rodytas "
 "Peržiūroje, 'Pavadinime' yra tai, kas ieškoma EPG."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+"Jūs galite naudoti EasyInfo, kad valdyti EPG papildomas programas su info "
+"mygtuku. Jūs turite naują dabar-kitą atvejo peržiūrą. Easy-PG, sena grafinė "
+"EPG naršyklė taip pat yra įtraukta."
+
 msgid "You cannot delete this!"
 msgstr "Jūs negalite to ištrinti!"
 
@@ -7788,6 +8106,9 @@ msgstr "Jūsų (laisvai pasirenkamas) vardas:"
 msgid "Your network configuration has been activated."
 msgstr "Jūsų tinklo konfigūracija aktyvuota."
 
+msgid "Your network is not working. Please try again."
+msgstr "Jūsų tinklas neveikia. Prašome pabandyti dar kartą."
+
 msgid "Your network mount has been activated."
 msgstr "Jūsų tinklo pajungimas aktyvuotas."
 
@@ -7972,6 +8293,12 @@ msgstr "priskirti CAIds:"
 msgid "assigned Services/Provider:"
 msgstr "priskirti Kanalai/Tiekėjai:"
 
+msgid "at beginning"
+msgstr "pradžioje"
+
+msgid "at end"
+msgstr "pabaigoje"
+
 #, python-format
 msgid "audio track (%s) format"
 msgstr "Garso takelio (%s) formatas"
@@ -7986,6 +8313,9 @@ msgstr "garso takeliai"
 msgid "auto"
 msgstr "auto"
 
+msgid "autotimers need a match attribute"
+msgstr "Auto laikmačiai turi atitikti atributą"
+
 msgid "available"
 msgstr "pasiekiamas"
 
@@ -8010,6 +8340,9 @@ msgstr "juodas sąrašas"
 msgid "blue"
 msgstr "mėlynas"
 
+msgid "bob"
+msgstr "trumpai"
+
 #, python-format
 msgid "burn audio track (%s)"
 msgstr "įrašyti garso takelį (%s)"
@@ -8041,6 +8374,9 @@ msgstr "išvalyti grojaraštį"
 msgid "complex"
 msgstr "sudėtinis"
 
+msgid "config changed."
+msgstr "config pasikeitė."
+
 msgid "config menu"
 msgstr "konfigūracijos meniu"
 
@@ -8065,6 +8401,12 @@ msgstr "negalėjo būti pašalintas"
 msgid "create directory"
 msgstr "kurti direktoriją"
 
+msgid "creates virtual series folders from episodes"
+msgstr "kuria virtualių serijų aplankus iš epizodų"
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr "kuria virtualius serijų aplankus iš įrašytų epizodų komplektų"
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr "šiuo metu įdiegtas atvaizdas: %s"
@@ -8075,6 +8417,9 @@ msgstr "kasdien"
 msgid "day"
 msgstr "diena"
 
+msgid "default"
+msgstr "nustatyta"
+
 msgid "delete"
 msgstr "trinti"
 
@@ -8120,6 +8465,9 @@ msgstr "nerašyti"
 msgid "done!"
 msgstr "baigta!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr "Draiveriai dėl Realtek USB belaidžių įrenginių"
+
 msgid "edit alternatives"
 msgstr "redaguoti kitus"
 
@@ -8330,6 +8678,9 @@ msgstr "minutė"
 msgid "minutes"
 msgstr "minučių"
 
+msgid "missing parameter \"id\""
+msgstr "trūkstamas parametras \"id\""
+
 msgid "month"
 msgstr "mėnuo"
 
@@ -8480,9 +8831,6 @@ msgstr "raudonas"
 msgid "redesigned Kerni-HD1 skin"
 msgstr "pertvarkyta Kerni-HD1 tema"
 
-msgid "redirect notifications to Growl"
-msgstr "nukreipti pranešimai Growl"
-
 msgid "remove a nameserver entry"
 msgstr "pašalinkite serverio pavadinimo įrašą"
 
@@ -8545,7 +8893,7 @@ msgstr "skanavimas baigtas!"
 
 #, python-format
 msgid "scan in progress - %d%% done!"
-msgstr "vyksta skanavimas - %d %% baigta!"
+msgstr "vyksta paieška - %d %% baigta!"
 
 msgid "scan state"
 msgstr "paieškos eiga"
@@ -8739,6 +9087,10 @@ msgstr "laikas, skyrius, garsas, subtitrų informacija"
 msgid "tuner is not supported"
 msgstr "imtuvas nepalaikomas"
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr "negalima surasti laikmačio su id %i"
+
 msgid "unavailable"
 msgstr "nepasiekiamas"
 
@@ -8793,6 +9145,9 @@ msgstr "kas savaitę"
 msgid "whitelist"
 msgstr "baltas sąrašas"
 
+msgid "wireless network interface"
+msgstr "bevielio tinklo sąsaja"
+
 msgid "working"
 msgstr "dirba"
 
@@ -8845,6 +9200,9 @@ msgstr "įjungta"
 #~ msgid "50 Hz"
 #~ msgstr "50 Hz"
 
+#~ msgid "A BackToTheRoots-Skin ... or good old times."
+#~ msgstr "Atgal į TheRoots-Temą ... arba kaip senais gerais laikais."
+
 #
 #~ msgid "Advanced"
 #~ msgstr "Išplėstinis"
@@ -8853,29 +9211,6 @@ msgstr "įjungta"
 #~ msgstr "Ascanding"
 
 #
-#~ msgid ""
-#~ "Autoresolution Plugin Testmode:\n"
-#~ "Is %s ok?"
-#~ msgstr ""
-#~ "Auto rezoliucijos papildomos programos testavimas:\n"
-#~ "Yra %s gerai?"
-
-#
-#~ msgid "Autoresolution Switch"
-#~ msgstr "Auto rezoliucijos perjungėjas"
-
-#~ msgid "Autoresolution is not working in Scart/DVI-PC Mode"
-#~ msgstr "Auto rezoliucija neveikia Scart/DVI-PC režime"
-
-#
-#~ msgid "Autoresolution settings"
-#~ msgstr "Autorezoliucijos nustatymai"
-
-#
-#~ msgid "Autoresolution videomode setup"
-#~ msgstr "Auto rezoliucijos vaizdo būdo valdymas"
-
-#
 #~ msgid "Backup"
 #~ msgstr "Atsarginė kopija"
 
@@ -8922,6 +9257,19 @@ msgstr "įjungta"
 #~ msgid "Choose source"
 #~ msgstr "Išsirinkite šaltinį"
 
+#~ msgid "Code rate high"
+#~ msgstr "Aukšta kodavimo norma"
+
+#~ msgid "Code rate low"
+#~ msgstr "Žema kodavimo norma"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Kodavimo greitis HP"
+
+#~ msgid "Coderate LP"
+#~ msgstr "Kodavimo norma LP"
+
 #
 #~ msgid "Compact flash card"
 #~ msgstr "Kompaktinė atmintinės kortelė"
@@ -8961,18 +9309,6 @@ msgstr "įjungta"
 #~ msgstr "Numatyti nustatymai"
 
 #
-#~ msgid "Deinterlacer mode for interlaced content"
-#~ msgstr "Deinterlacer būdas besikeičiančiam turiniui"
-
-#
-#~ msgid "Deinterlacer mode for progressive content"
-#~ msgstr "Deinterlacer būdas progresyviam turiniui"
-
-#
-#~ msgid "Delay x seconds after service started"
-#~ msgstr "Užlaikyti x sekundžių po kanalo starto"
-
-#
 #~ msgid "Delete selected mount"
 #~ msgstr "Trinti pasirinktą pajungimą"
 
@@ -9014,25 +9350,11 @@ msgstr "įjungta"
 #~ msgid "Download of USB flasher boot image failed: "
 #~ msgstr "USB diegėjo atvaizdo parsisiuntimas klaidingas:"
 
-#
-#~ msgid "Enable 1080p24 Mode"
-#~ msgstr "Įjungti 1080p24 būdą"
-
-#
-#~ msgid "Enable 1080p25 Mode"
-#~ msgstr "Įjungti 1080p25 būdą"
-
-#
-#~ msgid "Enable 1080p30 Mode"
-#~ msgstr "Įjungti 1080p30 būdą"
-
-#
-#~ msgid "Enable 720p24 Mode"
-#~ msgstr "Įjungti 720p24 būdą"
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Eiti į greitą persukimą"
 
-#
-#~ msgid "Enable Autoresolution"
-#~ msgstr "Įjungti autorezoliuciją"
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Eiti į greitą atsukimą"
 
 #~ msgid ""
 #~ "First we need to download the latest boot environment for the USB flasher."
@@ -9043,6 +9365,37 @@ msgstr "įjungta"
 #~ msgid "Following tasks will be done after you press continue!"
 #~ msgstr "Kitos užduotys bus padarytos po to, kai jūs paspausite tęsti!"
 
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Rėmo pakartojimo skaičiavimas per nelygų vingiavimą"
+
+#~ msgid ""
+#~ "Growlee allows your Dreambox to send short messages using the growl "
+#~ "protocol\n"
+#~ "like Recording started notifications to a PC running a growl client"
+#~ msgstr ""
+#~ "Growlee leidžia jūsų Dreambox siųsti trumpąsias žinutes, naudojant growl "
+#~ "protokolą\n"
+#~ "Įrašas paleidžia pranešimus į PC, veikiant growl klientui"
+
+#~ msgid "Guard Interval"
+#~ msgstr "Apsaugos intervalas"
+
+#~ msgid "Guard interval mode"
+#~ msgstr "Apsaugos intervalo režimas"
+
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hierarchijos informacija"
+
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hierarchijos režimas"
+
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Jei tai įjungiama į egzistuojantį laikmatį, tai svarstoma įrašymo atveju "
+#~ "jei jis įrašys bent jau 80% of to."
+
 #~ msgid "Image flash utility"
 #~ msgstr "Atvaizdo diegimo programėlė"
 
@@ -9058,6 +9411,9 @@ msgstr "įjungta"
 #~ msgid "No useable USB stick found"
 #~ msgstr "Joks tinkamas USB raktas nesurastas"
 
+#~ msgid "Orbital Position"
+#~ msgstr "Pozicija orbitoje"
+
 #~ msgid "Page"
 #~ msgstr "Puslapis"
 
@@ -9080,6 +9436,9 @@ msgstr "įjungta"
 #~ msgid "Please select target directory or medium"
 #~ msgstr "Prašome išsirinkti direktoriją arba diską"
 
+#~ msgid "Polarity"
+#~ msgstr "Poliariškumas"
+
 #~ msgid "Press OK to view full changelog"
 #~ msgstr "Spauskite OK, kad peržiūrėtumėte pilną changelog"
 
@@ -9098,6 +9457,9 @@ msgstr "įjungta"
 #~ msgid "Remove the incomplete .NFI file?"
 #~ msgstr "Pašalinti neužbaigtą .NFI failą?"
 
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
 #~ msgid ""
 #~ "Scan your network for wireless Access Points and connect to them using "
 #~ "your selected wireless device.\n"
@@ -9120,6 +9482,12 @@ msgstr "įjungta"
 #~ msgid "Stereo"
 #~ msgstr "Stereo"
 
+#~ msgid "Symbol Rate"
+#~ msgstr "Simbolių greitis"
+
+#~ msgid "Symbolrate"
+#~ msgstr "Simbolių greitis"
+
 #~ msgid ""
 #~ "The USB stick is now bootable. Do you want to download the latest image "
 #~ "from the feed server and save it on the stick?"
@@ -9181,6 +9549,12 @@ msgstr "įjungta"
 #~ "priekinės panėlės apie 10 sekundžių \n"
 #~ "3) Laukite paleidimo ir sekite nustatymų vedlio instrukcijas."
 
+#~ msgid "Transmission Mode"
+#~ msgstr "Perdavimo būdas"
+
+#~ msgid "Transponder Type"
+#~ msgstr "Transponderio tipas"
+
 #~ msgid ""
 #~ "USB stick wizard finished. Your dreambox will now restart with your new "
 #~ "image!"
@@ -9188,6 +9562,9 @@ msgstr "įjungta"
 #~ "USB vedlys baigė darbą. Jūsų Dreambox dabar bus iš naujo paleistas su "
 #~ "nauju atvaizdu!"
 
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Naudoti nelygų vingiavimą greičiais didesniais kaip"
+
 #
 #~ msgid "Webinterface: edit Interface"
 #~ msgstr "Web sąsaja: redaguoti"
@@ -9393,6 +9770,9 @@ msgstr "įjungta"
 #~ msgid "rebooting..."
 #~ msgstr "perleidžiama..."
 
+#~ msgid "redirect notifications to Growl"
+#~ msgstr "nukreipti pranešimai Growl"
+
 #
 #~ msgid "reindex..."
 #~ msgstr "indeksuoti iš naujo..."
index b733ef1..ca65e53 100755 (executable)
--- a/po/lv.po
+++ b/po/lv.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2009-02-25 20:35+0200\n"
 "Last-Translator: Ivo Grinbergs <ivog@apollo.lv>\n"
 "Language-Team: Ivo / enigma2 (c) <ivog@apolllo.lv>\n"
@@ -194,6 +194,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -232,6 +238,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 # ???
 msgid "(ZAP)"
@@ -389,10 +399,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -414,6 +424,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -438,6 +451,9 @@ msgstr "Grafiskais EPG visiem kanāliem izvēlētā buķetē"
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -901,6 +917,9 @@ msgstr "Jautāt"
 msgid "Aspect Ratio"
 msgstr "Malu attiecība"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -915,6 +934,9 @@ msgstr "Skaņa"
 msgid "Audio Options..."
 msgstr "Skaņas opcijas..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -981,6 +1003,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Automātiski"
@@ -1015,6 +1046,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1058,6 +1107,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Atpakaļ"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Fons"
@@ -1153,6 +1208,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Spilgtums"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1183,6 +1243,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1451,21 +1522,11 @@ msgstr ""
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Augsts kodēšanas ātrums "
-
-#
-msgid "Code rate low"
-msgstr "Zems kodēšanas ātrums"
-
-#
-msgid "Coderate HP"
-msgstr "Kodēšanas ātrums HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Kodēšanas ātrums LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1650,6 +1711,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Nevar ierakstīt dēļ taimeru konflikta %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr ""
@@ -1829,6 +1894,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1914,10 +1982,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Aizkave"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Dzēst"
@@ -2109,6 +2186,12 @@ msgstr ""
 "Vai tiešām vēlaties pārbaudīt failsistēmu?\n"
 "Tas var prasīt daudz laika!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2306,6 +2389,12 @@ msgstr "Dreambox formāta datu DVD (savietojams ar HDTV)"
 msgid "Dreambox software because updates are available."
 msgstr ""
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2448,10 +2537,26 @@ msgstr "Aktivizēt"
 msgid "Enable /media"
 msgstr ""
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Aktivizēt 5V aktīvai antenai"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+#
+msgid "Enable Autoresolution"
+msgstr "Aktivizēt auto izšķirtspēju"
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2572,18 +2677,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Ievadiet ātrās pārtīšanas ātrumu"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Ievadiet attīšanas ātrumu"
-
-#
 msgid "Enter main menu..."
 msgstr "Atvērt galveno izvēlni..."
 
@@ -2656,6 +2753,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Notikumu skats"
@@ -2855,6 +2955,11 @@ msgstr "Tīkla restartēšana pabeigta"
 msgid "Finnish"
 msgstr "Somu"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2874,16 +2979,18 @@ msgstr ""
 msgid "Format"
 msgstr "Formatēt"
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Atkārtoto kadru skaits 'attēlu virknes' režīmā"
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
+msgstr ""
 
 #
 # ???
@@ -2929,6 +3036,9 @@ msgstr "Frīzu"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2983,6 +3093,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Žanrs"
@@ -3061,23 +3174,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Sardzes intervāls"
-
-#
-msgid "Guard interval mode"
-msgstr "Sardzes intervāla režīms"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3106,6 +3220,9 @@ msgstr "Cietā diska gaidstāve pēc"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "Slēpts tīkla SSID"
@@ -3114,13 +3231,8 @@ msgstr "Slēpts tīkla SSID"
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Hierarhijas informācija"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hierarhijas režīms"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3191,11 +3303,10 @@ msgstr "ISO ceļš"
 msgid "Icelandic"
 msgstr "Islandiešu"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3299,6 +3410,12 @@ msgstr "Informācija"
 msgid "Init"
 msgstr "Inic"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3400,6 +3517,9 @@ msgstr "Iekšējā atmiņa"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3597,6 +3717,11 @@ msgstr "Valodas izvēle"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Pēdējais ātrums"
@@ -3654,6 +3779,9 @@ msgstr "Saite:"
 msgid "Linked titles with a DVD menu"
 msgstr "Saistītie nosaukumi ar DVD izvēlni"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Atmiņas ierīču saraksts"
@@ -3790,6 +3918,9 @@ msgstr "Pārvaldīt ierīces programmatūru"
 msgid "Manual Scan"
 msgstr "Manuālā meklēšana"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Manuāls transponderis"
@@ -4077,6 +4208,9 @@ msgstr "Filmu saraksta izvēlne"
 msgid "Multi EPG"
 msgstr "Daudzkanālu EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr ""
@@ -4085,6 +4219,9 @@ msgstr ""
 msgid "Multiple service support"
 msgstr "Daudzkanālu atbalsts"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Daudzpavadņu"
@@ -4154,6 +4291,9 @@ msgstr "NFI imidža lādēšana pabeigta. Spiediet dzelteno pogu, lai atsāknēt
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "PAŠREIZ"
@@ -4183,6 +4323,9 @@ msgstr "Domēna vārdu servera iestatne"
 msgid "Nameserver settings"
 msgstr "Domēna vārdu servera iestatījumi"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4338,6 +4481,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr "Tīkla vednis"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4504,6 +4650,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4598,6 +4747,12 @@ msgstr "Ziemeļi"
 msgid "Norwegian"
 msgstr "Norvēģu"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4611,6 +4766,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4653,6 +4811,9 @@ msgstr ""
 msgid "OK, remove some extensions"
 msgstr ""
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "OSD iestatījumi"
@@ -4722,9 +4883,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr ""
 
-#
-msgid "Orbital Position"
-msgstr "Pozīcija orbītā"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4747,10 +4907,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Pakotņu saraksta atjaunināšana"
@@ -5195,10 +5361,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Polaritāte"
-
-#
 msgid "Polarization"
 msgstr "Polarizācija"
 
@@ -5234,6 +5396,9 @@ msgstr "Pieslēgvieta D"
 msgid "Portuguese"
 msgstr "Portugāļu"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Pozicionieris"
@@ -5450,6 +5615,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5560,6 +5728,9 @@ msgstr ""
 msgid "Recordings always have priority"
 msgstr "Ierakstiem vienmēr ir prioritāte"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5781,6 +5952,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Atsākt no pēdējā stāvokļa"
@@ -5821,10 +5995,8 @@ msgstr "Attīšanas ātrumi"
 msgid "Right"
 msgstr "Labais"
 
-#
-#, fuzzy
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5834,6 +6006,9 @@ msgstr "Pozicioniera griešanās ātrums"
 msgid "Running"
 msgstr "Darbojas"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5846,6 +6021,21 @@ msgstr "Krievu"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5862,6 +6052,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Se"
@@ -6325,6 +6528,9 @@ msgstr ""
 "Kanāls nav atrasts!\n"
 "(SID nav atrasts iekš PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Kanālu meklēšana"
@@ -6459,6 +6665,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Rādīt infojoslu, mainot kanālu"
@@ -6471,6 +6680,9 @@ msgstr "Rādīt infojoslu, mainot notikumu"
 msgid "Show infobar on skip forward/backward"
 msgstr "Rādīt infojoslu pārlēciena turp/atpakaļ laikāl"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Rādīt pozicioniera kustību"
@@ -6744,6 +6956,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr ""
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Sākt no sākuma"
@@ -6867,6 +7082,9 @@ msgstr "Sv"
 msgid "Sunday"
 msgstr "Svētdiena"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Mainīit kanālus"
@@ -6891,13 +7109,8 @@ msgstr "Pārslēgt iepriekšējo papildkanālu"
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Simbolu ātrums"
-
-#
-msgid "Symbolrate"
-msgstr "Simbolātrums"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6912,10 +7125,19 @@ msgstr "Ivo Grinbergs Jelgava, Latvija"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS datne ir par lielu priekš ISO9660 līmeņa 1!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV sistēma"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Satura rādītājs kolekcijai"
@@ -6948,6 +7170,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Zemes"
@@ -7622,10 +7847,6 @@ msgid "Translation:"
 msgstr "Translēšana:"
 
 #
-msgid "Transmission Mode"
-msgstr "Pārraides režīms"
-
-#
 msgid "Transmission mode"
 msgstr "Pārraides režīms"
 
@@ -7634,10 +7855,6 @@ msgid "Transponder"
 msgstr "Transponderis"
 
 #
-msgid "Transponder Type"
-msgstr "Transpondera veids"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7766,6 +7983,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7794,6 +8014,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "Universālā LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7907,10 +8130,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Izmantot 'attēlu virknes' režīmu pie augstākminētajiem ātrumiem"
-
-#
 msgid "Use power measurement"
 msgstr "Lietot sprieguma mērīšanu"
 
@@ -7994,13 +8213,22 @@ msgstr "VMGM (ievada treileris)"
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr "Vertikālā"
@@ -8017,6 +8245,9 @@ msgstr "Precīzās atēla regulēšanas vednis"
 msgid "Video Output"
 msgstr "Attēla izeja"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Attēla iestatne"
@@ -8262,6 +8493,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr ""
@@ -8407,6 +8641,11 @@ msgstr "Ko Jūs vēlaties meklēt?"
 msgid "What to do with submitted crashlogs?"
 msgstr ""
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8448,6 +8687,15 @@ msgstr "Bezvadu tīkls"
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8669,6 +8917,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Jūs šo nevarat dzēst!"
@@ -8856,6 +9110,9 @@ msgstr ""
 msgid "Your network configuration has been activated."
 msgstr "Tīkla konfigurācija aktivizēta."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -9074,6 +9331,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9092,6 +9355,9 @@ msgstr "skaņas celiņi"
 msgid "auto"
 msgstr "auto"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr ""
@@ -9124,6 +9390,9 @@ msgstr "melnais saraksts"
 msgid "blue"
 msgstr "zils"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9165,6 +9434,9 @@ msgstr "notīrīt repertuāru"
 msgid "complex"
 msgstr "kompleksa"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "konfigurācijas izvēlne"
@@ -9196,6 +9468,12 @@ msgstr ""
 msgid "create directory"
 msgstr "izveidot mapi"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9208,6 +9486,9 @@ msgstr "ikdienas"
 msgid "day"
 msgstr "diena"
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr ""
@@ -9267,6 +9548,9 @@ msgstr "nerakstīt"
 msgid "done!"
 msgstr "pabeigts!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "rediģēt alternatīvas"
@@ -9548,6 +9832,9 @@ msgstr "minūte"
 msgid "minutes"
 msgstr "minūtēm"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "mēnesis"
@@ -9747,9 +10034,6 @@ msgstr "sarkans"
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr "dzēst vārdu servera ierakstu"
@@ -10086,6 +10370,10 @@ msgstr "Ie-/iz-slēgt laiku, nodaļu, skaņu, subtitru informāciju"
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr ""
@@ -10156,6 +10444,9 @@ msgstr "iknedēļas"
 msgid "whitelist"
 msgstr "baltais saraksts"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "darbojas"
@@ -10309,6 +10600,22 @@ msgstr "pārslēgts"
 #~ msgstr "Izvēlēties avotu"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Augsts kodēšanas ātrums "
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Zems kodēšanas ātrums"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Kodēšanas ātrums HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Kodēšanas ātrums LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact flash karte"
 
@@ -10374,10 +10681,6 @@ msgstr "pārslēgts"
 #~ msgstr "USB lādētāja palaišanas imidža ielāde neizdevās:"
 
 #
-#~ msgid "Enable Autoresolution"
-#~ msgstr "Aktivizēt auto izšķirtspēju"
-
-#
 #~ msgid ""
 #~ "Enigma2 Skinselector v0.5 BETA\n"
 #~ "\n"
@@ -10394,6 +10697,14 @@ msgstr "pārslēgts"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Ievadiet ātrās pārtīšanas ātrumu"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Ievadiet attīšanas ātrumu"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Ievadiet bezvadu tīkla nosaukumu /SSID:"
 
@@ -10413,6 +10724,10 @@ msgstr "pārslēgts"
 #~ "ielādes."
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Atkārtoto kadru skaits 'attēlu virknes' režīmā"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP adrese"
 
@@ -10421,6 +10736,22 @@ msgstr "pārslēgts"
 #~ msgstr "Funkcija vēl nav realizēta"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Sardzes intervāls"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Sardzes intervāla režīms"
+
+#
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hierarhijas informācija"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hierarhijas režīms"
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Ja redzat šo lappusi, spiediet OK."
 
@@ -10541,6 +10872,10 @@ msgstr "pārslēgts"
 #~ msgstr "Tiešsaistes atjaunināšana"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Pozīcija orbītā"
+
+#
 #~ msgid "Page"
 #~ msgstr "Lappuse"
 
@@ -10569,6 +10904,10 @@ msgstr "pārslēgts"
 #~ msgstr "Lūdzu izvēlieties mērķa mapi vai datu nesēju"
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polaritāte"
+
+#
 #~ msgid "RSS Feed URI"
 #~ msgstr "RSS barotnes URI"
 
@@ -10601,6 +10940,11 @@ msgstr "pārslēgts"
 #~ "atjaunotos iestatījumus."
 
 #
+#, fuzzy
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
+#
 #~ msgid ""
 #~ "Scan your network for wireless Access Points and connect to them using "
 #~ "your WLAN USB Stick\n"
@@ -10678,6 +11022,14 @@ msgstr "pārslēgts"
 #~ msgstr "Stereo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Simbolu ātrums"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Simbolātrums"
+
+#
 #~ msgid ""
 #~ "The USB stick is now bootable. Do you want to download the latest image "
 #~ "from the feed server and save it on the stick?"
@@ -10759,6 +11111,14 @@ msgstr "pārslēgts"
 #~ "3) Gaidiet līdz ielādējas un sekojiet vedņa norādījumiem."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Pārraides režīms"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Transpondera veids"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -10771,6 +11131,10 @@ msgstr "pārslēgts"
 #~ msgstr "Atjaunināšana pabeigta. Vai vēlaties atsāknēt Dreambox?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Izmantot 'attēlu virknes' režīmu pie augstākminētajiem ātrumiem"
+
+#
 #~ msgid ""
 #~ "We will now test if your TV can also display this resolution at 50hz. If "
 #~ "your screen goes black, wait 20 seconds and it will switch back to 60hz.\n"
index 91f983a..fec9e85 100755 (executable)
--- a/po/nl.po
+++ b/po/nl.po
@@ -6,8 +6,8 @@ msgid ""
 msgstr ""
 "Project-Id-Version: enigma2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
-"PO-Revision-Date: 2011-01-28 09:34+0200\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
+"PO-Revision-Date: 2011-04-23 00:17+0200\n"
 "Last-Translator: Benny <Benny.DeTandt@gmail.com>\n"
 "Language-Team: <Benny.DeTandt@gmail.com>\n"
 "Language: nl\n"
@@ -204,6 +204,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -248,6 +254,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -402,11 +412,11 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
-msgstr ""
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr "A BackToTheRoots-Skin .. but with Warp-8 speed."
 
-msgid "A BackToTheRoots-Skin ... or good old times."
-msgstr ""
+msgid "A BackToTheRoots-Skin .. or good old times."
+msgstr "A BackToTheRoots-Skin .. or good old times."
 
 msgid "A basic ftp client"
 msgstr "Een basis ftp-client"
@@ -426,6 +436,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Een demo plugin voor TPM gebruik."
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr "Een dreambox simulatie van SG-Atlantis displays."
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -449,6 +462,9 @@ msgstr "Grafische EPG voor alle zenders uit een specifiek boeket"
 msgid "A graphical EPG interface"
 msgstr "Een grafische EPG interface"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr "Een grafische EPG interface en EPG tools manager"
+
 msgid "A graphical EPG interface."
 msgstr "Een grafische EPG interface."
 
@@ -581,10 +597,10 @@ msgid "Abort this Wizard."
 msgstr "Deze wizard afsluiten."
 
 msgid "About"
-msgstr "Uw Dreambox"
+msgstr "Over"
 
 msgid "About..."
-msgstr "Uw Dreambox"
+msgstr "Over..."
 
 msgid "Access to the ARD-Mediathek"
 msgstr "Toegang tot de ARD-Mediatheek"
@@ -769,7 +785,7 @@ msgstr ""
 "Raadpleeg de handleiding voor aanwijzigingen."
 
 msgid "Ai.HD skin-style control plugin"
-msgstr ""
+msgstr "Ai.HD skin-style control plugin"
 
 #
 msgid "Album"
@@ -915,6 +931,9 @@ msgstr "Vraag gebruiker"
 msgid "Aspect Ratio"
 msgstr "Beeldverhouding"
 
+msgid "Aspect ratio"
+msgstr "Beeldverhouding"
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Toewijzen van zenders/kanalen/caids aan een CI-module"
 
@@ -929,6 +948,9 @@ msgstr "Audio"
 msgid "Audio Options..."
 msgstr "Audio Opties..."
 
+msgid "Audio PID"
+msgstr "Audio PID"
+
 #
 msgid "Audio Sync"
 msgstr "Audio synchronisatie"
@@ -996,9 +1018,18 @@ msgid ""
 "AutoTimer scans the EPG and creates Timers depending on user-defined search  "
 "criteria."
 msgstr ""
-"AutoTimer scant de EPG en creëert Timers afhankelijk van de door de "
+"AutoTimer zoekt in de EPG en creëert Timers afhankelijk van de door de "
 "gebruiker gedefinieerde zoekcriteria."
 
+msgid "AutoTimer was added successfully"
+msgstr "AutoTimer werd met succes toegevoegd"
+
+msgid "AutoTimer was changed successfully"
+msgstr "AutoTimer werd met succes gewijzigd"
+
+msgid "AutoTimer was removed"
+msgstr "AutoTimer werd verwijderd"
+
 #
 msgid "Automatic"
 msgstr "Automatisch"
@@ -1024,7 +1055,7 @@ msgstr ""
 "waar u naar kijkt."
 
 msgid "Automatically create timer events based on keywords"
-msgstr "Maakt automatisch timers aan op basis van trefwoorden"
+msgstr "Maakt automatisch timers op basis van trefwoorden"
 
 msgid "Automatically informs you on low internal memory"
 msgstr "Automatisch informeert u over weinig intern geheugen"
@@ -1035,6 +1066,24 @@ msgstr "Automatisch vernieuwen EPG"
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr "Automatisch verzenden crash logboeken naar Dream Multimedia"
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Autoresolutie werkt niet in Scart/DVI-PC-modus"
+
+msgid "Autoresolution settings"
+msgstr "Autoresolutie instellingen"
+
+msgid "Autoresolution videomode setup"
+msgstr "Autoresolution videomode instellen"
+
 #
 msgid "Autos & Vehicles"
 msgstr "Auto's & Voertuigen"
@@ -1077,6 +1126,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Terug"
 
+msgid "Back, lower USB Slot"
+msgstr "Achterkant, onderste USB Slot"
+
+msgid "Back, upper USB Slot"
+msgstr "Achterkant, bovenste USB Slot"
+
 #
 msgid "Background"
 msgstr "Achtergrond"
@@ -1171,6 +1226,13 @@ msgstr "Brazilië"
 msgid "Brightness"
 msgstr "Helderheid"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+
 msgid "Browse for and connect to network shares"
 msgstr "Blader naar en maak verbinding met het netwerk"
 
@@ -1200,6 +1262,17 @@ msgstr "Brand uw opnamen op DVD"
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1224,6 +1297,8 @@ msgid ""
 "CDInfo enables gathering album and track details from CDDB and CD-Text when "
 "playing Audio CDs in Mediaplayer."
 msgstr ""
+"CDInfo verzamelt album- en trackinformatie van de CDDB en van CD-tekst van "
+"Audio-CD's die afgespeeld worden."
 
 #
 msgid "CI assignment"
@@ -1321,7 +1396,7 @@ msgid "Change the hostname of your Dreambox."
 msgstr "Wijzig de hostnaam van uw Dreambox."
 
 msgid "Changelog"
-msgstr ""
+msgstr "Overzicht van wijzigingen"
 
 #
 msgid "Channel"
@@ -1469,21 +1544,11 @@ msgstr "Sluiten en wijzigingen opslaan"
 msgid "Close title selection"
 msgstr "Sluit titel selectie"
 
-#
-msgid "Code rate high"
-msgstr "Hoge ontvangst rate"
-
-#
-msgid "Code rate low"
-msgstr "Lage ontvangst rate"
-
-#
-msgid "Coderate HP"
-msgstr "Coderate HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Coderate LP"
+msgid "Code rate LP"
+msgstr ""
 
 msgid "Collection name"
 msgstr "DVD naam"
@@ -1564,7 +1629,7 @@ msgid "Configure nameservers"
 msgstr "Configureer nameservers"
 
 msgid "Configure your WLAN network interface"
-msgstr "Configureer uw WLAN netwerkinterface"
+msgstr "Configureer uw WLAN netwerk interface"
 
 #
 msgid "Configure your internal LAN"
@@ -1668,6 +1733,10 @@ msgstr "Kan Picture In Picture niet openen"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Kan niet opnemen vanwege conflicterende timer %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr "Crashlog instellingen"
@@ -1697,8 +1766,7 @@ msgid "Create DVD-ISO"
 msgstr "DVD-ISO maken"
 
 msgid "Create a backup of your Video DVD on your DreamBox hard drive."
-msgstr ""
-"Maak een back-up van van uw Video-DVD op de harde schijf van uw ontvanger"
+msgstr "Maak een back-up van uw Video-DVD op de harde schijf van uw Dreambox."
 
 msgid "Create a backup of your Video-DVD"
 msgstr "Maak een back-up van van uw Video-DVD"
@@ -1723,10 +1791,10 @@ msgid "Create preview pictures of your Movies"
 msgstr "Maakt voorbeeld miniaturen aan van uw films"
 
 msgid "Create remote timers"
-msgstr ""
+msgstr "Creëer op afstand timers"
 
 msgid "Create timers on remote Dreamboxes."
-msgstr ""
+msgstr "Maakt timers op andere Dreamboxes."
 
 #
 #, python-format
@@ -1855,6 +1923,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr "DVD-speler"
+
 #
 msgid "DVD File Browser"
 msgstr "DVD Bestandsbrowser"
@@ -1879,6 +1950,9 @@ msgid ""
 "With the DVDPlayer you can play your DVDs on your Dreambox from a DVD or "
 "even from an iso file or video_ts folder on your harddisc or network."
 msgstr ""
+"DVD-speler speelt uw DVD's af op uw Dreambox.Met de DVD-speler kunt u DVD's "
+"afspelen op uw Dreambox, maar ook een ISO-bestand en een Video-ts map op uw "
+"harde schijf of van uw netwerk.\""
 
 #
 msgid "Danish"
@@ -1939,10 +2013,19 @@ msgstr "Bepaal de status na opstarten"
 msgid "Define a startup service for your Dreambox."
 msgstr "Bepaal de status na het opstarten van uw Dreambox."
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr "Deinterlacer modus voor interlaced content"
+
+msgid "Deinterlacer mode for progressive content"
+msgstr "Deinterlacer modus voor progressieve content"
+
 #
 msgid "Delay"
 msgstr "Vertraging"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Verwijderen"
@@ -2127,6 +2210,14 @@ msgstr ""
 "Wilt u het bestandssysteem echt controleren?\n"
 "Dit kan enige tijd duren!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+"Wilt u %s echt wissen\n"
+"%s?"
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2322,6 +2413,14 @@ msgstr "Dreambox formaat data DVD (HDTV compatibel)"
 msgid "Dreambox software because updates are available."
 msgstr "Dreambox software want er zijn updates beschikbaar."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+"Driver voor op Ralink RT8070/RT3070/RT3370 gebaseerde Wireless-N USB-"
+"apparaten."
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr "Driver voor op Realtek r8712u gebaseerde Wireless-N USB-apparaten."
+
 msgid "Duration: "
 msgstr "Duur: "
 
@@ -2455,7 +2554,7 @@ msgid "Electronic Program Guide"
 msgstr "Electronische Programma Gids"
 
 msgid "Emailclient is an IMAP4 e-mail viewer for the Dreambox."
-msgstr ""
+msgstr "Emailclient is een IMAP4 e-mail client voor uw Dreambox."
 
 #
 msgid "Enable"
@@ -2465,10 +2564,25 @@ msgstr "Aan"
 msgid "Enable /media"
 msgstr "Activeer harde schijf"
 
+msgid "Enable 1080p24 Mode"
+msgstr "Activeer 1080p24 Modus"
+
+msgid "Enable 1080p25 Mode"
+msgstr "Activeer 1080p25 Modus"
+
+msgid "Enable 1080p30 Mode"
+msgstr "Activeer 1080p30 Modus"
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "5V voor actieve antenne inschakelen"
 
+msgid "Enable 720p24 Mode"
+msgstr "Activeer 720p24 Modus"
+
+msgid "Enable Autoresolution"
+msgstr "Activeer auto resolutie"
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr "Activeer Cleanup Wizard?"
@@ -2594,18 +2708,10 @@ msgstr ""
 "© 2006 - Stephan Reichholf"
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Snel vooruitspoelen op volgende snelheid"
-
-#
 msgid "Enter IP to scan..."
 msgstr "Geef IP om te zoeken..."
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Snel terugspoelen op volgende snelheid"
-
-#
 msgid "Enter main menu..."
 msgstr "Ga naar hoofdmenu..."
 
@@ -2678,6 +2784,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estlands"
 
+msgid "Ethernet network interface"
+msgstr "Ethernet netwerk interface"
+
 #
 msgid "Eventview"
 msgstr "Programmaoverzicht"
@@ -2779,6 +2888,8 @@ msgid ""
 "FTPBrowser allows uploading and downloading files between your Dreambox and "
 "a server using the file transfer protocol."
 msgstr ""
+"FTPBrowser maakt het mogelijk met het FTP-protocol bestanden te up- en "
+"downloaden tussen uw Dreambox en een server."
 
 #
 msgid "Factory reset"
@@ -2878,9 +2989,14 @@ msgstr "Herstarten van uw netwerk is voltooid"
 msgid "Finnish"
 msgstr "Fins"
 
-msgid "First generate your skin-style with the Ai.HD-Control plugin."
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
 msgstr ""
 
+msgid "First generate your skin-style with the Ai.HD-Control plugin."
+msgstr "Eerst uw skin stijl genereren met de Ai.HD-Control plugin."
+
 #
 msgid "Flash"
 msgstr "Flash"
@@ -2896,6 +3012,14 @@ msgstr "Volgende taken worden uitgevoerd nadat u op OK drukt!"
 msgid "Format"
 msgstr "Formaat"
 
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+"Een totaal van %d overeenkomende gebeurtenissen gevonden.\n"
+"%d timers werden toegevoegd en %d gewijzigd, %d conflicten ondervonden."
+
 #
 #, python-format
 msgid ""
@@ -2906,10 +3030,6 @@ msgstr ""
 "%d Timers werd toegevoegd en %d gewijzigd."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Beeldherhalingsfrequentie tijdens 'ruw' spoelen"
-
-#
 msgid "Frame size in full view"
 msgstr "Framegrootte in vol beeld"
 
@@ -2952,8 +3072,11 @@ msgstr "Fries"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr "FritzCall toont inkomende gesprekken op uw Dreambox."
 
+msgid "Front USB Slot"
+msgstr "Voorkant USB Slot"
+
 msgid "Frontend for /tmp/mmi.socket"
-msgstr ""
+msgstr "Frontend voor /tmp/mmi.socket"
 
 #
 #, python-format
@@ -3008,6 +3131,9 @@ msgstr "Algemene PCM vertraging"
 msgid "General PCM delay (ms)"
 msgstr "Algemene PCM vertraging (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr "Genereert en toont TV grafieken van alle gebruikers"
+
 #
 msgid "Genre"
 msgstr "Genre"
@@ -3087,23 +3213,27 @@ msgid "Green boost"
 msgstr "Groene impuls"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
+"Growlee laat uw Dreambox meldingen als 'Opname gestart' doorsturen naar een "
+"PC waar een growl-, snarl- of syslog-compatibele client draait, of naar een "
+"iPhone waar prowl draait."
 
-#
-msgid "Guard Interval"
-msgstr "Guard interval"
-
-#
-msgid "Guard interval mode"
-msgstr "Guard interval modus"
+msgid "Guard interval"
+msgstr "Wacht interval"
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr "Raad bestaande timer gebaseerd op begin/einde"
 
+msgid "HD Interlace Mode"
+msgstr "HD interlace modus"
+
+msgid "HD Progressive Mode"
+msgstr "HD progressieve Modus"
+
 #
 msgid "HD videos"
 msgstr "HD videos"
@@ -3132,6 +3262,9 @@ msgstr "Harde schijf standby na"
 msgid "Help"
 msgstr "Help"
 
+msgid "Hidden network"
+msgstr "Verborgen netwerk"
+
 #
 msgid "Hidden network SSID"
 msgstr "Verborgen netwerk SSID"
@@ -3140,13 +3273,8 @@ msgstr "Verborgen netwerk SSID"
 msgid "Hidden networkname"
 msgstr "Verborgen netwerknaam"
 
-#
-msgid "Hierarchy Information"
-msgstr "Hiërarchie informatie"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hiërarchie modus"
+msgid "Hierarchy info"
+msgstr "Hiërarchie info"
 
 #
 msgid "High bitrate support"
@@ -3191,7 +3319,7 @@ msgid "Hungarian"
 msgstr "Hongaars"
 
 msgid "IMAP4 e-mail viewer for the Dreambox"
-msgstr ""
+msgstr "IMAP4 e-mail bekijken via uw Dreambox"
 
 #
 msgid "IP Address"
@@ -3218,10 +3346,8 @@ msgstr "Ijslands"
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"Indien ingeschakeld wordt een programma al als opgenomen beschouwd als een "
-"andere timer eral 80% van opneemt."
 
 #
 msgid ""
@@ -3323,6 +3449,12 @@ msgstr "Informatie"
 msgid "Init"
 msgstr "Initialiseren"
 
+msgid "Initial Fast Forward speed"
+msgstr "Initiële snel vooruitspoel snelheid"
+
+msgid "Initial Rewind speed"
+msgstr "Initiële terugspoel snelheid"
+
 #
 msgid "Initial location in new timers"
 msgstr "Initiële locatie in nieuwe timers"
@@ -3424,6 +3556,9 @@ msgstr "Intern geheugen"
 msgid "Internal LAN adapter."
 msgstr "Interne LAN adapter."
 
+msgid "Internal USB Slot"
+msgstr "Intern USB Slot"
+
 msgid "Internal firmware updater"
 msgstr "Interne firmware updater"
 
@@ -3589,7 +3724,7 @@ msgid "Keymap"
 msgstr "Toetsenbord layout"
 
 msgid "KiddyTimer allows to control your kids's daily tv usage."
-msgstr ""
+msgstr "Met KiddyTimer bepaalt u het dagelijkse TV gedrag van uw kind."
 
 #
 msgid "LAN Adapter"
@@ -3626,6 +3761,11 @@ msgstr "Taalkeuze"
 msgid "Last config"
 msgstr "Laatste config"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Laatste snelheid"
@@ -3683,6 +3823,9 @@ msgstr "Link:"
 msgid "Linked titles with a DVD menu"
 msgstr "Verbind titels met een DVD menu"
 
+msgid "List available networks"
+msgstr "Lijst van beschikbare netwerken"
+
 #
 msgid "List of Storage Devices"
 msgstr "Lijst van opslagmedia"
@@ -3821,6 +3964,9 @@ msgstr "Beheer uw ontvanger software"
 msgid "Manual Scan"
 msgstr "Handmatig zoeken"
 
+msgid "Manual configuration"
+msgstr "Handmatige configuratie"
+
 #
 msgid "Manual transponder"
 msgstr "Transponder handmatig"
@@ -3877,12 +4023,17 @@ msgid ""
 "MediaScanner scans devices for playable media files and displays a menu with "
 "possible actions like viewing pictures or playing movies."
 msgstr ""
+"Mediascanner scant opslagmedia naar afspeelbare bestanden en geeft in een "
+"menu de mogelijkheden aan om foto's of films te vertonen."
 
 msgid ""
 "Mediaplayer plays your favorite music and videos.\n"
 "Play all your favorite music and video files, organize them in playlists, "
 "view cover and album information."
 msgstr ""
+"De Mediaplayer speelt uw favoriete muziek en video's af.\n"
+"Speel uw favoriete muziek en video's, beheer die in afspeellijsten, bekijk "
+"hoes- en albuminformatie."
 
 #
 msgid "Medium is not a writeable DVD!"
@@ -3897,7 +4048,7 @@ msgid "Menu"
 msgstr "Menu"
 
 msgid "Merlin Music Player and iDream"
-msgstr ""
+msgstr "Merlin Music Player en iDream"
 
 #
 msgid "Message"
@@ -4084,7 +4235,7 @@ msgid "Move west"
 msgstr "Draai west"
 
 msgid "Movie information from the Online Film Datenbank (German)."
-msgstr "Film informatie uit de Online Film Datenbank(Duits)."
+msgstr "Film informatie uit de Online Film Datenbank (Duits)."
 
 msgid "Movie informations from the Online Film Datenbank"
 msgstr "Film informatie uit de Online Film Datenbank"
@@ -4113,6 +4264,9 @@ msgstr "Opname menu"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr "Multi-EPG boeket selectie"
+
 #
 msgid "Multimedia"
 msgstr "Multimedia"
@@ -4121,6 +4275,9 @@ msgstr "Multimedia"
 msgid "Multiple service support"
 msgstr "Geschikt voor meervoudig decoderen"
 
+msgid "Multiplex"
+msgstr "Multiplex"
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4173,6 +4330,8 @@ msgid ""
 "NCID Client shows incoming voice calls promoted by any NCID server (e.g. "
 "Vodafone Easybox) on your Dreambox."
 msgstr ""
+"NCID client die inkomende gesprekken van een NCID-server (b.v. Vodafone "
+"Easybox) via uw Dreambox laat zien."
 
 #
 msgid "NEXT"
@@ -4190,6 +4349,9 @@ msgstr "NFI image schrijven is gereed. Druk op Gele toets om te herstarten!"
 msgid "NFS share"
 msgstr "NFS share"
 
+msgid "NIM"
+msgstr "NIM"
+
 #
 msgid "NOW"
 msgstr "NU"
@@ -4219,6 +4381,9 @@ msgstr "Nameserver instellingen"
 msgid "Nameserver settings"
 msgstr "Nameserver instellingen"
 
+msgid "Namespace"
+msgstr "Naamruimte"
+
 msgid "Nemesis BlackBox Skin"
 msgstr "Nemesis BlackBox Skin"
 
@@ -4372,6 +4537,9 @@ msgstr "Netwerk browser"
 msgid "NetworkWizard"
 msgstr "Netwerk wizard"
 
+msgid "Networkname (SSID)"
+msgstr "Netwerknaam (SSID)"
+
 #
 msgid "Never"
 msgstr "Nooit"
@@ -4540,6 +4708,9 @@ msgstr "Geen video's weer te geven"
 msgid "No wireless networks found! Please refresh."
 msgstr "Geen draadloze netwerken gevonden! Vernieuw."
 
+msgid "No wireless networks found! Searching..."
+msgstr "Geen draadloze netwerken gevonden! Zoeken ..."
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4630,6 +4801,12 @@ msgstr "Noord"
 msgid "Norwegian"
 msgstr "Noors"
 
+msgid "Not after"
+msgstr "Niet na"
+
+msgid "Not before"
+msgstr "Niet eerder"
+
 #
 #, python-format
 msgid ""
@@ -4643,6 +4820,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Niet ophalen Feed items"
 
+msgid "Not-Associated"
+msgstr "Niet geassocieerd"
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4685,6 +4865,9 @@ msgstr "OK, verwijder een andere extensie"
 msgid "OK, remove some extensions"
 msgstr "OK, verwijder een aantal extensies"
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "OSD Instellingen"
@@ -4752,16 +4935,15 @@ msgstr "Open plugin menu"
 msgid "Optionally enter your name if you want to."
 msgstr "Desgewenst geeft u uw naam als u wilt."
 
-#
-msgid "Orbital Position"
-msgstr "Orbit positie"
+msgid "Orbital position"
+msgstr "Orbitale positie"
 
 #
 msgid "Outer Bound (+/-)"
 msgstr "Maximale vertraging (+/-)"
 
 msgid "Overlay for scrolling bars"
-msgstr ""
+msgstr "Overlay voor scrollbalken"
 
 #
 msgid "Override found with alternative service"
@@ -4777,10 +4959,16 @@ msgstr "Overschrijven configuratiebestanden tijdens de upgrade?"
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr "PCR PID"
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr "PMT PID"
+
 #
 msgid "Package list update"
 msgstr "Pakketlijst vernieuwen"
@@ -4830,6 +5018,8 @@ msgid ""
 "Partnerbox allows editing a remote Dreambox's record timers and stream its "
 "TV  program."
 msgstr ""
+"Partnerbox maakt het mogelijk de timers op een andere Dreambox te beheren en "
+"daarvandaan video te streamen."
 
 #
 msgid "Password"
@@ -4846,7 +5036,7 @@ msgid "PermanentClock shows the clock permanently on the screen."
 msgstr "PermanentClock toont de klok permanent op het scherm."
 
 msgid "Persian"
-msgstr ""
+msgstr "Perzisch"
 
 msgid "Pets & Animals"
 msgstr "Huisdieren & Dieren"
@@ -4945,6 +5135,8 @@ msgid ""
 "Please be aware, that anyone can disable the parental control, if you have "
 "not set a PIN."
 msgstr ""
+"Let op: als u geen PIN instelt, kan iedereen de ouderlijke controle "
+"uitzetten."
 
 #
 msgid "Please change recording endtime"
@@ -5229,17 +5421,13 @@ msgid "Plugins"
 msgstr "Applicaties"
 
 msgid "PodCast streams podcasts to your Dreambox."
-msgstr ""
+msgstr "PodCast streamt podcasts naar uw Dreambox."
 
 #
 msgid "Poland"
 msgstr "Polen"
 
 #
-msgid "Polarity"
-msgstr "Polariteit"
-
-#
 msgid "Polarization"
 msgstr "Polarisatie"
 
@@ -5275,6 +5463,9 @@ msgstr "Poort D"
 msgid "Portuguese"
 msgstr "Portugees"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr "Positie van voltooide timers in timerlijst"
+
 #
 msgid "Positioner"
 msgstr "Rotor"
@@ -5297,6 +5488,7 @@ msgstr "Rotor positie opslaan"
 
 msgid "PositionerSetup helps you installing a motorized dish"
 msgstr ""
+"PositionerSetup helpt u bij het installeren van een gemotoriseerde schotel"
 
 #
 msgid ""
@@ -5415,10 +5607,10 @@ msgid "Preview menu"
 msgstr "Voorbeeld menu"
 
 msgid "Preview screenshots of running tv shows"
-msgstr ""
+msgstr "Voorbeeld schermafbeeldingen van TV-shows"
 
 msgid "Preview screenshots of running tv shows."
-msgstr ""
+msgstr "Voorbeeld schermafbeeldingen van TV-shows."
 
 #
 msgid "Primary DNS"
@@ -5464,7 +5656,7 @@ msgid "Python frontend for /tmp/mmi.socket"
 msgstr "Python frontend voor /tmp/mmi.socket"
 
 msgid "Python frontend for /tmp/mmi.socket."
-msgstr ""
+msgstr "Python frontend voor /tmp/mmi.socket."
 
 #
 msgid "Quick"
@@ -5489,6 +5681,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr "RSS-viewer"
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr "RT8070/RT3070/RT3370 USB wireless-n driver"
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5552,10 +5747,11 @@ msgid "Reception Settings"
 msgstr "Ontvangstinstellingen"
 
 msgid "Reconstruct .ap and .sc files"
-msgstr ""
+msgstr "Reconstrueert .ap en .sc bestanden"
 
 msgid "Reconstruct missing or corrupt .ap and .sc files of recorded movies."
 msgstr ""
+"Reconstrueert ontbrekende en corrupte .ap en .sc bestanden van opnames."
 
 #
 msgid "Record"
@@ -5598,6 +5794,9 @@ msgstr "Opnames"
 msgid "Recordings always have priority"
 msgstr "Een opname heeft altijd voorrang"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr "Verstuur meldingen door naar Growl, Snarl, Prowl of Syslog"
+
 msgid "Reenter new PIN"
 msgstr "Voer nieuwe pincode nogmaals in"
 
@@ -5719,9 +5918,12 @@ msgstr "Herhalingen"
 
 msgid "Replace the minute input for the seek functions with a seekbar."
 msgstr ""
+"Vervangt het ingeven van minuten voor de zoekfunctie door een voortgangsbalk."
 
 msgid "Replace the rewind  input with a seekbar"
 msgstr ""
+"Vervangt het ingeven van een waarde om terug te spoelen door een "
+"voortgangsbalk"
 
 #
 msgid "Require description to be unique"
@@ -5816,7 +6018,10 @@ msgstr "Herstel uw Dreambox met een USB-stick"
 
 #
 msgid "Restrict \"after event\" to a certain timespan?"
-msgstr ""
+msgstr "Beperk \"after event\" tot een bepaalde tijdspanne?"
+
+msgid "Restrict to events on certain dates"
+msgstr "Beperk tot gebeurtenissen op bepaalde dagen"
 
 #
 msgid "Resume from last position"
@@ -5858,9 +6063,8 @@ msgstr "Terugspoel snelheid"
 msgid "Right"
 msgstr "Rechts"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5870,6 +6074,9 @@ msgstr "Rotor draaisnelheid"
 msgid "Running"
 msgstr "In behandeling"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr "Rusland"
@@ -5882,6 +6089,21 @@ msgstr "Russisch"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr "25/50HZ SD interlace modus"
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr "25/50HZ SD progressieve modus"
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr "30/60HZ SD interlace modus"
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr "30/60HZ SD progressieve Modus"
+
+msgid "SID"
+msgstr "SID"
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr "ENKEL LAYER DVD"
@@ -5898,6 +6120,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Za"
@@ -5920,6 +6155,7 @@ msgstr "Satellietapparatuur"
 
 msgid "SatelliteEquipmentControl allows you to fine-tune DiSEqC-settings"
 msgstr ""
+"Met SatelliteEquipmentControl kunt u de DiSEqC-instellingen fijn instellen"
 
 #
 msgid "Satellites"
@@ -5930,7 +6166,7 @@ msgid "Satfinder"
 msgstr "Signaalzoeker"
 
 msgid "Satfinder helps you to align your dish"
-msgstr ""
+msgstr "De Satfinder helpt u met het uitrichten van uw schotel"
 
 #
 msgid "Sats"
@@ -6087,7 +6323,7 @@ msgstr ""
 "uw geselecteerd apparaat.\n"
 
 msgid "Scans default lamedbs sorted by satellite"
-msgstr ""
+msgstr "Scant de default lamedbs op volgorde van de satellieten"
 
 msgid ""
 "Scans default lamedbs sorted by satellite with a connected dish positioner"
@@ -6164,7 +6400,7 @@ msgid "Security service not running."
 msgstr "Security service draait niet."
 
 msgid "See service-epg (and PiP) from other channels in an infobar."
-msgstr ""
+msgstr "Bekijk EPG (en PiP) van andere kanalen in de informatiebalk."
 
 #
 msgid "Seek"
@@ -6363,6 +6599,9 @@ msgstr ""
 "Zender niet gevonden!\n"
 "(SID not found in PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Zenders zoeken"
@@ -6420,7 +6659,7 @@ msgid "Set this NO to disable this AutoTimer."
 msgstr "Kies NEE om deze AutoTimer uit te schakelen."
 
 msgid "Sets your Dreambox into Deep-Standby"
-msgstr ""
+msgstr "Zet uw Dreambox in Deep-Standby (uit)"
 
 #
 # L:\Dreambox\Eclipse\enigma2-plugins\ac3lipsync\src/AC3main.py:337
@@ -6500,6 +6739,9 @@ msgstr "Toon event-vooruitgang in zender keuze"
 msgid "Show in extension menu"
 msgstr "Toon in uitbreidingsmenu"
 
+msgid "Show info screen"
+msgstr "Toon info scherm"
+
 #
 msgid "Show infobar on channel change"
 msgstr "Infobalk zichtbaar na zenderwissel"
@@ -6512,6 +6754,9 @@ msgstr "Infobalk weergeven bij EPG update"
 msgid "Show infobar on skip forward/backward"
 msgstr "Infobalk zichtbaar na overslaan, vooruit/achteruit"
 
+msgid "Show notification on conflicts"
+msgstr "Toon melding op conflicten"
+
 #
 msgid "Show positioner movement"
 msgstr "Rotor bewegingen zichtbaar"
@@ -6535,6 +6780,8 @@ msgid ""
 "Shows a list containing the zapping-history and allows user to zap to the "
 "entries or to modify them."
 msgstr ""
+"Toont een lijst met de Zap-geschiedenis en maakt het mogelijk om direct naar "
+"entries te zappen en die aan te passen."
 
 msgid "Shows a list of recent zap entries"
 msgstr "Toont een lijst van recente zap activiteit"
@@ -6543,7 +6790,7 @@ msgid "Shows average bitrate of video and audio"
 msgstr "Toont de gemiddelde bitrate van video en audio"
 
 msgid "Shows statistics of watched services"
-msgstr ""
+msgstr "Toont de statistieken van bekeken kanalen"
 
 msgid "Shows the clock permanently on the screen"
 msgstr "Toont de klok permanent op het scherm"
@@ -6581,14 +6828,14 @@ msgid "Simple"
 msgstr "Eenvoudig"
 
 msgid "Simple IRC GroupChat client for e2 #dm8000-vip channel"
-msgstr ""
+msgstr "Simple IRC GroupChat client voor e2 #dm8000-vip kanaal"
 
 #
 msgid "Simple titleset (compatibility for legacy players)"
 msgstr "Eenvoudige titelset (compatibel met gewone spelers)"
 
 msgid "SimpleRSS allows reading RSS newsfeeds on your Dreambox."
-msgstr ""
+msgstr "Met SimpleRSS kunt u RSS-feeds lezen via uw Dreambox."
 
 #
 msgid "Single"
@@ -6615,7 +6862,7 @@ msgid "Skin"
 msgstr "Skin"
 
 msgid "SkinSelector shows a menu with selectable skins"
-msgstr ""
+msgstr "De SkinSelector toont u een menu met de beschikbare skins"
 
 #
 msgid "Skins"
@@ -6674,7 +6921,7 @@ msgid "Software update"
 msgstr "Software update"
 
 msgid "SoftwareManager manages your Dreambox software"
-msgstr ""
+msgstr "Met de SoftwareManager beheert u de software van uw Dreambox"
 
 msgid "Softwaremanager information"
 msgstr "Sofwarebeheer informatie"
@@ -6785,6 +7032,9 @@ msgstr "Standby Fan %d Voltage"
 msgid "Start Webinterface"
 msgstr "Start Webinterface"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr "Start eenvoudig uw multimedia plugins met de PVR-toets."
+
 #
 msgid "Start from the beginning"
 msgstr "Start vanaf het begin"
@@ -6881,10 +7131,10 @@ msgid "Stored position"
 msgstr "Opgeslagen positie"
 
 msgid "Stream podcasts"
-msgstr ""
+msgstr "Stream podcasts"
 
 msgid "Streaming modules for the orf.at iptv web page."
-msgstr ""
+msgstr "Streaming modules voor de orf.at iptv website."
 
 #
 msgid "Subservice list..."
@@ -6910,6 +7160,9 @@ msgstr "Zo"
 msgid "Sunday"
 msgstr "Zondag"
 
+msgid "Support \"Fast Scan\"?"
+msgstr "Ondersteuning \\ \"Fast Scan \"?"
+
 #
 msgid "Swap Services"
 msgstr "Zenders omwisselen"
@@ -6934,13 +7187,8 @@ msgstr "Ga naar vorige subzender"
 msgid "Switchable tuner types:"
 msgstr "Verwisselbare tuner types:"
 
-#
-msgid "Symbol Rate"
-msgstr "Symbolrate"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolrate"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6958,10 +7206,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS bestand is te groot voor ISO9660 level1!"
 
+msgid "TSID"
+msgstr "TSID"
+
+msgid "TV Charts of all users"
+msgstr "TV grafieken van alle gebruikers"
+
 #
 msgid "TV System"
 msgstr "TV Systeem"
 
+msgid "TXT PID"
+msgstr "TXT PID"
+
 #
 msgid "Table of content for collection"
 msgstr "Inhoudslijst voor verzameling"
@@ -6994,6 +7251,9 @@ msgstr "Taiwan"
 msgid "Temperature and Fan control"
 msgstr "Temperatuur en ventilator controle"
 
+msgid "Temperature-dependent fan control."
+msgstr "Temperatuur afhankelijke ventilator controle."
+
 #
 msgid "Terrestrial"
 msgstr "Terrestrisch"
@@ -7081,10 +7341,18 @@ msgid ""
 "The box automatically wakes up for recordings or at the end of the sleep "
 "time. You therefore don't have to wait until it is on again."
 msgstr ""
+"e Elektro Power Save plugin schakelt uw ontvanger op de ingestelde tijden in "
+"Deep Sleep (uit).\n"
+"Dat gebeurt alleen als de ontvanger in standby staat en er in de komende 20 "
+"minuten geen opname gepland is.\n"
+"De ontvanger start automatisch op tijd op voor opnames of op de ingestelde "
+"tijd."
 
 msgid ""
 "The Hotplug plugin notifies your system of newly added or removed devices."
 msgstr ""
+"De Hotplug plugin informeert uw systeem over pas aangesloten of verwijderde "
+"media."
 
 #
 msgid ""
@@ -7111,11 +7379,15 @@ msgid ""
 "The Satfinder plugin helps you to align your dish.\n"
 "It shows you informations about signal rate and errors."
 msgstr ""
+"De Satfinder Plugin helpt u met het uitrichten van uw schotel.\n"
+"Hij toont informatie over signaalwaarden en fouten."
 
 msgid ""
 "The SkinSelector shows a menu with selectable skins.\n"
 "It's now easy to change the look and feel of your Dreambox."
 msgstr ""
+"De SkinSelector toont u een menu met de beschikbare skins.\n"
+"Het is nu heel gemakkelijk om het uiterlijk van uw Dreambox aan te passen."
 
 msgid ""
 "The SoftwareManager manages your Dreambox software.\n"
@@ -7169,6 +7441,8 @@ msgid ""
 "The VideoTune helps fine-tuning your tv display.\n"
 "You can control brightness and contrast of your tv."
 msgstr ""
+"VideoTune helpt u met het fijnregelen van het beeldscherm van uw TV.\n"
+"U kunt de helderheid en het contrast van uw TV instellen."
 
 msgid "The Videomode plugin provides advanced video mode settings."
 msgstr "De videomode plugin biedt geavanceerde video-instellingen."
@@ -7176,6 +7450,8 @@ msgstr "De videomode plugin biedt geavanceerde video-instellingen."
 msgid ""
 "The WirelessLan plugin helps you configuring your WLAN network interface."
 msgstr ""
+"De WirelessLan plugin helpt u met het configureren van uw WLAN netwerk "
+"interface."
 
 #
 msgid "The backup failed. Please choose a different backup location."
@@ -7276,7 +7552,7 @@ msgid "The results have been written to %s."
 msgstr "De resultaten zijn bewaard op %s."
 
 msgid "The skin is in KingSize-definition 1024x576"
-msgstr ""
+msgstr "De skin heeft een KingSize maat van 1024x576"
 
 #
 msgid "The sleep timer has been activated."
@@ -7324,9 +7600,8 @@ msgstr ""
 msgid "The wizard is finished now."
 msgstr "De wizard is nu gereed."
 
-#
 msgid "There are at least "
-msgstr "Er zijn ten minste"
+msgstr "Er zijn ten minste "
 
 #
 msgid "There are currently no outstanding actions."
@@ -7344,9 +7619,8 @@ msgstr "Er zijn geen standaard instellingen in uw firmware gevonden."
 msgid "There are no updates available."
 msgstr "Er zijn geen updates beschikbaar."
 
-#
 msgid "There are now "
-msgstr "Er zijn nu"
+msgstr "Er zijn nu "
 
 #
 msgid ""
@@ -7442,6 +7716,13 @@ msgid ""
 "If you already have a prepared bootable USB stick, please insert it now. "
 "Otherwise plug in a USB stick with a minimum size of 64 MB!"
 msgstr ""
+"Deze plugin maakt een USB-stick die kan worden gebruikt om de firmware van "
+"uw ontvanger te updaten zonder dat u een LAN of WLAN verbinding nodig "
+"heeft.\n"
+"Eerst moet de stick worden voorbereid, zodat daarvan opgestart kan worden.\n"
+"In de volgende stap moet een NFI-image worden opgeslagen op de stick.\n"
+"Als u al een bruikbare stick heeft, kunt u die nu inpluggen. Anders plaatst "
+"u een stick met een minimum grootte van 64 MB!"
 
 #
 msgid "This plugin is installed."
@@ -7469,6 +7750,8 @@ msgid ""
 "This system tool is internally used to program the hardware with firmware "
 "updates."
 msgstr ""
+"Dit systeemgereedschap wordt intern gebruikt om de hardware van een firmware "
+"update te voorzien."
 
 #
 msgid ""
@@ -7658,7 +7941,7 @@ msgid "Titleset mode"
 msgstr "Titelset modus"
 
 msgid "To be used as simple downloading application by other Plugins."
-msgstr ""
+msgstr "Te gebruiken als eenvoudige downloadapplicatie voor andere Plugins."
 
 msgid ""
 "To update your Dreambox firmware, please follow these steps:\n"
@@ -7708,7 +7991,7 @@ msgid "Track"
 msgstr "Spoor"
 
 msgid "TrafficInfo shows german traffic information."
-msgstr ""
+msgstr "TrafficInfo toont Duitse verkeersinformatie."
 
 #
 msgid "Translation"
@@ -7719,10 +8002,6 @@ msgid "Translation:"
 msgstr "Vertaling:"
 
 #
-msgid "Transmission Mode"
-msgstr "Transmissie modus"
-
-#
 msgid "Transmission mode"
 msgstr "Transmissie modus"
 
@@ -7731,10 +8010,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Transponder type"
-
-#
 msgid "Travel & Events"
 msgstr "Reizen & Evenementen"
 
@@ -7866,6 +8141,9 @@ msgstr "Ongedaan"
 msgid "Undo uninstall"
 msgstr "Ongedaan"
 
+msgid "Unencrypted"
+msgstr "Ongecodeerd"
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7894,6 +8172,9 @@ msgstr "Verenigde Staten"
 msgid "Universal LNB"
 msgstr "Universeel LNB"
 
+msgid "Unknown"
+msgstr "Onbekend"
+
 msgid "Unknown network adapter."
 msgstr "Onbekende netwerkadapter."
 
@@ -7915,7 +8196,7 @@ msgid "Unsupported"
 msgstr "Niet Ondersteund"
 
 msgid "UnwetterInfo shows german storm information."
-msgstr ""
+msgstr "UnwetterInfo toont informatie over Duits noodweer."
 
 #
 msgid "Update"
@@ -8014,10 +8295,8 @@ msgstr "Gateway gebruiken"
 
 msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
-
-#
-msgid "Use non-smooth winding at speeds above"
-msgstr "Gebruik 'ruw' spoelen bij snelheden boven"
+"Gebruik en de beheer meerdere Dreamboxen met verschillende "
+"afstandsbedieningen."
 
 #
 msgid "Use power measurement"
@@ -8103,8 +8382,14 @@ msgstr "VMGM (intro trailer)"
 msgid "Vali-XD skin"
 msgstr "Vali-XD skin"
 
+msgid "Vali.HD.atlantis skin"
+msgstr "Vali.HD.atlantis skin"
+
 msgid "Vali.HD.nano skin"
-msgstr ""
+msgstr "Vali.HD.nano skin"
+
+msgid "Vali.HD.warp skin"
+msgstr "Vali.HD.warp skin"
 
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
@@ -8112,6 +8397,9 @@ msgstr ""
 "Controleer uw Dreambox authenticiteit door het uitvoeren van de echtheids "
 "dreambox plugin!"
 
+msgid "Verifying your internet connection..."
+msgstr "Controleren van uw internet verbinding..."
+
 #
 msgid "Vertical"
 msgstr "Vertikaal"
@@ -8128,6 +8416,9 @@ msgstr "Video fijn instellingen wizard"
 msgid "Video Output"
 msgstr "Video uitgang"
 
+msgid "Video PID"
+msgstr "Video PID"
+
 #
 msgid "Video Setup"
 msgstr "Video instellingen"
@@ -8167,13 +8458,13 @@ msgid "Video mode selection."
 msgstr "Video modus selectie"
 
 msgid "Video streaming from the orf.at web page"
-msgstr ""
+msgstr "Video streaming van de website orf.at"
 
 msgid "VideoEnhancement provides advanced video enhancement settings"
-msgstr ""
+msgstr "VideoEnhancement biedt geavanceerde videoverbetering instellingen"
 
 msgid "VideoTune helps fine-tuning your tv display"
-msgstr ""
+msgstr "VideoTune helpt met fijn instellen van uw TV-scherm"
 
 #
 msgid "Videobrowser exit behavior:"
@@ -8184,7 +8475,7 @@ msgid "Videoenhancement Setup"
 msgstr "Videoverbetering instellingen"
 
 msgid "Videomode provides advanced video mode settings"
-msgstr ""
+msgstr "Videomode heeft geavanceerde video-instellingen"
 
 #
 msgid "Videoplayer stop/exit behavior:"
@@ -8366,7 +8657,7 @@ msgid "Warn if free space drops below (kB):"
 msgstr "Waarschuwen als vrije ruimte daalt onder (kB):"
 
 msgid "Watch streams from ZDF Mediathek"
-msgstr ""
+msgstr "Bekijk streams van de ZDF Mediatheek"
 
 msgid "WeatherPlugin shows weatherforecasts on your Dreambox."
 msgstr "WeatherPlugin toont de weersverwachting op uw Dreambox."
@@ -8374,6 +8665,9 @@ msgstr "WeatherPlugin toont de weersverwachting op uw Dreambox."
 msgid "Weatherforecast on your Dreambox"
 msgstr "De weersverwachting op uw Dreambox."
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr "Web-Bouquet-Editor voor PC"
+
 #
 msgid "Webinterface"
 msgstr "Webinterface"
@@ -8553,6 +8847,11 @@ msgstr "Wat wilt u zoeken?"
 msgid "What to do with submitted crashlogs?"
 msgstr "Wat te doen met ingediende crashlogs?"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8598,6 +8897,15 @@ msgstr "Draadloos netwerk"
 msgid "Wireless Network State"
 msgstr "Status draadloos netwerk"
 
+msgid "Wireless network connection setup"
+msgstr "Draadloze netwerkverbinding instellen"
+
+msgid "Wireless network connection setup."
+msgstr "Draadloze netwerkverbinding instellen."
+
+msgid "Wireless network state"
+msgstr "Draadloos netwerk status"
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8655,6 +8963,8 @@ msgid ""
 "With YouTubePlayer you can watch YouTube-Videos on the Dreambox.\n"
 "This plugin requires a PC with the VLC program running."
 msgstr ""
+"Met YouTubePlayer kunt u YouTube-video's vertonen op uw Dreambox.\n"
+"Deze plugin vereist een PC waarop het programma VLC draait."
 
 msgid ""
 "With the CommonInterfaceAssignment plugin it is possible to use differentCI "
@@ -8703,11 +9013,15 @@ msgid ""
 "With the PositionerSetup plugin it is easy to install and configure a "
 "motorized dish."
 msgstr ""
+"Met de PositionerSetup plugin is het gemakkelijk een gemotoriseerde schotel "
+"te installeren en te configureren."
 
 msgid ""
 "With the SatelliteEquipmentControl plugin it is possible to fine-tune DiSEqC-"
 "settings."
 msgstr ""
+"Met de SatelliteEquipmentControl plugin kunt u de DiSEqC-instellingen fijn "
+"instellen."
 
 #
 msgid ""
@@ -8850,6 +9164,12 @@ msgstr ""
 "Terwijl 'Name' gewoon een normaal leesbare naam is voor de overzichtslijst, "
 "'Match' is een titel waar naar gezocht wordt in de EPG."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "U kunt dit niet wissen!"
@@ -9064,6 +9384,9 @@ msgstr "Uw naam (optioneel):"
 msgid "Your network configuration has been activated."
 msgstr "Configuratie van uw netwerk is geactiveerd."
 
+msgid "Your network is not working. Please try again."
+msgstr "Uw netwerk werkt niet. Probeer het opnieuw."
+
 #
 msgid "Your network mount has been activated."
 msgstr "Uw netwerkverbinding is geactiveerd."
@@ -9089,7 +9412,7 @@ msgstr ""
 "Kies wat je hierna wenst te doen."
 
 msgid "ZDFMediathek allows you to watch streams from ZDF Mediathek."
-msgstr ""
+msgstr "Met ZDFMediatheek kunt u kijken naar streams van de ZDF Mediatheek."
 
 #
 msgid "Zap back to previously tuned service?"
@@ -9111,13 +9434,13 @@ msgid "Zap between commercials"
 msgstr "Zap tussen de commercials"
 
 msgid "ZapStatistic shows the watched services with some statistics."
-msgstr ""
+msgstr "ZapStatistic toont de bekeken kanalen met enkele statistieken."
 
 msgid "Zoom into letterboxed/anamorph movies"
-msgstr ""
+msgstr "Inzoomen op letterbox/anamorphe films"
 
 msgid "Zoom into letterboxed/anamorph movies."
-msgstr ""
+msgstr "Inzoomen op letterbox/anamorphe films."
 
 msgid "Zydas"
 msgstr "Zydas"
@@ -9250,7 +9573,7 @@ msgid "add services"
 msgstr "Zenders toevoegen"
 
 msgid "add tags to recorded movies"
-msgstr ""
+msgstr "voeg tags toe aan films"
 
 #
 msgid "add to parental protection"
@@ -9266,16 +9589,18 @@ msgstr "Alfabetisch sorteren"
 
 msgid "assign color buttons (red/green/yellow/blue) to plugins from MOVIELIST."
 msgstr ""
+"wijs lange knopdruk (rood/groen/geel/blauw) toe aan plugins van de MOVIELIST."
 
 msgid "assign color buttons to plugins from MOVIELIST"
-msgstr ""
+msgstr "wijs kleurknoppen toe aan plugins van de MOVIELIST"
 
 msgid ""
 "assign long key-press (red/green/yellow/blue) to plugins or E2 functions."
 msgstr ""
+"wijs lange knopdruk (rood/groen/geel/blauw) toe aan plugins of E2-functies."
 
 msgid "assign long key-press on color buttons to plugins or E2 functions"
-msgstr ""
+msgstr "wijs lange knopdruk toe aan kleurknoppen van plugins of E2-functies"
 
 #
 msgid "assigned CAIds:"
@@ -9285,6 +9610,12 @@ msgstr "Toegewezen CAids:"
 msgid "assigned Services/Provider:"
 msgstr "Toegewezen Zenders/Provider:"
 
+msgid "at beginning"
+msgstr "aan het begin"
+
+msgid "at end"
+msgstr "aan het einde"
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9303,6 +9634,9 @@ msgstr "Audio sporen"
 msgid "auto"
 msgstr "auto"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "beschikbaar"
@@ -9335,6 +9669,9 @@ msgstr "zwarte lijst"
 msgid "blue"
 msgstr "blauw"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9376,6 +9713,9 @@ msgstr "Afspeellijst leeg maken"
 msgid "complex"
 msgstr "complex"
 
+msgid "config changed."
+msgstr "configuratie gewijzigd."
+
 #
 msgid "config menu"
 msgstr "configuratiemenu"
@@ -9393,7 +9733,7 @@ msgid "continue"
 msgstr "Doorgaan"
 
 msgid "control multiple Dreamboxes with different RCs"
-msgstr ""
+msgstr "bedien meerdere Dreamboxen met verschillende afstandsbedieningen"
 
 #
 msgid "copy to bouquets"
@@ -9407,6 +9747,12 @@ msgstr "kon niet worden verwijderd"
 msgid "create directory"
 msgstr "Map aanmaken"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr "huidig geïnstalleerd image: %s"
@@ -9419,6 +9765,9 @@ msgstr "dagelijks"
 msgid "day"
 msgstr "dag"
 
+msgid "default"
+msgstr "standaard"
+
 #
 msgid "delete"
 msgstr "Verwijderen"
@@ -9478,6 +9827,9 @@ msgstr "Niet opnemen"
 msgid "done!"
 msgstr "gereed!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "Alternatieven bewerken"
@@ -9758,6 +10110,9 @@ msgstr "minuut"
 msgid "minutes"
 msgstr "minuten"
 
+msgid "missing parameter \"id\""
+msgstr "ontbrekende parameter \"id\""
+
 #
 msgid "month"
 msgstr "maand"
@@ -9955,9 +10310,6 @@ msgstr "rood"
 msgid "redesigned Kerni-HD1 skin"
 msgstr "redesigned Kerni-HD1 skin"
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr "verwijder een nameserver "
@@ -10294,6 +10646,10 @@ msgstr "Tijd, hoofdstuk, audio en ondertitels instellen"
 msgid "tuner is not supported"
 msgstr "tuner wordt niet ondersteund"
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr "niet beschikbaar"
@@ -10364,6 +10720,9 @@ msgstr "wekelijks"
 msgid "whitelist"
 msgstr "witte lijst"
 
+msgid "wireless network interface"
+msgstr "draadloze netwerk interface"
+
 #
 msgid "working"
 msgstr "bezig"
@@ -10540,6 +10899,22 @@ msgstr "zapte"
 #~ msgstr "Bron kiezen"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Hoge ontvangst rate"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Lage ontvangst rate"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Coderate HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Coderate LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact flash kaart"
 
@@ -10662,6 +11037,14 @@ msgstr "zapte"
 #~ "© 2007 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Snel vooruitspoelen op volgende snelheid"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Snel terugspoelen op volgende snelheid"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Geef WLAN netwerk naam/SSID:"
 
@@ -10688,6 +11071,10 @@ msgstr "zapte"
 #~ msgstr "Volgende taken zullen gebeuren nadat u op OK drukt."
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Beeldherhalingsfrequentie tijdens 'ruw' spoelen"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP adres"
 
@@ -10704,13 +11091,36 @@ msgstr "zapte"
 #~ msgstr "Algemene PCM vertraging"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Guard interval"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Guard interval modus"
+
+#
 #~ msgid "Here is a small overview of the available icon states."
 #~ msgstr "Hier is een klein overzicht van de beschikbare icoontjes."
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hiërarchie informatie"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hiërarchie modus"
+
+#
 #~ msgid "How to handle found crashlogs:"
 #~ msgstr "Wat te doen met crashlogs:"
 
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Indien ingeschakeld wordt een programma al als opgenomen beschouwd als "
+#~ "een andere timer eral 80% van opneemt."
+
 #
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Indien u deze pagina kunt zien, druk dan op OK"
@@ -10800,6 +11210,10 @@ msgstr "zapte"
 #~ msgstr "Online software update"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Orbit positie"
+
+#
 #~ msgid "Package details for: "
 #~ msgstr "Pakket details voor:"
 
@@ -10844,6 +11258,10 @@ msgstr "zapte"
 #~ msgstr "Pakket beheer proces informatie..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polariteit"
+
+#
 #~ msgid "Port"
 #~ msgstr "Poort"
 
@@ -10912,6 +11330,10 @@ msgstr "zapte"
 #~ "te activeren."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
+#
 #~ msgid "SSL"
 #~ msgstr "SSL"
 
@@ -11041,6 +11463,14 @@ msgstr "zapte"
 #~ msgstr "Kies audio"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbolrate"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolrate"
+
+#
 #~ msgid ""
 #~ "The USB stick is now bootable. Do you want to download the latest image "
 #~ "from the feed server and save it on the stick?"
@@ -11126,6 +11556,14 @@ msgstr "zapte"
 #~ "3)Wacht op het opstarten en volg de instructies van de wizard."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Transmissie modus"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Transponder type"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -11166,6 +11604,10 @@ msgstr "zapte"
 #~ msgstr "Software update gereed. Uw Dreambox herstarten?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Gebruik 'ruw' spoelen bij snelheden boven"
+
+#
 #~ msgid "View"
 #~ msgstr "Bekijken"
 
index a089b9d..eebdd6e 100755 (executable)
--- a/po/no.po
+++ b/po/no.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2008-06-12 14:34+0100\n"
 "Last-Translator: MMMMMM <theMMMMMM@gmail.com>\n"
 "Language-Team: none\n"
@@ -170,6 +170,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -208,6 +214,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -364,10 +374,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -388,6 +398,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -411,6 +424,9 @@ msgstr "En grafisk EPG for alle kanaler i en valgt bouqet"
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -861,6 +877,9 @@ msgstr "Spør bruker"
 msgid "Aspect Ratio"
 msgstr "Breddeforhold"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -875,6 +894,9 @@ msgstr "Lyd"
 msgid "Audio Options..."
 msgstr "Lyd Valg..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -941,6 +963,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Automatisk"
@@ -975,6 +1006,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1017,6 +1066,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Tilbake"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr ""
@@ -1111,6 +1166,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Lysstyrke"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1140,6 +1200,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1408,21 +1479,11 @@ msgstr ""
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Kode rate høy"
-
-#
-msgid "Code rate low"
-msgstr "Kode rate lav"
-
-#
-msgid "Coderate HP"
-msgstr "Koderate HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Koderate LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1606,6 +1667,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr ""
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr ""
@@ -1784,6 +1849,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1869,10 +1937,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Forsinkelse"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Slette"
@@ -2056,6 +2133,12 @@ msgstr ""
 "Vil du virkelig sjekke filsystemet?\n"
 "Det kan ta veldig lang tid!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2249,6 +2332,12 @@ msgstr ""
 msgid "Dreambox software because updates are available."
 msgstr ""
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2390,10 +2479,25 @@ msgstr "Aktiver"
 msgid "Enable /media"
 msgstr "Aktiver /media"
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Aktiver 5V for aktiv antenne"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2514,18 +2618,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Inngangshastighet for spoling framover"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Inngangshastighet for spoling bakover"
-
-#
 msgid "Enter main menu..."
 msgstr "Åpne hovedmenyen"
 
@@ -2596,6 +2692,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Programoversikt"
@@ -2793,6 +2892,11 @@ msgstr ""
 msgid "Finnish"
 msgstr "Finsk"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2812,16 +2916,18 @@ msgstr ""
 msgid "Format"
 msgstr ""
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Billedgjentagelse ved hakkete spoling"
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
+msgstr ""
 
 #
 msgid "Frame size in full view"
@@ -2866,6 +2972,9 @@ msgstr ""
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2920,6 +3029,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Genre"
@@ -2998,23 +3110,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Guard Interval"
-
-#
-msgid "Guard interval mode"
-msgstr "Guard interval modus"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3043,6 +3156,9 @@ msgstr "Harddisk standby etter"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr ""
@@ -3051,13 +3167,8 @@ msgstr ""
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Hierarkisk Informasjon"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hierarkisk modus"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3128,11 +3239,10 @@ msgstr ""
 msgid "Icelandic"
 msgstr "Islandsk"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3236,6 +3346,12 @@ msgstr "Informasjon"
 msgid "Init"
 msgstr "Init"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3337,6 +3453,9 @@ msgstr "Intern Flash"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3533,6 +3652,11 @@ msgstr "Språkvalg"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Siste hastighet"
@@ -3590,6 +3714,9 @@ msgstr "Link:"
 msgid "Linked titles with a DVD menu"
 msgstr ""
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Liste over Lagringsenheter"
@@ -3726,6 +3853,9 @@ msgstr ""
 msgid "Manual Scan"
 msgstr "Manuelt Søk"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Manuell transponder"
@@ -4013,6 +4143,9 @@ msgstr "Filmliste Meny"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr ""
@@ -4021,6 +4154,9 @@ msgstr ""
 msgid "Multiple service support"
 msgstr "Multi kanal support"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4090,6 +4226,9 @@ msgstr ""
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "NÅ"
@@ -4119,6 +4258,9 @@ msgstr "Navneserver Oppsett"
 msgid "Nameserver settings"
 msgstr "Navneserver instillinger"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4274,6 +4416,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr "Nettverksguide"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4443,6 +4588,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4527,6 +4675,12 @@ msgstr "Nord"
 msgid "Norwegian"
 msgstr "Norsk"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4538,6 +4692,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4580,6 +4737,9 @@ msgstr ""
 msgid "OK, remove some extensions"
 msgstr ""
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "OSD-Instillinger"
@@ -4649,9 +4809,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr ""
 
-#
-msgid "Orbital Position"
-msgstr "Orbital Posisjon"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4674,10 +4833,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Pakkeliste oppdatering"
@@ -5116,10 +5281,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Polaritet"
-
-#
 msgid "Polarization"
 msgstr "Polarisasjon"
 
@@ -5155,6 +5316,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portugisisk"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Motor"
@@ -5370,6 +5534,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5480,6 +5647,9 @@ msgstr ""
 msgid "Recordings always have priority"
 msgstr "Innspillinger har alltid prioritet"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5701,6 +5871,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Fortsett fra siste posisjon"
@@ -5741,9 +5914,8 @@ msgstr "Hastigheter ved spoling bakover"
 msgid "Right"
 msgstr "Høyre"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5753,6 +5925,9 @@ msgstr "Motor dreie hastighet"
 msgid "Running"
 msgstr "Kjører"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5765,6 +5940,21 @@ msgstr "Russisk"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5781,6 +5971,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Lør"
@@ -6241,6 +6444,9 @@ msgstr ""
 "Kanal ikke funnet!\n"
 "(SID ikke funnet i PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Kanalsøk"
@@ -6375,6 +6581,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Vis infobar ved kanalbytte"
@@ -6387,6 +6596,9 @@ msgstr "Vis infobar ved programbytte"
 msgid "Show infobar on skip forward/backward"
 msgstr "Vis infobar ved hopp fram/tilbake"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Vis motorbevegelse"
@@ -6655,6 +6867,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr "Start WebInterface"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Start fra begynnelsen"
@@ -6778,6 +6993,9 @@ msgstr "Søn"
 msgid "Sunday"
 msgstr "Søndag"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Bytt kanaler"
@@ -6802,13 +7020,8 @@ msgstr "Bytt til forrige underkanal"
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Symbolrate"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolrate"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6827,10 +7040,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr ""
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV System"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr ""
@@ -6863,6 +7085,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Terrestrial"
@@ -7518,10 +7743,6 @@ msgid "Translation:"
 msgstr "Oversetting:"
 
 #
-msgid "Transmission Mode"
-msgstr "Sendings Modus"
-
-#
 msgid "Transmission mode"
 msgstr "Sendingstype"
 
@@ -7530,10 +7751,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Transponder Type"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7661,6 +7878,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7689,6 +7909,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "Universal LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7803,10 +8026,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Spoling/avspilling ved bruk av stillbilder"
-
-#
 msgid "Use power measurement"
 msgstr "Bruk strøm måling"
 
@@ -7887,13 +8106,22 @@ msgstr ""
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr ""
@@ -7910,6 +8138,9 @@ msgstr "Video Fininnstilling Guide"
 msgid "Video Output"
 msgstr "Video Utgang"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Video Oppsett"
@@ -8155,6 +8386,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr "WebInterface"
@@ -8292,6 +8526,11 @@ msgstr "Hva vil du søke etter?"
 msgid "What to do with submitted crashlogs?"
 msgstr ""
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8328,6 +8567,15 @@ msgstr "Trådløst Nettverk"
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8546,6 +8794,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Du kan ikke slette denne!."
@@ -8724,6 +8978,9 @@ msgstr ""
 msgid "Your network configuration has been activated."
 msgstr ""
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -8941,6 +9198,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -8959,6 +9222,9 @@ msgstr ""
 msgid "auto"
 msgstr ""
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr ""
@@ -8991,6 +9257,9 @@ msgstr "svartlist"
 msgid "blue"
 msgstr ""
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9032,6 +9301,9 @@ msgstr "tøm spilliste"
 msgid "complex"
 msgstr "kompleks"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "Konfigurasjonsmeny"
@@ -9063,6 +9335,12 @@ msgstr ""
 msgid "create directory"
 msgstr ""
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9075,6 +9353,9 @@ msgstr "Daglig"
 msgid "day"
 msgstr ""
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "slett"
@@ -9134,6 +9415,9 @@ msgstr "ikke ta opp"
 msgid "done!"
 msgstr "ferdig!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "editer alternativer"
@@ -9414,6 +9698,9 @@ msgstr "minutt"
 msgid "minutes"
 msgstr "minutter"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr ""
@@ -9612,9 +9899,6 @@ msgstr ""
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr ""
@@ -9951,6 +10235,10 @@ msgstr "skift tid, kapittel, lyd, tekst info"
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr ""
@@ -10021,6 +10309,9 @@ msgstr "Ukentlig"
 msgid "whitelist"
 msgstr "hvitliste"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr ""
@@ -10183,6 +10474,22 @@ msgstr "zapped"
 #~ msgstr "Velg kilde"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Kode rate høy"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Kode rate lav"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Koderate HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Koderate LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact flash kort"
 
@@ -10343,6 +10650,14 @@ msgstr "zapped"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Inngangshastighet for spoling framover"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Inngangshastighet for spoling bakover"
+
+#
 #~ msgid "Equal to Socket A"
 #~ msgstr "Likt Socket A"
 
@@ -10363,6 +10678,10 @@ msgstr "zapped"
 #~ msgstr "Filsystem Kontroll..."
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Billedgjentagelse ved hakkete spoling"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP adresse"
 
@@ -10375,6 +10694,14 @@ msgstr "zapped"
 #~ msgstr "Spill / Plugins"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Guard Interval"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Guard interval modus"
+
+#
 #~ msgid "Hello!"
 #~ msgstr "Hei!"
 
@@ -10383,6 +10710,14 @@ msgstr "zapped"
 #~ msgstr "Ikke vis feilmeldinger"
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hierarkisk Informasjon"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hierarkisk modus"
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Hvis du kan se denne siden, vennligst trykk OK"
 
@@ -10485,6 +10820,10 @@ msgstr "zapped"
 #~ msgstr "Online-Oppgradering"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Orbital Posisjon"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Annet..."
 
@@ -10542,6 +10881,10 @@ msgstr "zapped"
 #~ msgstr "Vennligst velg nøkkelord for filter"
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polaritet"
+
+#
 #~ msgid "Positioner mode"
 #~ msgstr "Rotormodus"
 
@@ -10613,6 +10956,10 @@ msgstr "zapped"
 #~ "aktivere dem nå."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
+#
 #~ msgid "Satconfig"
 #~ msgstr "Satellitinstillinger"
 
@@ -10687,6 +11034,14 @@ msgstr "zapped"
 #~ msgstr "Stereo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbolrate"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolrate"
+
+#
 #~ msgid ""
 #~ "Thank you for using the wizard. Your Dreambox is now ready to use.\n"
 #~ "\n"
@@ -10751,6 +11106,14 @@ msgstr "zapped"
 #~ msgstr "Endre EPG-Type ved å trykke INFO knappen"
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Sendings Modus"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Transponder Type"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -10785,6 +11148,10 @@ msgstr "zapped"
 #~ msgstr "Anvendelsesinstillinger"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Spoling/avspilling ved bruk av stillbilder"
+
+#
 #~ msgid ""
 #~ "Use the up/down keys on your remote control to select an option. After "
 #~ "that,press OK."
index 703e02d..5bd9694 100755 (executable)
--- a/po/pl.po
+++ b/po/pl.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2010-07-23 12:21+0200\n"
 "Last-Translator: Mladen <acid-burn@opendreambox.org>\n"
 "Language-Team: none\n"
@@ -184,6 +184,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -222,6 +228,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(Przełącz)"
@@ -378,12 +388,12 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr ""
+
 msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr "Powrót do korzeni-Skórka .. lub starych dobrych czasów."
 
-msgid "A BackToTheRoots-Skin ... or good old times."
-msgstr "Powrót do korzeni-Skórka ... lub starych dobrych czasów."
-
 msgid "A basic ftp client"
 msgstr "Podstawowy klient ftp"
 
@@ -402,6 +412,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Plugin demo dla użytku TPM."
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -425,6 +438,9 @@ msgstr "Graficzny EPG dla wszystkich usług określonego bukietu"
 msgid "A graphical EPG interface"
 msgstr "Graficzny interfejs EPG"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr "Graficzny interfejs EPG."
 
@@ -896,6 +912,9 @@ msgstr "Zapytaj użytkownika"
 msgid "Aspect Ratio"
 msgstr "Format obrazu:"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Przypisywanie dostawców / usług / CAID do modułu CI"
 
@@ -910,6 +929,9 @@ msgstr "Dźwięk"
 msgid "Audio Options..."
 msgstr "Opcje Dźwięku..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr "Audio Sync"
@@ -980,6 +1002,15 @@ msgstr ""
 "AutoTimer skanuje EPG i tworzy Timery w zależności od zdefiniowanych przez "
 "użytkownika kryteriów."
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Automatycznie"
@@ -1017,6 +1048,31 @@ msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr "Automatyczne wysyłanie crash logów do Dream Multimedia"
 
 #
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+"Tryb testowy autoresolution:\n"
+"Jest %s ok?"
+
+#
+msgid "Autoresolution Switch"
+msgstr "Włącznik autoresolution"
+
+#
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Autoresolution nie działa w trybie Scart/DVI-PC"
+
+#
+msgid "Autoresolution settings"
+msgstr "Ustawienia Autoresolution"
+
+#
+msgid "Autoresolution videomode setup"
+msgstr "Konfiguracja trybu wideo Autoresolution "
+
+#
 msgid "Autos & Vehicles"
 msgstr "Samochody & Pojazdy"
 
@@ -1058,6 +1114,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Powrót"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Tło"
@@ -1152,6 +1214,11 @@ msgstr "Brazylia"
 msgid "Brightness"
 msgstr "Jasność"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr "Przeglądaj i łącz się do udziałów sieciowych"
 
@@ -1180,6 +1247,17 @@ msgstr "Wypal swoje nagrania na DVD"
 msgid "Bus: "
 msgstr "Bus:"
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1446,21 +1524,11 @@ msgstr "Zamknij i zapisz zmiany"
 msgid "Close title selection"
 msgstr "Zamknij wybór tytułu"
 
-#
-msgid "Code rate high"
-msgstr "Poziom kodu wysoki"
-
-#
-msgid "Code rate low"
-msgstr "Poziom kodu niski"
-
-#
-msgid "Coderate HP"
-msgstr "Poziom kodu HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Poziom kodu LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1645,6 +1713,10 @@ msgstr "Nie mozna otworzyć PiP"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Nie można nagrać z powodu konfliktu timera %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr "Ustawienia crashlog"
@@ -1831,6 +1903,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr "Przeglądarka DVD"
@@ -1919,10 +1994,22 @@ msgid "Define a startup service for your Dreambox."
 msgstr "Zdefiniuj usługi startowe dla Twojego Dreamboxa."
 
 #
+msgid "Deinterlacer mode for interlaced content"
+msgstr "Tryb bez przeplotu dla zawartości z przeplotem"
+
+#
+msgid "Deinterlacer mode for progressive content"
+msgstr "Tryb bez przeplotu dla zawartości progresywnej"
+
+#
 msgid "Delay"
 msgstr "Opóźnienie"
 
 #
+msgid "Delay x seconds after service started"
+msgstr "Opóżnienie x sekund po starcie serwisu"
+
+#
 msgid "Delete"
 msgstr "Usuń"
 
@@ -2109,6 +2196,12 @@ msgstr ""
 "Czy na pewno chcesz sprawdzić sysem plików?\n"
 "Czynność może zająć dużo czasu!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2304,6 +2397,12 @@ msgstr "Format danych DVD (kompatybilny z HDTV)"
 msgid "Dreambox software because updates are available."
 msgstr "Oprogramowanie dreamboxa ponieważ aktualizacje są dostępne"
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr "Trwanie: "
@@ -2450,10 +2549,30 @@ msgid "Enable /media"
 msgstr "Włącz katalog /media"
 
 #
+msgid "Enable 1080p24 Mode"
+msgstr "Włącz tryb 1080p24"
+
+#
+msgid "Enable 1080p25 Mode"
+msgstr "Włącz tryb 1080p25"
+
+#
+msgid "Enable 1080p30 Mode"
+msgstr "Włącz tryb 1080p30"
+
+#
 msgid "Enable 5V for active antenna"
 msgstr "Włącz 5V dla aktywnej anteny"
 
 #
+msgid "Enable 720p24 Mode"
+msgstr "Włącz tryb 720p24"
+
+#
+msgid "Enable Autoresolution"
+msgstr "Włącz Autoresolution"
+
+#
 msgid "Enable Cleanup Wizard?"
 msgstr "Włączyć kreatora czyszczenia?"
 
@@ -2584,18 +2703,10 @@ msgstr ""
 "© 2006 - Stephan Reichholf"
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Przejdź do przodu bardzo szybko"
-
-#
 msgid "Enter IP to scan..."
 msgstr "Wpisz IP do skanowania..."
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Przejdź wstecz bardzo szybko"
-
-#
 msgid "Enter main menu..."
 msgstr "Wejdź do menu głównego..."
 
@@ -2668,6 +2779,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estoński"
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Widok wydarzenia"
@@ -2871,6 +2985,11 @@ msgstr "Zakończono restartowanie sieci"
 msgid "Finnish"
 msgstr "Fiński"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr "Pierwsze wygeneruj styl skóry za pomocą wtyczki Ai.HD-Control."
 
@@ -2890,6 +3009,12 @@ msgstr "Ponizsze zadania będą wykonane po wciśnięciu OK!"
 msgid "Format"
 msgstr "Format"
 
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -2900,10 +3025,6 @@ msgstr ""
 "%d Timer będzie dodany %d i zmodyfikowany."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Oblicz powtórzenie ramki podczas nie-płynnego zwijania"
-
-#
 msgid "Frame size in full view"
 msgstr "Rozmiar ramki w pełnym widoku"
 
@@ -2947,6 +3068,9 @@ msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 "FritzCall pokazuje połączenia przychodzące do Fritz!Box na Twoim Dreamboxie."
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr "Nakładka na /tmp/mmi.socket"
 
@@ -3003,6 +3127,9 @@ msgstr "Główne opóźnienie PCM"
 msgid "General PCM delay (ms)"
 msgstr "Główne opóźnienie PCM (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Gatunek"
@@ -3083,26 +3210,25 @@ msgid "Green boost"
 msgstr "Zielony"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
+msgstr ""
+
+msgid "Guard interval"
 msgstr ""
-"Growlee pozwala Dreamboxowi na wysyłanie krótkich wiadomości tekstowych przy "
-"użyciu protokołu growl\n"
-"jak np rozpoczęcie nagrywania zgłoszone do komputera z uruchomionym klientem "
-"growl"
 
 #
-msgid "Guard Interval"
-msgstr "Ochrona odstępu"
+msgid "Guess existing timer based on begin/end"
+msgstr "Przypuszczalnie istniejący timer bazowany na początku/końcu"
 
 #
-msgid "Guard interval mode"
-msgstr "Ochronny tryb odstępu"
+msgid "HD Interlace Mode"
+msgstr "Tryb HD z przeplotem"
 
 #
-msgid "Guess existing timer based on begin/end"
-msgstr "Przypuszczalnie istniejący timer bazowany na początku/końcu"
+msgid "HD Progressive Mode"
+msgstr "Progresywny tryb HD"
 
 #
 msgid "HD videos"
@@ -3132,6 +3258,9 @@ msgstr "Tryb czuwania dysku twardego po"
 msgid "Help"
 msgstr "Pomoc"
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "Ukryty sieciowy SSID"
@@ -3140,13 +3269,8 @@ msgstr "Ukryty sieciowy SSID"
 msgid "Hidden networkname"
 msgstr "Ukryta nazwa sieci"
 
-#
-msgid "Hierarchy Information"
-msgstr "Informacja hierarchii"
-
-#
-msgid "Hierarchy mode"
-msgstr "Tryb hierarchii"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3217,14 +3341,11 @@ msgstr "Ścieżka ISO"
 msgid "Icelandic"
 msgstr "Islandzki"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"Jeśli to jest włączone na istniejącym timerze wtedy będzie też za nagraniem "
-"jeśli nagrywa ostanie 80% of tego."
 
 #
 msgid ""
@@ -3326,6 +3447,12 @@ msgstr "Informacje"
 msgid "Init"
 msgstr "Init"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr "Początkowa lokalizacja nowego timera"
@@ -3427,6 +3554,9 @@ msgstr "Wewnętrzny Flash"
 msgid "Internal LAN adapter."
 msgstr "Wewnętrzny adapter LAN."
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr "Aktualizator oprogramowania wewnętrznego"
 
@@ -3626,6 +3756,11 @@ msgstr "Wybór języka"
 msgid "Last config"
 msgstr "Ostatnie ust"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Ostatnia prędkość"
@@ -3683,6 +3818,9 @@ msgstr "Łącze:"
 msgid "Linked titles with a DVD menu"
 msgstr "Połącz tytuł z menu DVD"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Lista zapamiętanych urządzeń"
@@ -3824,6 +3962,9 @@ msgstr "Zarządzaj oprogramowaniem tunera"
 msgid "Manual Scan"
 msgstr "Ręczne skanowanie"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Własny transponder"
@@ -4123,6 +4264,9 @@ msgstr "Menu listy filmów"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr "Multimedia"
@@ -4131,6 +4275,9 @@ msgstr "Multimedia"
 msgid "Multiple service support"
 msgstr "Wielokrotny support serwisu"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4203,6 +4350,9 @@ msgstr ""
 msgid "NFS share"
 msgstr "Udział NFS"
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "Teraz"
@@ -4232,6 +4382,9 @@ msgstr "Konfiguracja Nameserver"
 msgid "Nameserver settings"
 msgstr "Ustawienia nameserver"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr "Nemesis BlackBox Skin"
 
@@ -4387,6 +4540,9 @@ msgstr "Przeglądarka sieciowa"
 msgid "NetworkWizard"
 msgstr "Kreator sieci"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr "Nigdy"
@@ -4557,6 +4713,9 @@ msgstr "Brak filmów do wyswietlenia"
 msgid "No wireless networks found! Please refresh."
 msgstr "Brak sieci bezprzewodowych! Proszę odśwież"
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4651,6 +4810,12 @@ msgstr "Północ"
 msgid "Norwegian"
 msgstr "Norweski"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4664,6 +4829,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Brk wyszukiwanych wpisów"
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4706,6 +4874,9 @@ msgstr "OK, usuń kolejne rozszerzenia"
 msgid "OK, remove some extensions"
 msgstr "OK, usuń kilka rozszerzeń"
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "Ustawienia OSD"
@@ -4775,9 +4946,8 @@ msgstr "Otwórz menu plugina"
 msgid "Optionally enter your name if you want to."
 msgstr "Opcjonalnie dodaj nazwę jeśli chcesz."
 
-#
-msgid "Orbital Position"
-msgstr "Pozycja orbitalna"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4800,10 +4970,16 @@ msgstr "Zastąpić pliki konfiguracyjne podczas aktualizacji oprogramowania?"
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "Pidy"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Paczka listy aktualizacji"
@@ -4872,7 +5048,7 @@ msgid "PermanentClock shows the clock permanently on the screen."
 msgstr "PermanentClock pokazuje na stałe zegar na ekranie."
 
 msgid "Persian"
-msgstr ""
+msgstr "Perski"
 
 #
 msgid "Pets & Animals"
@@ -5256,10 +5432,6 @@ msgid "Poland"
 msgstr "Polska"
 
 #
-msgid "Polarity"
-msgstr "Polaryzacja"
-
-#
 msgid "Polarization"
 msgstr "Polaryzacja"
 
@@ -5295,6 +5467,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portugalski"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Pozycjoner"
@@ -5512,6 +5687,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr "Przeglądarka RSS"
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5624,6 +5802,9 @@ msgstr "Nagrania"
 msgid "Recordings always have priority"
 msgstr "Nagrywanie zawsze ma priorytet"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr "Wpisz ponownie nowy PIN"
 
@@ -5845,6 +6026,9 @@ msgstr "Przywróć ustawienia Dreamboxa za pomocą pamięci USB"
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr "Ograniczyć \"po wydarzeniu\" do pewnych horyzontów czasowych?"
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Wznów od ostatniej pozycji"
@@ -5885,9 +6069,8 @@ msgstr "Prędkości przewijania w tył"
 msgid "Right"
 msgstr "Prawo"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5898,6 +6081,10 @@ msgid "Running"
 msgstr "Uruchomiony"
 
 #
+msgid "Running in testmode"
+msgstr "Uruchomiony w trybie testowym"
+
+#
 msgid "Russia"
 msgstr "Rosja"
 
@@ -5910,6 +6097,25 @@ msgid "S-Video"
 msgstr "S-Video"
 
 #
+msgid "SD 25/50HZ Interlace Mode"
+msgstr "SD 25/50HZ Tryb z przeplotem"
+
+#
+msgid "SD 25/50HZ Progressive Mode"
+msgstr "SD 25/50HZ Tryb progresywny"
+
+#
+msgid "SD 30/60HZ Interlace Mode"
+msgstr "SD 30/60HZ Tryb z przeplotem"
+
+#
+msgid "SD 30/60HZ Progressive Mode"
+msgstr "SD 30/60HZ Tryb progresywny"
+
+msgid "SID"
+msgstr ""
+
+#
 msgid "SINGLE LAYER DVD"
 msgstr "Pojedyńczy nośnik DVD"
 
@@ -5925,6 +6131,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Sob"
@@ -6390,6 +6609,9 @@ msgstr ""
 "Serwis nie znaleziony!\n"
 "(SID nie znaleziony w PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Skanowanie serwisów"
@@ -6529,6 +6751,10 @@ msgid "Show in extension menu"
 msgstr "Pokaż w menu rozszerzeń"
 
 #
+msgid "Show info screen"
+msgstr "Pokaż ekran info"
+
+#
 msgid "Show infobar on channel change"
 msgstr "Pokaż pasek info podczas zmiany kanału"
 
@@ -6540,6 +6766,9 @@ msgstr "Pokaż pasek info podczas zmiany wydarzenia"
 msgid "Show infobar on skip forward/backward"
 msgstr "Pokaż pasek info podczas przewijania przód/tył"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Pokaż ruchy pozycjonera"
@@ -6815,6 +7044,9 @@ msgstr "Wiatrak w standby %d napięcie"
 msgid "Start Webinterface"
 msgstr "Uruchom Webinterfejs"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Rozpocznij od początku"
@@ -6938,6 +7170,9 @@ msgstr "Nie"
 msgid "Sunday"
 msgstr "Niedziela"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Zamiana serwisów"
@@ -6962,13 +7197,8 @@ msgstr "Przełącz na poprzedni subserwis"
 msgid "Switchable tuner types:"
 msgstr "Przełącz typy tunerów:"
 
-#
-msgid "Symbol Rate"
-msgstr "Symbol Rate"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolrate"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6986,10 +7216,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "Plik TS jest za duży dla ISO9660 poziom 1!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "System TV"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Tabela zawartości dla kolekcji"
@@ -7022,6 +7261,9 @@ msgstr "tajwan"
 msgid "Temperature and Fan control"
 msgstr "Temperatura i kontrola wiatraka"
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Naziemny"
@@ -7768,10 +8010,6 @@ msgid "Translation:"
 msgstr "Tłumaczenie:"
 
 #
-msgid "Transmission Mode"
-msgstr "Tryb transmisji"
-
-#
 msgid "Transmission mode"
 msgstr "Tryb transmisji"
 
@@ -7780,10 +8018,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Typ transpondera"
-
-#
 msgid "Travel & Events"
 msgstr "Podróże & Wydarzenia"
 
@@ -7913,6 +8147,9 @@ msgstr "Anuluj instalację"
 msgid "Undo uninstall"
 msgstr "Anuluj odinstalowanie"
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr "UnhandledKey"
@@ -7941,6 +8178,9 @@ msgstr "Stany Zjednoczone"
 msgid "Universal LNB"
 msgstr "Uniwersalny LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr "Nieznany adapter sieciowy."
 
@@ -8056,10 +8296,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr "Używaj i kontroluj wiele Dreamboxów za pomocą różnych pilotów."
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Użyj nie-płynnego przewijania z poza szybkości"
-
-#
 msgid "Use power measurement"
 msgstr "Użyj pomiaru mocy"
 
@@ -8140,13 +8376,22 @@ msgstr "VMGM (intro trailer)"
 msgid "Vali-XD skin"
 msgstr "Vali-XD skin"
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr "Vali.HD.nano skin"
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr "Sprawdź autentyczność Dreamboxa uruchamiając plugin autentyczności!"
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr "Pionowa [V]"
@@ -8163,6 +8408,9 @@ msgstr "Kreator czystości obrazu "
 msgid "Video Output"
 msgstr "Wyjście Wideo"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Ustawienia Wideo"
@@ -8411,6 +8659,9 @@ msgstr "Wtyczka WeatherPlugin pokazuje prognozę pogody na Dreamboxie."
 msgid "Weatherforecast on your Dreambox"
 msgstr "Prognoza pogody na Dreambox"
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 msgid "Webinterface"
 msgstr "Webinterfejs"
 
@@ -8589,6 +8840,11 @@ msgstr "Co chcesz skanować?"
 msgid "What to do with submitted crashlogs?"
 msgstr "Co zrobić z danymi crashlogami?"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8632,6 +8888,15 @@ msgstr "Sieć bezprzewodowa"
 msgid "Wireless Network State"
 msgstr "Status sieci bezprzewodowej"
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8895,6 +9160,12 @@ msgstr ""
 "Podczas gdy nazwa jest zrozumiała dla nas nazwa wyświetlona w opisie "
 "wyszukania w tytule jest tym czego szukasz w EPG."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Tego nie można usunąć!"
@@ -9108,6 +9379,9 @@ msgstr "Twoja nazwa (opcjonalnie):"
 msgid "Your network configuration has been activated."
 msgstr "Twoja konfiguracja sieci została aktywowana."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr "Twoje montowanie sieci zostało aktywowane."
@@ -9335,6 +9609,12 @@ msgstr "Wyznaczone CAIds:"
 msgid "assigned Services/Provider:"
 msgstr "Wyznaczone serwisy/prowiderzy:"
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9353,6 +9633,9 @@ msgstr "Ścieżki audio"
 msgid "auto"
 msgstr "Auto"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "Dostępne"
@@ -9386,6 +9669,10 @@ msgid "blue"
 msgstr "Niebieski"
 
 #
+msgid "bob"
+msgstr "bob"
+
+#
 #, python-format
 msgid "burn audio track (%s)"
 msgstr "Nagraj ścieżkę audio (%s)"
@@ -9426,6 +9713,9 @@ msgstr "Wyczyść playlistę"
 msgid "complex"
 msgstr "złożony"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "Menu konfiguracji"
@@ -9457,6 +9747,12 @@ msgstr "Nie może być usunięty"
 msgid "create directory"
 msgstr "Utwórz katalog"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr "aktualnie instalowany Image: %s"
@@ -9470,6 +9766,10 @@ msgid "day"
 msgstr "Dzień"
 
 #
+msgid "default"
+msgstr "Domyślny"
+
+#
 msgid "delete"
 msgstr "Usuń"
 
@@ -9528,6 +9828,9 @@ msgstr "Nie nagrywaj"
 msgid "done!"
 msgstr "Zrobione!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "Edytuj wybrane kanały"
@@ -9808,6 +10111,9 @@ msgstr "Minuta"
 msgid "minutes"
 msgstr "Minutach"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "Miesiąc"
@@ -10006,9 +10312,6 @@ msgstr "czerwony"
 msgid "redesigned Kerni-HD1 skin"
 msgstr "przerobiony Kerni-HD1 skin"
 
-msgid "redirect notifications to Growl"
-msgstr "przekierowanie powiadomień do Growl"
-
 #
 msgid "remove a nameserver entry"
 msgstr "usuń wpis nameserwera"
@@ -10345,6 +10648,10 @@ msgstr "czas odtwarzania, rozdział, audio, informacja o napisach"
 msgid "tuner is not supported"
 msgstr "Tuner nieobsługiwany"
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr "Niedostępny"
@@ -10415,6 +10722,9 @@ msgstr "Tygodniowo"
 msgid "whitelist"
 msgstr "Biała lista"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "pracuje"
@@ -10502,6 +10812,9 @@ msgstr "Przełączony"
 #~ msgid "50 Hz"
 #~ msgstr "50 Hz"
 
+#~ msgid "A BackToTheRoots-Skin ... or good old times."
+#~ msgstr "Powrót do korzeni-Skórka ... lub starych dobrych czasów."
+
 #
 #~ msgid "AGC"
 #~ msgstr "AGC"
@@ -10573,30 +10886,6 @@ msgstr "Przełączony"
 #~ msgstr "Automatyczne oddzukiwanie SSID"
 
 #
-#~ msgid ""
-#~ "Autoresolution Plugin Testmode:\n"
-#~ "Is %s ok?"
-#~ msgstr ""
-#~ "Tryb testowy autoresolution:\n"
-#~ "Jest %s ok?"
-
-#
-#~ msgid "Autoresolution Switch"
-#~ msgstr "Włącznik autoresolution"
-
-#
-#~ msgid "Autoresolution is not working in Scart/DVI-PC Mode"
-#~ msgstr "Autoresolution nie działa w trybie Scart/DVI-PC"
-
-#
-#~ msgid "Autoresolution settings"
-#~ msgstr "Ustawienia Autoresolution"
-
-#
-#~ msgid "Autoresolution videomode setup"
-#~ msgstr "Konfiguracja trybu wideo Autoresolution "
-
-#
 #~ msgid "Backup"
 #~ msgstr "Kopia zapasowa"
 
@@ -10682,6 +10971,22 @@ msgstr "Przełączony"
 #~ msgstr "Kreator czyszczenia"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Poziom kodu wysoki"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Poziom kodu niski"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Poziom kodu HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Poziom kodu LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Karta Compact flash"
 
@@ -10780,18 +11085,6 @@ msgstr "Przełączony"
 #~ msgstr "Ustawienia standardowe"
 
 #
-#~ msgid "Deinterlacer mode for interlaced content"
-#~ msgstr "Tryb bez przeplotu dla zawartości z przeplotem"
-
-#
-#~ msgid "Deinterlacer mode for progressive content"
-#~ msgstr "Tryb bez przeplotu dla zawartości progresywnej"
-
-#
-#~ msgid "Delay x seconds after service started"
-#~ msgstr "Opóżnienie x sekund po starcie serwisu"
-
-#
 #~ msgid "Delete selected mount"
 #~ msgstr "Usuń wybrane montowanie"
 
@@ -10907,26 +11200,6 @@ msgstr "Przełączony"
 #~ msgstr "Włącz katalog /hdd"
 
 #
-#~ msgid "Enable 1080p24 Mode"
-#~ msgstr "Włącz tryb 1080p24"
-
-#
-#~ msgid "Enable 1080p25 Mode"
-#~ msgstr "Włącz tryb 1080p25"
-
-#
-#~ msgid "Enable 1080p30 Mode"
-#~ msgstr "Włącz tryb 1080p30"
-
-#
-#~ msgid "Enable 720p24 Mode"
-#~ msgstr "Włącz tryb 720p24"
-
-#
-#~ msgid "Enable Autoresolution"
-#~ msgstr "Włącz Autoresolution"
-
-#
 #~ msgid "Enable LAN"
 #~ msgstr "Włącza LAN"
 
@@ -10967,6 +11240,14 @@ msgstr "Przełączony"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Przejdź do przodu bardzo szybko"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Przejdź wstecz bardzo szybko"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Wpisz nazwę sieci WLAN / SSID:"
 
@@ -11010,6 +11291,10 @@ msgstr "Przełączony"
 #~ msgstr "Rozmiar fontu"
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Oblicz powtórzenie ramki podczas nie-płynnego zwijania"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP Adres"
 
@@ -11033,19 +11318,37 @@ msgstr "Przełączony"
 #~ msgid "Genre:"
 #~ msgstr "Gatunek:"
 
+#~ msgid ""
+#~ "Growlee allows your Dreambox to send short messages using the growl "
+#~ "protocol\n"
+#~ "like Recording started notifications to a PC running a growl client"
+#~ msgstr ""
+#~ "Growlee pozwala Dreamboxowi na wysyłanie krótkich wiadomości tekstowych "
+#~ "przy użyciu protokołu growl\n"
+#~ "jak np rozpoczęcie nagrywania zgłoszone do komputera z uruchomionym "
+#~ "klientem growl"
+
 #
-#~ msgid "HD Interlace Mode"
-#~ msgstr "Tryb HD z przeplotem"
+#~ msgid "Guard Interval"
+#~ msgstr "Ochrona odstępu"
 
 #
-#~ msgid "HD Progressive Mode"
-#~ msgstr "Progresywny tryb HD"
+#~ msgid "Guard interval mode"
+#~ msgstr "Ochronny tryb odstępu"
 
 #
 #~ msgid "Here is a small overview of the available icon states."
 #~ msgstr "Przegląd dostępnych stanów ikon"
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Informacja hierarchii"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Tryb hierarchii"
+
+#
 #~ msgid "How to handle found crashlogs:"
 #~ msgstr "Jak wykorzystać znalezione crashlogi:"
 
@@ -11054,6 +11357,14 @@ msgstr "Przełączony"
 #~ msgstr "Plugin IMDb"
 
 #
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Jeśli to jest włączone na istniejącym timerze wtedy będzie też za "
+#~ "nagraniem jeśli nagrywa ostanie 80% of tego."
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Jeśli widzisz tą stronę, proszę wciśnij OK."
 
@@ -11285,6 +11596,10 @@ msgstr "Przełączony"
 #~ msgstr "Online - Aktualizacja"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Pozycja orbitalna"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Inne..."
 
@@ -11387,6 +11702,10 @@ msgstr "Przełączony"
 #~ msgstr "Informacja o procesach menadżera pluginów..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polaryzacja"
+
+#
 #~ msgid "Port"
 #~ msgstr "Port"
 
@@ -11524,24 +11843,8 @@ msgstr "Przełączony"
 #~ msgstr "Pobieranie informacji sieciowej. Proszę czekać..."
 
 #
-#~ msgid "Running in testmode"
-#~ msgstr "Uruchomiony w trybie testowym"
-
-#
-#~ msgid "SD 25/50HZ Interlace Mode"
-#~ msgstr "SD 25/50HZ Tryb z przeplotem"
-
-#
-#~ msgid "SD 25/50HZ Progressive Mode"
-#~ msgstr "SD 25/50HZ Tryb progresywny"
-
-#
-#~ msgid "SD 30/60HZ Interlace Mode"
-#~ msgstr "SD 30/60HZ Tryb z przeplotem"
-
-#
-#~ msgid "SD 30/60HZ Progressive Mode"
-#~ msgstr "SD 30/60HZ Tryb progresywny"
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
 
 #
 #~ msgid "SSL"
@@ -11639,10 +11942,6 @@ msgstr "Przełączony"
 #~ msgstr "Pokaż pliki od %s"
 
 #
-#~ msgid "Show info screen"
-#~ msgstr "Pokaż ekran info"
-
-#
 #~ msgid "Skin..."
 #~ msgstr "Skiny..."
 
@@ -11697,6 +11996,14 @@ msgstr "Przełączony"
 #~ msgstr "Przełącz audio"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbol Rate"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolrate"
+
+#
 #~ msgid "Table of content to be burned to DVD:"
 #~ msgstr "Dane do wypalenia na DVD:"
 
@@ -11868,6 +12175,14 @@ msgstr "Przełączony"
 #~ "3) Poczekaj aż zbootuje i podążaj wg. instrukcji kreatora."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Tryb transmisji"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Typ transpondera"
+
+#
 #~ msgid "Type:"
 #~ msgstr "Typ:"
 
@@ -11930,6 +12245,10 @@ msgstr "Przełączony"
 #~ "Użyj domeny/nazwy użytkownika dla domen windowsa jako nazwy użytkownika!"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Użyj nie-płynnego przewijania z poza szybkości"
+
+#
 #~ msgid "VCR Switch"
 #~ msgstr "Automatycznie przełącz VCR"
 
@@ -12153,10 +12472,6 @@ msgstr "Przełączony"
 #~ msgstr "Wyznaczone Serwisy/Providerzy"
 
 #
-#~ msgid "bob"
-#~ msgstr "bob"
-
-#
 #~ msgid "by Exif"
 #~ msgstr "przez Exif"
 
@@ -12173,10 +12488,6 @@ msgstr "Przełączony"
 #~ msgstr "kolor"
 
 #
-#~ msgid "default"
-#~ msgstr "Domyślny"
-
-#
 #~ msgid "edit Interface"
 #~ msgstr "Edycja Interfejsu"
 
@@ -12268,6 +12579,9 @@ msgstr "Przełączony"
 #~ msgid "rebooting..."
 #~ msgstr "restatrowanie..."
 
+#~ msgid "redirect notifications to Growl"
+#~ msgstr "przekierowanie powiadomień do Growl"
+
 #
 #~ msgid "required medium type:"
 #~ msgstr "Wymagany średni typ:"
index 0051f5e..256a999 100755 (executable)
--- a/po/pt.po
+++ b/po/pt.po
@@ -6,7 +6,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma Portuguese\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2008-03-30 18:45-0000\n"
 "Last-Translator: Muaitai <muaitai@gmail.com>\n"
 "Language-Team: Muaitai <muaitai@gmail.com>\n"
@@ -173,6 +173,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -211,6 +217,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -367,10 +377,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -391,6 +401,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -414,6 +427,9 @@ msgstr "gravar lista"
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -864,6 +880,9 @@ msgstr "Consultar Utilizador"
 msgid "Aspect Ratio"
 msgstr "Aspect Ratio"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -878,6 +897,9 @@ msgstr "Audio"
 msgid "Audio Options..."
 msgstr "Opções de Audio"
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -944,6 +966,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Automatico"
@@ -978,6 +1009,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1020,6 +1069,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr ""
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr ""
@@ -1114,6 +1169,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Brilho"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1143,6 +1203,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1410,21 +1481,11 @@ msgstr ""
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Codigo alto"
-
-#
-msgid "Code rate low"
-msgstr "Codigo baixo"
-
-#
-msgid "Coderate HP"
-msgstr "Coderate HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Coderate LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1608,6 +1669,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr ""
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr ""
@@ -1787,6 +1852,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1872,10 +1940,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Atraso"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Apagar"
@@ -2059,6 +2136,12 @@ msgstr ""
 "Deseja mesmo verificar o sistema de ficheiros?\n"
 "Pode levar algum tempo!!!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2252,6 +2335,12 @@ msgstr ""
 msgid "Dreambox software because updates are available."
 msgstr ""
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2393,10 +2482,25 @@ msgstr "Activar"
 msgid "Enable /media"
 msgstr ""
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Activar saída de 5V para a antena"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2517,18 +2621,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Velocidade do avance rapido"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Velocidade do retrocesso rapido"
-
-#
 msgid "Enter main menu..."
 msgstr "Menu Principal"
 
@@ -2599,6 +2695,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Ver Evento"
@@ -2797,6 +2896,11 @@ msgstr ""
 msgid "Finnish"
 msgstr "Finlandês"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2816,16 +2920,18 @@ msgstr ""
 msgid "Format"
 msgstr ""
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Numero de frames repetidas, a usar com a função Vento Forte."
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
+msgstr ""
 
 #
 msgid "Frame size in full view"
@@ -2870,6 +2976,9 @@ msgstr ""
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2924,6 +3033,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Genero"
@@ -3002,23 +3114,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Intervalo"
-
-#
-msgid "Guard interval mode"
-msgstr "Manter  modo intervalo"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3047,6 +3160,9 @@ msgstr "Disco rigido suspenso após "
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr ""
@@ -3055,13 +3171,8 @@ msgstr ""
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Informação hierarquica"
-
-#
-msgid "Hierarchy mode"
-msgstr "Modo Hierárquico"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3132,11 +3243,10 @@ msgstr ""
 msgid "Icelandic"
 msgstr "Islandês"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3238,6 +3348,12 @@ msgstr "Informação"
 msgid "Init"
 msgstr "Inicio"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3339,6 +3455,9 @@ msgstr "Flash Interna"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3536,6 +3655,11 @@ msgstr "Selecção do Idioma"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Ultima velocidade"
@@ -3593,6 +3717,9 @@ msgstr ""
 msgid "Linked titles with a DVD menu"
 msgstr ""
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Lista de dispositivos de armazenamento"
@@ -3729,6 +3856,9 @@ msgstr ""
 msgid "Manual Scan"
 msgstr "Busca Manual"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Transponder Manual"
@@ -4016,6 +4146,9 @@ msgstr "Menu da lista de filmes"
 msgid "Multi EPG"
 msgstr "EPG Multi"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr ""
@@ -4024,6 +4157,9 @@ msgstr ""
 msgid "Multiple service support"
 msgstr "Suporte para Serviços Multiplos"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Satelites Multiplos"
@@ -4093,6 +4229,9 @@ msgstr ""
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "Agora"
@@ -4122,6 +4261,9 @@ msgstr "Nameserver Setup"
 msgid "Nameserver settings"
 msgstr ""
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4277,6 +4419,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr ""
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4443,6 +4588,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4528,6 +4676,12 @@ msgstr "Norte"
 msgid "Norwegian"
 msgstr "Norueguês"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4539,6 +4693,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4581,6 +4738,9 @@ msgstr ""
 msgid "OK, remove some extensions"
 msgstr ""
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "Definições OSD"
@@ -4650,9 +4810,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr ""
 
-#
-msgid "Orbital Position"
-msgstr "Posição Orbital"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4675,10 +4834,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Lista de pacotes actualizada"
@@ -5117,10 +5282,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Polaridade"
-
-#
 msgid "Polarization"
 msgstr "Polarização"
 
@@ -5156,6 +5317,9 @@ msgstr "Porta D"
 msgid "Portuguese"
 msgstr "Português"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Posicionador"
@@ -5371,6 +5535,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5481,6 +5648,9 @@ msgstr ""
 msgid "Recordings always have priority"
 msgstr "Gravações têm sempre prioridade"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5702,6 +5872,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Iniciar a partir da ultima posição"
@@ -5742,9 +5915,8 @@ msgstr "Velocidade de retrocesso"
 msgid "Right"
 msgstr "Direita"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5754,6 +5926,9 @@ msgstr "velocidade do rotor"
 msgid "Running"
 msgstr "A instalar"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5766,6 +5941,21 @@ msgstr "Russo"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5782,6 +5972,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Sat"
@@ -6242,6 +6445,9 @@ msgstr ""
 "Canal não encontrado!\n"
 "(SID not found in PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Busca de Canais"
@@ -6376,6 +6582,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Mostrar Info ao mudar de canal normal"
@@ -6388,6 +6597,9 @@ msgstr "Mostrar infobar ao mudar de canal"
 msgid "Show infobar on skip forward/backward"
 msgstr "Mostrar Info ao mudar de canal rapido < >"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Mostrar movimento do posicionador"
@@ -6656,6 +6868,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr ""
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Começar no inicio"
@@ -6779,6 +6994,9 @@ msgstr "Sol"
 msgid "Sunday"
 msgstr "Domingo"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Troca entrecanais"
@@ -6803,13 +7021,8 @@ msgstr "Mudar para o canal anterior"
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Symbol Rate"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolrate"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6824,10 +7037,19 @@ msgstr "TRANSLATOR_INFO"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr ""
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "Sistema de TV"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr ""
@@ -6860,6 +7082,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Terrestre"
@@ -7494,10 +7719,6 @@ msgid "Translation:"
 msgstr "Tradução:"
 
 #
-msgid "Transmission Mode"
-msgstr "Modo de Transmissão"
-
-#
 msgid "Transmission mode"
 msgstr "Modo de Transmissão"
 
@@ -7506,10 +7727,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Tipo deTransponder"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7639,6 +7856,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7667,6 +7887,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "LNB Universal "
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7781,10 +8004,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Usar a função Vento Forte nas velocidades acima"
-
-#
 msgid "Use power measurement"
 msgstr "Usar controlo da alimentação"
 
@@ -7867,13 +8086,22 @@ msgstr ""
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr ""
@@ -7890,6 +8118,9 @@ msgstr "Assistente de sintonia fina de Video"
 msgid "Video Output"
 msgstr "Saída de Video"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Definições de Video"
@@ -8135,6 +8366,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr ""
@@ -8271,6 +8505,11 @@ msgstr "O que deseja procurar?"
 msgid "What to do with submitted crashlogs?"
 msgstr ""
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8307,6 +8546,15 @@ msgstr ""
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8526,6 +8774,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Não é possivel apagar"
@@ -8700,6 +8954,9 @@ msgstr ""
 msgid "Your network configuration has been activated."
 msgstr ""
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -8917,6 +9174,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -8935,6 +9198,9 @@ msgstr ""
 msgid "auto"
 msgstr ""
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr ""
@@ -8967,6 +9233,9 @@ msgstr "Lista negra"
 msgid "blue"
 msgstr ""
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9008,6 +9277,9 @@ msgstr "Limpar lista"
 msgid "complex"
 msgstr "complexo"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "Menu de configuração"
@@ -9039,6 +9311,12 @@ msgstr ""
 msgid "create directory"
 msgstr ""
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9051,6 +9329,9 @@ msgstr "diário"
 msgid "day"
 msgstr ""
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "eliminar"
@@ -9110,6 +9391,9 @@ msgstr "não gravar"
 msgid "done!"
 msgstr "concluido!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "editar alternativas"
@@ -9390,6 +9674,9 @@ msgstr "minutos"
 msgid "minutes"
 msgstr "minutos"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr ""
@@ -9588,9 +9875,6 @@ msgstr ""
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr ""
@@ -9927,6 +10211,10 @@ msgstr ""
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr ""
@@ -9997,6 +10285,9 @@ msgstr "Semanal"
 msgid "whitelist"
 msgstr "Lista Branca"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr ""
@@ -10146,6 +10437,22 @@ msgstr "zapped"
 #~ msgstr "Escolha a fonte"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Codigo alto"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Codigo baixo"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Coderate HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Coderate LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Cartão Compact Flash"
 
@@ -10252,10 +10559,22 @@ msgstr "zapped"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Velocidade do avance rapido"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Velocidade do retrocesso rapido"
+
+#
 #~ msgid "Filesystem Check..."
 #~ msgstr "Verificação do sistema de ficheiros"
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Numero de frames repetidas, a usar com a função Vento Forte."
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Endereço de IP do Fritz-Box FON"
 
@@ -10268,10 +10587,26 @@ msgstr "zapped"
 #~ msgstr "Jogos / Plugins"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Intervalo"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Manter  modo intervalo"
+
+#
 #~ msgid "Hello!"
 #~ msgstr "Olá!!"
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Informação hierarquica"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Modo Hierárquico"
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Se consegue ler isto, carregue OK."
 
@@ -10324,6 +10659,10 @@ msgstr "zapped"
 #~ msgstr "Actualiização Online"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Posição Orbital"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Outros.."
 
@@ -10340,6 +10679,10 @@ msgstr "zapped"
 #~ msgstr "Escreva palavra a filtrar"
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polaridade"
+
+#
 #~ msgid "RSS Feed URI"
 #~ msgstr "RSS Feed URI"
 
@@ -10390,6 +10733,10 @@ msgstr "zapped"
 #~ msgstr "O restauro está concluído. Por favor carregue em OK para activar."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
+#
 #~ msgid "Save current project to disk"
 #~ msgstr "Gravar para o Disco rigido"
 
@@ -10440,6 +10787,14 @@ msgstr "zapped"
 #~ msgstr "Estereo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbol Rate"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolrate"
+
+#
 #~ msgid "The pin code has been changed successfully."
 #~ msgstr "A alterção do PIN coom sucesso."
 
@@ -10452,6 +10807,14 @@ msgstr "zapped"
 #~ msgstr "Não suportado de momento."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Modo de Transmissão"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Tipo deTransponder"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -10474,6 +10837,10 @@ msgstr "zapped"
 #~ msgstr "Actualização terminada.Deseja reiniciar?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Usar a função Vento Forte nas velocidades acima"
+
+#
 #~ msgid "VCR Switch"
 #~ msgstr "Mudar para VCR"
 
index d748c01..4d776f3 100755 (executable)
--- a/po/ru.po
+++ b/po/ru.po
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2010-05-18 18:10+0200\n"
 "Last-Translator: peter <peter@dreambox.org.ua>\n"
 "Language-Team: Russian / enigma(c) Ukraine, Kiev>\n"
@@ -184,6 +184,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -220,6 +226,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -362,10 +372,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -386,6 +396,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Использование демо-плагина для TPM"
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -409,6 +422,9 @@ msgstr "Графический телегид для всех сервисов 
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -853,6 +869,9 @@ msgstr "Спросить пользователя"
 msgid "Aspect Ratio"
 msgstr "Сотношение сторон"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -867,6 +886,9 @@ msgstr "Аудио"
 msgid "Audio Options..."
 msgstr "Аудио опции..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -933,6 +955,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Автоматически"
@@ -967,6 +998,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1009,6 +1058,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Назад"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Фон"
@@ -1103,6 +1158,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Яркость"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1133,6 +1193,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Шина:"
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1399,21 +1470,11 @@ msgstr ""
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Скорость кодирования высокая "
-
-#
-msgid "Code rate low"
-msgstr "Скорость кодирования низкая"
-
-#
-msgid "Coderate HP"
-msgstr "Скорость кодирования HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Скорость кодирования LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1597,6 +1658,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Запись невозможна - конфликт таймеров %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr ""
@@ -1776,6 +1841,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1861,10 +1929,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Задержка"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Удалить"
@@ -2052,6 +2129,12 @@ msgstr ""
 "Вы действительно хотите проверить файловую систему?\n"
 "Это займет некоторое время!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2247,6 +2330,12 @@ msgstr "Dreambox формат данных DVD (HDTV-совместимый"
 msgid "Dreambox software because updates are available."
 msgstr ""
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2388,10 +2477,25 @@ msgstr "Включить"
 msgid "Enable /media"
 msgstr ""
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Включить 5V для антенны"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2512,18 +2616,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Скорость перемотки вперед"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Скорость перемотки назад"
-
-#
 msgid "Enter main menu..."
 msgstr "Войти в главное меню..."
 
@@ -2596,6 +2692,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Просмотр событий"
@@ -2795,6 +2894,11 @@ msgstr "Перезагрузка сети завершена"
 msgid "Finnish"
 msgstr "Финский"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2814,16 +2918,18 @@ msgstr ""
 msgid "Format"
 msgstr "Формат"
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Расчет повтора кадров для покадрового воспроизведения"
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
+msgstr ""
 
 #
 msgid "Frame size in full view"
@@ -2868,6 +2974,9 @@ msgstr "Фризский"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2922,6 +3031,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Жанр"
@@ -3000,23 +3112,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Интервал защиты"
-
-#
-msgid "Guard interval mode"
-msgstr "Guard interval mode"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3045,6 +3158,9 @@ msgstr "Отключение HDD через"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "Скрытый SSID сети"
@@ -3053,13 +3169,8 @@ msgstr "Скрытый SSID сети"
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Иерархия информации"
-
-#
-msgid "Hierarchy mode"
-msgstr "Режим иерархии"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3130,11 +3241,10 @@ msgstr "ISO путь"
 msgid "Icelandic"
 msgstr "Исландский"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3237,6 +3347,12 @@ msgstr "Информация"
 msgid "Init"
 msgstr "Инициализация"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3338,6 +3454,9 @@ msgstr "Внутренняя флешь"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3535,6 +3654,11 @@ msgstr "Выбор языка"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Последняя скорость"
@@ -3592,6 +3716,9 @@ msgstr "Ссылка:"
 msgid "Linked titles with a DVD menu"
 msgstr "Заголовки связанные с DVD меню"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Список устройств хранения"
@@ -3728,6 +3855,9 @@ msgstr "Менеджер ПО ресивера"
 msgid "Manual Scan"
 msgstr "Ручной поиск"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Транспондер вручную"
@@ -4015,6 +4145,9 @@ msgstr "Меню списка видео"
 msgid "Multi EPG"
 msgstr "Граф. EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr ""
@@ -4023,6 +4156,9 @@ msgstr ""
 msgid "Multiple service support"
 msgstr "Поддержка мультисервисов"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Несколько спутников"
@@ -4092,6 +4228,9 @@ msgstr "NFI имидж удачно установлен. Нажмите ЖЕЛ
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "СЕЙЧАС"
@@ -4121,6 +4260,9 @@ msgstr "Настройка DNS"
 msgid "Nameserver settings"
 msgstr "Настройка DNS"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4276,6 +4418,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr "Мастер настройки сети"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4446,6 +4591,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4540,6 +4688,12 @@ msgstr "Север"
 msgid "Norwegian"
 msgstr "Норвежский"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4553,6 +4707,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4596,6 +4753,9 @@ msgstr ""
 msgid "OK, remove some extensions"
 msgstr ""
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "OSD установки"
@@ -4665,9 +4825,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr ""
 
-#
-msgid "Orbital Position"
-msgstr "Орбитальная позиция"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4690,10 +4849,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "ПИДы"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Обновление списка пакетов"
@@ -5149,10 +5314,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Поляризация"
-
-#
 msgid "Polarization"
 msgstr "Поляризация"
 
@@ -5188,6 +5349,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Португальский"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Позиционер"
@@ -5403,6 +5567,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Радио"
@@ -5513,6 +5680,9 @@ msgstr ""
 msgid "Recordings always have priority"
 msgstr "Записи всегда имеют приоритет"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5734,6 +5904,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Возобновить с последней позиции"
@@ -5774,9 +5947,8 @@ msgstr "Скорость перемотки назад"
 msgid "Right"
 msgstr "Правый"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5786,6 +5958,9 @@ msgstr "Скорость вращения мотора"
 msgid "Running"
 msgstr "Запущено"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5798,6 +5973,21 @@ msgstr "Русский"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5814,6 +6004,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Сб"
@@ -6274,6 +6477,9 @@ msgstr ""
 "Сервис не найден!\n"
 "(SID не найден в PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Поиск сервисов"
@@ -6408,6 +6614,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Показать инфопанель при смене каналов"
@@ -6420,6 +6629,9 @@ msgstr "Показывать инфопанель при смене информ
 msgid "Show infobar on skip forward/backward"
 msgstr "Показать инфопанель при навигации"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Показать движение позиционера"
@@ -6692,6 +6904,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr ""
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Начать с самого начала"
@@ -6815,6 +7030,9 @@ msgstr "Вс"
 msgid "Sunday"
 msgstr "Воскресение"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Поменять местами"
@@ -6839,13 +7057,8 @@ msgstr "Переключиться на предыдущий подсервис"
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Символьная скорость"
-
-#
-msgid "Symbolrate"
-msgstr "Символьная скорость"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6860,10 +7073,19 @@ msgstr "TRANSLATOR_INFO"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS файл слишком большой для ISO9660 level 1!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV система"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Содержание коллекции"
@@ -6896,6 +7118,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Наземный"
@@ -7573,10 +7798,6 @@ msgid "Translation:"
 msgstr "Перевод:"
 
 #
-msgid "Transmission Mode"
-msgstr "Режим передачи"
-
-#
 msgid "Transmission mode"
 msgstr "Режим передачи"
 
@@ -7585,10 +7806,6 @@ msgid "Transponder"
 msgstr "Транспондер"
 
 #
-msgid "Transponder Type"
-msgstr "Тип транспондера"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7720,6 +7937,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7748,6 +7968,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "универсальный-LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7862,10 +8085,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Использовать прерывистую перемотку на скоростях выше"
-
-#
 msgid "Use power measurement"
 msgstr "Используйте измерение мощности"
 
@@ -7948,13 +8167,22 @@ msgstr "VMGM (трейлер)"
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr "Вартикальная"
@@ -7971,6 +8199,9 @@ msgstr "Мастер точной настройки видео"
 msgid "Video Output"
 msgstr "Видеовыход"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Настройка видео"
@@ -8216,6 +8447,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr ""
@@ -8366,6 +8600,11 @@ msgstr "Что Вы хотите найти?"
 msgid "What to do with submitted crashlogs?"
 msgstr ""
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8407,6 +8646,15 @@ msgstr "Беспроводная сеть"
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8628,6 +8876,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Вы не можете удалит это."
@@ -8820,6 +9074,9 @@ msgstr ""
 msgid "Your network configuration has been activated."
 msgstr "Ваши сетевые настройки активированы."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -9041,6 +9298,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9059,6 +9322,9 @@ msgstr "звуковая дорожки"
 msgid "auto"
 msgstr "авто"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr ""
@@ -9091,6 +9357,9 @@ msgstr "черный список"
 msgid "blue"
 msgstr "синий"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9132,6 +9401,9 @@ msgstr "очистить список воспроизведения"
 msgid "complex"
 msgstr "комплекс"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "меню конфигурации"
@@ -9163,6 +9435,12 @@ msgstr ""
 msgid "create directory"
 msgstr "создать каталог"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9175,6 +9453,9 @@ msgstr "ежедневно"
 msgid "day"
 msgstr "день"
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "Удалить"
@@ -9234,6 +9515,9 @@ msgstr "не записывать"
 msgid "done!"
 msgstr "выполнено!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "изменить alternatives"
@@ -9514,6 +9798,9 @@ msgstr "минута"
 msgid "minutes"
 msgstr "минут"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "месяц"
@@ -9712,9 +9999,6 @@ msgstr "красный"
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr "удалить данные DNS"
@@ -10051,6 +10335,10 @@ msgstr "время переключения, разделы, аудио, инф
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr "недоступен"
@@ -10121,6 +10409,9 @@ msgstr "Еженедельно"
 msgid "whitelist"
 msgstr "белый список"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "работающий"
@@ -10267,6 +10558,22 @@ msgstr "переключено"
 #~ msgstr "Выберите иточник"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Скорость кодирования высокая "
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Скорость кодирования низкая"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Скорость кодирования HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Скорость кодирования LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact Flash карта"
 
@@ -10367,6 +10674,14 @@ msgstr "переключено"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Скорость перемотки вперед"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Скорость перемотки назад"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Введите имя беспроводной сети/SSID:"
 
@@ -10384,6 +10699,10 @@ msgstr "переключено"
 #~ msgstr "Сначала нужно скачать загрузочную среду для USB flasher."
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Расчет повтора кадров для покадрового воспроизведения"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP адрес"
 
@@ -10396,6 +10715,22 @@ msgstr "переключено"
 #~ msgstr "Игры / Плагины"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Интервал защиты"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Guard interval mode"
+
+#
+#~ msgid "Hierarchy Information"
+#~ msgstr "Иерархия информации"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Режим иерархии"
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Если вы видите эту страницу нажмите ОК."
 
@@ -10464,6 +10799,10 @@ msgstr "переключено"
 #~ msgstr "Online-обновление"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Орбитальная позиция"
+
+#
 #~ msgid "Output"
 #~ msgstr "Действие"
 
@@ -10496,6 +10835,10 @@ msgstr "переключено"
 #~ msgstr "Пожалуйста, выберите целевой каталог или носитель"
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Поляризация"
+
+#
 #~ msgid "RSS Feed URI"
 #~ msgstr "RSS Feed URI"
 
@@ -10535,6 +10878,10 @@ msgstr "переключено"
 #~ "Восстановление установок завершено. Пожалуйста, нажмите OK для активации."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
+#
 #~ msgid ""
 #~ "Scan your network for wireless Access Points and connect to them using "
 #~ "your WLAN USB Stick\n"
@@ -10617,6 +10964,14 @@ msgstr "переключено"
 #~ msgstr "Стерео"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Символьная скорость"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Символьная скорость"
+
+#
 #~ msgid ""
 #~ "The USB stick is now bootable. Do you want to download the latest image "
 #~ "from the feed server and save it on the stick?"
@@ -10699,6 +11054,14 @@ msgstr "переключено"
 #~ "3) Дождитесь загрузки и следуйте инструкциям мастера."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Режим передачи"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Тип транспондера"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -10721,6 +11084,10 @@ msgstr "переключено"
 #~ msgstr "Обновление завершено. Вы хотите перезагрузить Dreambox?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Использовать прерывистую перемотку на скоростях выше"
+
+#
 #~ msgid "VCR Switch"
 #~ msgstr "VCR переключатель"
 
index 12fb3ae..2844a42 100755 (executable)
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2010-05-12 13:09+0200\n"
 "Last-Translator: acid-burn <>\n"
 "Language-Team: none\n"
@@ -186,6 +186,14 @@ msgid "%H:%M"
 msgstr "%H:%M"
 
 #, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+"%d konflikt(y) nájdený(é) pri pokuse pridať nové časovače:\n"
+"%s"
+
+#, python-format
 msgid "%d jobs are running in the background!"
 msgstr "%d úloh beží na pozadí!"
 
@@ -216,6 +224,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr "%s: %s na %s"
+
 msgid "(ZAP)"
 msgstr "(Prepnúť)"
 
@@ -333,12 +345,12 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr "Vzhľad BackToTheRoots, ale s rýchlosťou Warp-8"
+
 msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr "Vzhľad Späť ku koreňom ... alebo zlaté staré časy."
 
-msgid "A BackToTheRoots-Skin ... or good old times."
-msgstr "Vzhľad Späť ku koreňom ... alebo zlaté staré časy"
-
 msgid "A basic ftp client"
 msgstr "Základný klient FTP"
 
@@ -356,6 +368,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Ukážkový modul pre TPM."
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 msgid ""
 "A finished record timer wants to set your\n"
 "Dreambox to standby. Do that now?"
@@ -376,6 +391,9 @@ msgstr "Grafické EPG pre všetky stanice určitého buketu"
 msgid "A graphical EPG interface"
 msgstr "Grafické rozhranie EPG"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr "Grafický EPG a správca nástrojov EPG"
+
 msgid "A graphical EPG interface."
 msgstr "Grafické rozhranie EPG"
 
@@ -758,6 +776,9 @@ msgstr "opýtať sa"
 msgid "Aspect Ratio"
 msgstr "Pomer strán"
 
+msgid "Aspect ratio"
+msgstr "Pomer strán"
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Priradenie poskytovateľov. staníc alebo CAID modulu CI"
 
@@ -770,6 +791,9 @@ msgstr "Zvuk"
 msgid "Audio Options..."
 msgstr "Voľby zvuku ..."
 
+msgid "Audio PID"
+msgstr "Zvukový PID"
+
 msgid "Audio Sync"
 msgstr ""
 
@@ -826,6 +850,15 @@ msgstr ""
 "AutoTimer prehľadá EPG a vytvorí časovače podľa užívateľom určených kritérií "
 "vyhľadávania."
 
+msgid "AutoTimer was added successfully"
+msgstr "Autočasovač bol pridaný"
+
+msgid "AutoTimer was changed successfully"
+msgstr "Autočasovač bol zmenený"
+
+msgid "AutoTimer was removed"
+msgstr "Autočasovač bol zrušený"
+
 msgid "Automatic"
 msgstr "Automaticky"
 
@@ -859,6 +892,26 @@ msgstr "Automatická obnova EPG"
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr "Auitomatické posielanie správ o zrútení do Dream Multimedia"
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+"Testovací režim modulu Autoresolution:\n"
+"Je %s OK?"
+
+msgid "Autoresolution Switch"
+msgstr "Prepínač Autoresolution"
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Autoresolution nepracuje v režime Scart, DVI, PC"
+
+msgid "Autoresolution settings"
+msgstr "Nastavenia Autoresolution"
+
+msgid "Autoresolution videomode setup"
+msgstr "Nastavenie obrazového režimu Autoresolution"
+
 msgid "Autos & Vehicles"
 msgstr "Autá a doprava"
 
@@ -892,6 +945,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Späť"
 
+msgid "Back, lower USB Slot"
+msgstr "Vzadu, dolný slot USB"
+
+msgid "Back, upper USB Slot"
+msgstr "Vzadu, horný slot USB"
+
 msgid "Background"
 msgstr "Pozadie"
 
@@ -964,6 +1023,13 @@ msgstr "Brazília"
 msgid "Brightness"
 msgstr "Jas"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+"Prehliadať teletext ORF a SAT1 nezávisle od kanála. Vyžaduje to pripojenie I-"
+"net."
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -989,6 +1055,21 @@ msgid "Bus: "
 msgstr "Zbernica:"
 
 msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+"Po zapnutí tejto funkcie sa programy nenájdu, ak nie sú v určitých dátumoch."
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+"Po zapnutí tejto funkcie budete pri automatickom dopytovaní dostávať "
+"informácie o konfliktoch časovača. Nevyužíva sa tu žiadna logika, takže cás "
+"môže ten istý konflikt vyrušovať stále znova."
+
+msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
 "displayed."
 msgstr "Po stlačení tlačidla OK na diaľkovom ovládači sa zobrazia informácie."
@@ -1198,17 +1279,11 @@ msgstr "Zatvoriť a uložiť zmeny"
 msgid "Close title selection"
 msgstr "Zatvoriť výber titulkov"
 
-msgid "Code rate high"
-msgstr "Vysoká kódová rýchlosť"
-
-msgid "Code rate low"
-msgstr "Nízka kódová rýchlosť"
-
-msgid "Coderate HP"
-msgstr "Rýchlosť HP"
+msgid "Code rate HP"
+msgstr ""
 
-msgid "Coderate LP"
-msgstr "Rýchlosť LP"
+msgid "Code rate LP"
+msgstr ""
 
 msgid "Collection name"
 msgstr "Názov zostavy"
@@ -1355,6 +1430,10 @@ msgstr "Nedá sa otvoriť obraz v obraze"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Nedalo sa nahrávať - prekrýva sa časovanie %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr "Nedalo sa nahrať pre neplatnú stanicu %s"
+
 msgid "Crashlog settings"
 msgstr "Nastavenia správ o zrútení"
 
@@ -1510,6 +1589,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr "DVD jednotka"
+
 msgid "DVD File Browser"
 msgstr "Prehliadač súborov DVD"
 
@@ -1580,9 +1662,18 @@ msgstr "Určiť úvodnú stanicu"
 msgid "Define a startup service for your Dreambox."
 msgstr "Určte úvodnú (počiatočnú) stanicu na Dreamboxe."
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr "Odstraňovač prekladania pre prekladaný signál"
+
+msgid "Deinterlacer mode for progressive content"
+msgstr "Odstraňovač prekladania pre progresívny signál"
+
 msgid "Delay"
 msgstr "Oneskorenie"
 
+msgid "Delay x seconds after service started"
+msgstr "Oneskorenie x sekúnd po spustení stanice"
+
 msgid "Delete"
 msgstr "Vymazať"
 
@@ -1731,6 +1822,14 @@ msgstr ""
 "Môže to trvať dosť dlho!"
 
 #, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+"Naozaj chcete zmazať %s\n"
+"%s?"
+
+#, python-format
 msgid "Do you really want to delete %s?"
 msgstr "Naozaj chcete zmazať %s?"
 
@@ -1888,6 +1987,12 @@ msgstr "Dátové DVD vo formáte Dreambox (vyhovuje HDTV)"
 msgid "Dreambox software because updates are available."
 msgstr "Softvér Dreamboxa, lebo sú k dispozícii aktualizácie."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 msgid "Duration: "
 msgstr "Trvanie:"
 
@@ -2002,9 +2107,24 @@ msgstr "Zapnúť"
 msgid "Enable /media"
 msgstr "Aktivovať /médium"
 
+msgid "Enable 1080p24 Mode"
+msgstr "Zapnúť režim 1080p24"
+
+msgid "Enable 1080p25 Mode"
+msgstr "Zapnúť režim 1080p25"
+
+msgid "Enable 1080p30 Mode"
+msgstr "Zapnúť režim 1080p30"
+
 msgid "Enable 5V for active antenna"
 msgstr "Zapnúť 5 V pre aktívnu anténu"
 
+msgid "Enable 720p24 Mode"
+msgstr "Zapnúť režim 720p24"
+
+msgid "Enable Autoresolution"
+msgstr "Zapnúť Autoresolution"
+
 msgid "Enable Cleanup Wizard?"
 msgstr "Zapnúť sprievodcu vyčistením?"
 
@@ -2110,15 +2230,9 @@ msgstr ""
 "\n"
 "© 2006 - Stephan Reichholf"
 
-msgid "Enter Fast Forward at speed"
-msgstr "Počiatočná rýchlosť prevíjania vpred"
-
 msgid "Enter IP to scan..."
 msgstr "Zadajte IP na prehľadávanie..."
 
-msgid "Enter Rewind at speed"
-msgstr "Počiatočná rýchlosť prevíjania vzad"
-
 msgid "Enter main menu..."
 msgstr "Otvoriť hlavné menu..."
 
@@ -2176,6 +2290,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estónčina"
 
+msgid "Ethernet network interface"
+msgstr "Rozhranie siete Eternet"
+
 msgid "Eventview"
 msgstr "Prehľad programov"
 
@@ -2336,6 +2453,13 @@ msgstr "Reštartovanie siete je skončené"
 msgid "Finnish"
 msgstr "Fínčina"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+"Prvý deň pre nájdenie programov. Nenájde sa žiadny program, ktorý začína "
+"pred týmto dátumom."
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr "Najprv vytvorte štýl vzhľadu ovládacím modulom Ai.HD."
 
@@ -2354,14 +2478,19 @@ msgstr "Formát"
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+"Nájdených celkom %d programov.\n"
+"%d nastavení časovača pridaných a %d zmenených, zistených %d konfliktov."
+
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
 "%d Timer were added and %d modified."
 msgstr ""
 "Nájdených celkom %d programov.\n"
 "%d nastavení časovača pridaných a %d zmenených."
 
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Počet opakovaní obrázka počas skokového prevíjania"
-
 msgid "Frame size in full view"
 msgstr "Veľkosť obrazu pri plnom zobrazení"
 
@@ -2395,8 +2524,11 @@ msgstr "Frízština"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr "FritzCall zobrazuje volania prichádzajúce do Fritz!Boxa na Dreamboxe."
 
+msgid "Front USB Slot"
+msgstr "Predný slot USB"
+
 msgid "Frontend for /tmp/mmi.socket"
-msgstr ""
+msgstr "Frontend pre /tmp/mmi.socket"
 
 #, python-format
 msgid "Frontprocessor version: %d"
@@ -2440,6 +2572,9 @@ msgstr "Oneskorenie PCM"
 msgid "General PCM delay (ms)"
 msgstr "Oneskorenie PCM [ms]"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 msgid "Genre"
 msgstr "Žáner"
 
@@ -2508,23 +2643,23 @@ msgid "Green boost"
 msgstr "Zosilniť zelenú"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
-"Growlee umožňuje posielať z Dreamboxa krátke správy pomocou protokolu "
-"growl,\n"
-"napríklad oznam „Začalo nahrávanie“ do počítača, na ktorom beží klient growl."
-
-msgid "Guard Interval"
-msgstr "Ochranný interval"
 
-msgid "Guard interval mode"
-msgstr "Režim ochranného intervalu"
+msgid "Guard interval"
+msgstr ""
 
 msgid "Guess existing timer based on begin/end"
 msgstr "Určiť existujúci časovač podľa začiatku a konca."
 
+msgid "HD Interlace Mode"
+msgstr "Prekladaný režim HD"
+
+msgid "HD Progressive Mode"
+msgstr "Progresívny režim HD"
+
 msgid "HD videos"
 msgstr "Videá HD"
 
@@ -2546,17 +2681,17 @@ msgstr "Uspať disk po"
 msgid "Help"
 msgstr "Pomocník"
 
+msgid "Hidden network"
+msgstr ""
+
 msgid "Hidden network SSID"
 msgstr "Skrytý sieťový SSID"
 
 msgid "Hidden networkname"
 msgstr "Skrytý názov siete"
 
-msgid "Hierarchy Information"
-msgstr "Hierarchické informácie"
-
-msgid "Hierarchy mode"
-msgstr "Hierarchický režim"
+msgid "Hierarchy info"
+msgstr ""
 
 msgid "High bitrate support"
 msgstr "Spracuje vysoký dátový tok"
@@ -2615,10 +2750,10 @@ msgstr "Islandčina"
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
-"Ak je toto zapnuté, existujúci časovač sa bude považovať za nahrávajúci, ak "
-"z programu nahrá aspoň 80 %."
+"Ak je zapnutá táto funkcia, existujúci časovač sa bude považovať za "
+"nahrávajúci, ak zaznamená aspoň 80% % programu."
 
 msgid ""
 "If you see this, something is wrong with\n"
@@ -2702,6 +2837,12 @@ msgstr "Informácie"
 msgid "Init"
 msgstr "Inic."
 
+msgid "Initial Fast Forward speed"
+msgstr "Počiatočná rýchlosť prevíjania vpred"
+
+msgid "Initial Rewind speed"
+msgstr "Počiatočná rýchlosť prevíjania vzad"
+
 msgid "Initial location in new timers"
 msgstr "Úvodné umiestnenie nových časových nahrávok"
 
@@ -2780,6 +2921,9 @@ msgstr "Interná pamäť flash"
 msgid "Internal LAN adapter."
 msgstr "Adaptér internej LAN"
 
+msgid "Internal USB Slot"
+msgstr "Interný slot USB"
+
 msgid "Internal firmware updater"
 msgstr "Interný aktualizátor firmvéru"
 
@@ -2949,6 +3093,13 @@ msgstr "Voľba jazyka"
 msgid "Last config"
 msgstr "Posledné nastavenie"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+"Posledný deň pre nájdenie programov. Aby sa programy našli, musia začínať "
+"pred týmto dátumom."
+
 msgid "Last speed"
 msgstr "Posledná rýchlosť"
 
@@ -2992,6 +3143,9 @@ msgstr "Spojenie:"
 msgid "Linked titles with a DVD menu"
 msgstr "Tituly prepojené s menu DVD"
 
+msgid "List available networks"
+msgstr ""
+
 msgid "List of Storage Devices"
 msgstr "Zoznam záznamových zariadení"
 
@@ -3102,6 +3256,9 @@ msgstr "Spravovať softvér ptijímača"
 msgid "Manual Scan"
 msgstr "Ručné vyhľadávanie"
 
+msgid "Manual configuration"
+msgstr "Ručná konfigurácia"
+
 msgid "Manual transponder"
 msgstr "Transpondér ručne"
 
@@ -3339,12 +3496,18 @@ msgstr "Menu filmov"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 msgid "Multimedia"
 msgstr "Multimédiá"
 
 msgid "Multiple service support"
 msgstr "Dekóduje viac staníc"
 
+msgid "Multiplex"
+msgstr ""
+
 msgid "Multisat"
 msgstr "viac satelitov"
 
@@ -3400,6 +3563,9 @@ msgstr "Flešovanie image .NFI skončené. Stlačením žltého tlačidla rešta
 msgid "NFS share"
 msgstr "Zdieľanie NFS"
 
+msgid "NIM"
+msgstr "Tuner"
+
 msgid "NOW"
 msgstr "TERAZ"
 
@@ -3422,6 +3588,9 @@ msgstr "Nastavenie DNS"
 msgid "Nameserver settings"
 msgstr "Nastavenie DNS"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr "Vzhľad Nemesis BlackBox"
 
@@ -3563,6 +3732,9 @@ msgstr "Prehľadávač siete"
 msgid "NetworkWizard"
 msgstr "Sprievodca nast. siete"
 
+msgid "Networkname (SSID)"
+msgstr "Názov siete (SSID)"
+
 msgid "Never"
 msgstr "Nikdy"
 
@@ -3697,6 +3869,9 @@ msgstr "Žiadne videá na zobrazenie"
 msgid "No wireless networks found! Please refresh."
 msgstr "Nenájdená bezdrôtová sieť. Obnovte."
 
+msgid "No wireless networks found! Searching..."
+msgstr "Nenájdená bezdrôtová sieť. Hľadám ..."
+
 msgid ""
 "No working local network adapter found.\n"
 "Please verify that you have attached a network cable and your network is "
@@ -3773,6 +3948,12 @@ msgstr "severne"
 msgid "Norwegian"
 msgstr "Nórčina"
 
+msgid "Not after"
+msgstr "Nie po"
+
+msgid "Not before"
+msgstr "Nie pred"
+
 #, python-format
 msgid ""
 "Not enough diskspace. Please free up some diskspace and try again. (%d MB "
@@ -3784,6 +3965,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Nenačítavam feedy"
 
+msgid "Not-Associated"
+msgstr ""
+
 msgid ""
 "Nothing to scan!\n"
 "Please setup your tuner settings before you start a service scan."
@@ -3817,6 +4001,9 @@ msgstr "OK, odstrániť iné rozšírenia"
 msgid "OK, remove some extensions"
 msgstr "OK, odstrániť niektoré rozšírenia"
 
+msgid "ONID"
+msgstr ""
+
 msgid "OSD Settings"
 msgstr "Nastavenia OSD"
 
@@ -3869,7 +4056,7 @@ msgstr "Otvoriť menu modulu"
 msgid "Optionally enter your name if you want to."
 msgstr "Prípadne zadajte svoje meno, ak chcete."
 
-msgid "Orbital Position"
+msgid "Orbital position"
 msgstr "Orbitálna pozícia"
 
 msgid "Outer Bound (+/-)"
@@ -3890,9 +4077,15 @@ msgstr "Prepísať konfiguračné súbory pri aktualizácii softvéru? "
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 msgid "PIDs"
 msgstr "PIDy"
 
+msgid "PMT PID"
+msgstr ""
+
 msgid "Package list update"
 msgstr "Aktualizovať zoznam balíčkov"
 
@@ -3947,7 +4140,7 @@ msgid "PermanentClock shows the clock permanently on the screen."
 msgstr "Stále hodiny zobrazujú čas na obrazovke trvalo."
 
 msgid "Persian"
-msgstr ""
+msgstr "Perzština"
 
 msgid "Pets & Animals"
 msgstr "Deti a zvieratá"
@@ -4254,9 +4447,6 @@ msgstr "PodCast streamuje podcasty do Dreeamboxa."
 msgid "Poland"
 msgstr "Poľsko"
 
-msgid "Polarity"
-msgstr "Polarita"
-
 msgid "Polarization"
 msgstr "Polarizácia"
 
@@ -4284,6 +4474,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portugalčina"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr "Umiestnenie skončených časovačov v zozname časovačov"
+
 msgid "Positioner"
 msgstr "motor"
 
@@ -4434,7 +4627,7 @@ msgid "Python frontend for /tmp/mmi.socket"
 msgstr "Python frontend pre /tmp/mmi.socket"
 
 msgid "Python frontend for /tmp/mmi.socket."
-msgstr ""
+msgstr "Frontend Python pre /tmp/mmi.socket."
 
 msgid "Quick"
 msgstr "Rýchlo"
@@ -4454,6 +4647,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr "Prezerač RSS"
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 msgid "Radio"
 msgstr "Rádio"
 
@@ -4539,6 +4735,9 @@ msgstr "Nahrávky"
 msgid "Recordings always have priority"
 msgstr "Nahrávanie má vždy prednosť"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr "Presmerovať oznamy na Growl, Snarl, Prowl alebo Syslog"
+
 msgid "Reenter new PIN"
 msgstr "Znova zadajte nový PIN."
 
@@ -4711,6 +4910,9 @@ msgstr "Obnoviť Dreamboxa z kľúča USB"
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr "Obmedziť \"po udalosti\" na určité časové obdobie?"
 
+msgid "Restrict to events on certain dates"
+msgstr "Obmedziť na programy v určitých dátumoch"
+
 msgid "Resume from last position"
 msgstr "Pokračovať od poslednej pozície"
 
@@ -4743,7 +4945,7 @@ msgstr "Rýchlosti prevíjania vzad"
 msgid "Right"
 msgstr "Doprava"
 
-msgid "Rolloff"
+msgid "Roll-off"
 msgstr ""
 
 msgid "Rotor turning speed"
@@ -4752,6 +4954,9 @@ msgstr "Rýchlosť otáčania motora"
 msgid "Running"
 msgstr "Aktivované"
 
+msgid "Running in testmode"
+msgstr "Je v testovacom režime"
+
 msgid "Russia"
 msgstr "Rusko"
 
@@ -4761,6 +4966,21 @@ msgstr "Ruština"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr "SD 25/50 Hz, prekladaný režim"
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr "SD 25/50 Hz, progresívny režim"
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr "SD 30/60 Hz, prekladaný režim"
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr "SD 30/60 Hz, progresívny režim"
+
+msgid "SID"
+msgstr ""
+
 msgid "SINGLE LAYER DVD"
 msgstr "JEDNOVRSTVOVÉ DVD"
 
@@ -4773,6 +4993,26 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+"SVDRP je protokol vyvinutý pre softvér VDR na diaľkové ovládanie set-top "
+"boxov.\n"
+"Tento modul podporuje len podmnožinu SVDRP a spúšťa sa automaticky s "
+"predvolenými nastaveniami.\n"
+"\n"
+"Možno tento modul nepotrebujete a mali by ste radšej použiť bežné webové "
+"rozhranie pre Enigmu2."
+
+msgid "SVDRP server for Enigma2"
+msgstr "Server SVDRP pre Enigmu2"
+
 msgid "Sat"
 msgstr "So"
 
@@ -5135,6 +5375,9 @@ msgstr ""
 "Stanica nebola nájdená!\n"
 "(SID nenájdený v PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 msgid "Service scan"
 msgstr "Vyhľadávanie staníc"
 
@@ -5244,6 +5487,9 @@ msgstr "Vo výbere staníc zobraziť priebeh programu"
 msgid "Show in extension menu"
 msgstr "Zobraziť v menu rozšírenia"
 
+msgid "Show info screen"
+msgstr "Zobraziť informácie"
+
 msgid "Show infobar on channel change"
 msgstr "Zobraziť informácie pri zmene stanice"
 
@@ -5253,6 +5499,9 @@ msgstr "Zobraziť informácie pri zmene programu"
 msgid "Show infobar on skip forward/backward"
 msgstr "Zobraziť informácie pri skoku vpred, vzad"
 
+msgid "Show notification on conflicts"
+msgstr "Zobraziť oznamy o konfliktoch"
+
 msgid "Show positioner movement"
 msgstr "Zobraziť otáčanie motora"
 
@@ -5473,6 +5722,9 @@ msgstr "Pohotovosť, napätie ventilátora %d"
 msgid "Start Webinterface"
 msgstr "Spustiť webové rozhranie"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr "Jednoduché spúšťanie multimediálnych modulov tlačidlom PVR."
+
 msgid "Start from the beginning"
 msgstr "Spustiť od začiatku"
 
@@ -5568,6 +5820,9 @@ msgstr "Ne"
 msgid "Sunday"
 msgstr "Nedeľa"
 
+msgid "Support \"Fast Scan\"?"
+msgstr "Podpora \\„Fast Scan\\“ "
+
 msgid "Swap Services"
 msgstr "Vymeniť stanice"
 
@@ -5586,12 +5841,9 @@ msgstr "Prepnúť na predchádzajúci podkanál"
 msgid "Switchable tuner types:"
 msgstr "Prepínateľné typy tunerov:"
 
-msgid "Symbol Rate"
+msgid "Symbol rate"
 msgstr "Symbolová rýchlosť"
 
-msgid "Symbolrate"
-msgstr "Symb. rých."
-
 msgid "System"
 msgstr "Systém"
 
@@ -5602,9 +5854,18 @@ msgstr "PREKLADATEĽ"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "Súbor TS je príliš veľký pre úroveň 1 ISO9660!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 msgid "TV System"
 msgstr "TV norma"
 
+msgid "TXT PID"
+msgstr ""
+
 msgid "Table of content for collection"
 msgstr "Obsah zostavy"
 
@@ -5629,6 +5890,9 @@ msgstr "Taiwan"
 msgid "Temperature and Fan control"
 msgstr "Teplota a ventilátor"
 
+msgid "Temperature-dependent fan control."
+msgstr "Ovládanie ventilátora podľa teploty"
+
 msgid "Terrestrial"
 msgstr "Pozemné"
 
@@ -6260,18 +6524,12 @@ msgstr "Preklad"
 msgid "Translation:"
 msgstr "Preklad:"
 
-msgid "Transmission Mode"
-msgstr "Režim prenosu"
-
 msgid "Transmission mode"
 msgstr "Režim prenosu"
 
 msgid "Transponder"
 msgstr "Transpondér"
 
-msgid "Transponder Type"
-msgstr "Typ transpondéra"
-
 msgid "Travel & Events"
 msgstr "Cestovanie a udalosti"
 
@@ -6370,6 +6628,9 @@ msgstr "Späť inštalácia"
 msgid "Undo uninstall"
 msgstr "Späť odinštalácia"
 
+msgid "Unencrypted"
+msgstr "Nešifrované"
+
 msgid "UnhandledKey"
 msgstr ""
 
@@ -6391,6 +6652,9 @@ msgstr "Spojené štáty"
 msgid "Universal LNB"
 msgstr "Univerzálny LNB"
 
+msgid "Unknown"
+msgstr "Neznáme"
+
 msgid "Unknown network adapter."
 msgstr "Neznámy sieťový adaptér."
 
@@ -6485,9 +6749,6 @@ msgstr "Použiť bránu"
 msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr "Na riadenie viacerých Dreamboxov s rôznymi RC."
 
-msgid "Use non-smooth winding at speeds above"
-msgstr "Použiť skokové prehrávanie pri rýchlostiach nad"
-
 msgid "Use power measurement"
 msgstr "Použiť meranie spotreby"
 
@@ -6556,14 +6817,23 @@ msgstr ""
 msgid "Vali-XD skin"
 msgstr "Vzhľad Vali-XD"
 
+msgid "Vali.HD.atlantis skin"
+msgstr "Vzhľad Vali.HD.atlantis"
+
 msgid "Vali.HD.nano skin"
 msgstr "Vzhľad Vali.HD.nano"
 
+msgid "Vali.HD.warp skin"
+msgstr "Vzhľad Vali.HD.warp"
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 "Skontrolujte pravosť Dreamboxa spustením modulu ne overenie jeho pravosti."
 
+msgid "Verifying your internet connection..."
+msgstr "Kontrola internetového pripojenia..."
+
 msgid "Vertical"
 msgstr "Zvislá"
 
@@ -6576,6 +6846,9 @@ msgstr "Sprievodca jemným nastavením obrazu"
 msgid "Video Output"
 msgstr "Výstup obrazu"
 
+msgid "Video PID"
+msgstr "Obrazový PID"
+
 msgid "Video Setup"
 msgstr "Nastavenie obrazu"
 
@@ -6776,6 +7049,9 @@ msgstr "Modul počasia zobrazuje predpovede počasia na Dreamboxe."
 msgid "Weatherforecast on your Dreambox"
 msgstr "Predpoveď počasia na Dreamboxe"
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr "Webový editor buketov pre počítač"
+
 msgid "Webinterface"
 msgstr "Webové rozhranie"
 
@@ -6935,6 +7211,13 @@ msgid "What to do with submitted crashlogs?"
 msgstr "Čo urobiť s odoslanými správami o zrútení?"
 
 msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+"Pri podpore \\„Fast Scan\\“ sa typ stanice ignoruje.Túto funkciu nemusíte "
+"zapínať, ak máte a používate image podporujúci \\„Fast Scan\\“."
+
+msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
 "timer with the same description already exists in the timer list."
 msgstr ""
@@ -6971,6 +7254,15 @@ msgstr "Bezdrôtová sieť"
 msgid "Wireless Network State"
 msgstr "Stav bezdrôtovej siete"
 
+msgid "Wireless network connection setup"
+msgstr "Nastavenie bezdrôtovej siete"
+
+msgid "Wireless network connection setup."
+msgstr "Nastavenie bezdrôtovej siete."
+
+msgid "Wireless network state"
+msgstr "Stav bezdrôtovej siete"
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -7209,6 +7501,15 @@ msgstr ""
 "Zatiaľčo „Názov“ je len čitateľný názov v prehľade,  „Hľadať titul“ je to, "
 "čo sa bude hľadať v EPG."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+"EasyInfo môžete použiť na spravovanie modulov EPG z tlačidla info. Je tu aj "
+"nový prehliadač terajších a budúcich programov, aj EasyPG - vlastný grafický "
+"prehliadač EPG."
+
 msgid "You cannot delete this!"
 msgstr "Toto nemôžete zmazať!"
 
@@ -7395,6 +7696,9 @@ msgstr "Vaše meno (voliteľne):"
 msgid "Your network configuration has been activated."
 msgstr "Nastavenie siete bolo aktivované."
 
+msgid "Your network is not working. Please try again."
+msgstr "Sieť nefunguje. Skúste znova."
+
 msgid "Your network mount has been activated."
 msgstr "Sieťový prístup bol aktivovaný."
 
@@ -7577,6 +7881,12 @@ msgstr "Priradené CAIdy:"
 msgid "assigned Services/Provider:"
 msgstr "Priradené služby a poskytovatelia:"
 
+msgid "at beginning"
+msgstr "Na začiatku"
+
+msgid "at end"
+msgstr "Na konci"
+
 #, python-format
 msgid "audio track (%s) format"
 msgstr "formát zvukovej stopy (%s)"
@@ -7591,6 +7901,9 @@ msgstr "zvukové stopy"
 msgid "auto"
 msgstr "auto"
 
+msgid "autotimers need a match attribute"
+msgstr "Autočasovače potrebujú atribút zhody"
+
 msgid "available"
 msgstr "dostupné"
 
@@ -7615,6 +7928,9 @@ msgstr "čierna listina"
 msgid "blue"
 msgstr "modrá"
 
+msgid "bob"
+msgstr ""
+
 #, python-format
 msgid "burn audio track (%s)"
 msgstr "napáliť zvukovú stopu (%s)"
@@ -7646,6 +7962,9 @@ msgstr "vymazať zoznam prehrávok"
 msgid "complex"
 msgstr "komplexné"
 
+msgid "config changed."
+msgstr "Zmenený config."
+
 msgid "config menu"
 msgstr "menu nast."
 
@@ -7670,6 +7989,12 @@ msgstr "nedá sa odstrániť"
 msgid "create directory"
 msgstr "vytvoriť adresár"
 
+msgid "creates virtual series folders from episodes"
+msgstr "Vytvorí virtuálny rad priečinkov z epizód."
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr "Vytvorí virtuálny rad priečinkov zo zostáv nahraných epizód"
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr "Aktuálne nainštalovaný image: %s"
@@ -7680,6 +8005,9 @@ msgstr "denne"
 msgid "day"
 msgstr "deň"
 
+msgid "default"
+msgstr "predvolené"
+
 msgid "delete"
 msgstr "Zmazať"
 
@@ -7725,6 +8053,9 @@ msgstr "nenahrávať"
 msgid "done!"
 msgstr "Hotovo!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr "ovládač pre bezdrôtové USB zariadenia Realtek"
+
 msgid "edit alternatives"
 msgstr "Upraviť alternatívy"
 
@@ -7935,6 +8266,9 @@ msgstr "minúta"
 msgid "minutes"
 msgstr "minút"
 
+msgid "missing parameter \"id\""
+msgstr "Chýbajúci parameter \\„id\\“"
+
 msgid "month"
 msgstr "mesiac"
 
@@ -8085,9 +8419,6 @@ msgstr "červená"
 msgid "redesigned Kerni-HD1 skin"
 msgstr "Upravený vzhľad Kerni-HD1"
 
-msgid "redirect notifications to Growl"
-msgstr "Presmerovať oznámenia na Growl"
-
 msgid "remove a nameserver entry"
 msgstr "Odstrániť DNS"
 
@@ -8344,6 +8675,10 @@ msgstr "prepnúť informácie o čase, kapitole, zvuku a podtitulkoch"
 msgid "tuner is not supported"
 msgstr "tuner nie je podporovaný"
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr "Nemôžem nájsť časovač s ID %i"
+
 msgid "unavailable"
 msgstr "nedostupné"
 
@@ -8398,6 +8733,9 @@ msgstr "týždenne"
 msgid "whitelist"
 msgstr "biela listina"
 
+msgid "wireless network interface"
+msgstr "rozhranie bezdrôtovej siete"
+
 msgid "working"
 msgstr "pracujem"
 
@@ -8431,6 +8769,9 @@ msgstr "prepnuté"
 #~ msgstr ""
 #~ "Súbor .NFI prešiel kontrolou md5sum. Tento image môžete bezpečne použiť!"
 
+#~ msgid "A BackToTheRoots-Skin ... or good old times."
+#~ msgstr "Vzhľad Späť ku koreňom ... alebo zlaté staré časy"
+
 #~ msgid "Cannot parse feed directory"
 #~ msgstr "Nemôžem prečítať adresár s feedmi"
 
@@ -8446,6 +8787,18 @@ msgstr "prepnuté"
 #~ msgid "Change setup pin"
 #~ msgstr "Zmeniť nastavovací PIN"
 
+#~ msgid "Code rate high"
+#~ msgstr "Vysoká kódová rýchlosť"
+
+#~ msgid "Code rate low"
+#~ msgstr "Nízka kódová rýchlosť"
+
+#~ msgid "Coderate HP"
+#~ msgstr "Rýchlosť HP"
+
+#~ msgid "Coderate LP"
+#~ msgstr "Rýchlosť LP"
+
 #~ msgid "Destination directory"
 #~ msgstr "Cieľový adresár"
 
@@ -8458,11 +8811,49 @@ msgstr "prepnuté"
 #~ msgid "Download of USB flasher boot image failed: "
 #~ msgstr "Sťahovanie súboru USB flasher boot image zlyhalo: "
 
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Počiatočná rýchlosť prevíjania vpred"
+
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Počiatočná rýchlosť prevíjania vzad"
+
 #~ msgid ""
 #~ "First we need to download the latest boot environment for the USB flasher."
 #~ msgstr ""
 #~ "Najprv sa musí stiahnuť najnovšie bootovacie prostredie pre USB flasher."
 
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Počet opakovaní obrázka počas skokového prevíjania"
+
+#~ msgid ""
+#~ "Growlee allows your Dreambox to send short messages using the growl "
+#~ "protocol\n"
+#~ "like Recording started notifications to a PC running a growl client"
+#~ msgstr ""
+#~ "Growlee umožňuje posielať z Dreamboxa krátke správy pomocou protokolu "
+#~ "growl,\n"
+#~ "napríklad oznam „Začalo nahrávanie“ do počítača, na ktorom beží klient "
+#~ "growl."
+
+#~ msgid "Guard Interval"
+#~ msgstr "Ochranný interval"
+
+#~ msgid "Guard interval mode"
+#~ msgstr "Režim ochranného intervalu"
+
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hierarchické informácie"
+
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hierarchický režim"
+
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Ak je toto zapnuté, existujúci časovač sa bude považovať za nahrávajúci, "
+#~ "ak z programu nahrá aspoň 80 %."
+
 #~ msgid "Image flash utility"
 #~ msgstr "Pomôcka na flešovanie image."
 
@@ -8478,6 +8869,9 @@ msgstr "prepnuté"
 #~ msgid "No useable USB stick found"
 #~ msgstr "Nenájdený použiteľný kľúč USB"
 
+#~ msgid "Orbital Position"
+#~ msgstr "Orbitálna pozícia"
+
 #~ msgid "Page"
 #~ msgstr "Strana"
 
@@ -8500,6 +8894,9 @@ msgstr "prepnuté"
 #~ msgid "Please select target directory or medium"
 #~ msgstr "Zvoľte cieľový adresár alebo médium"
 
+#~ msgid "Polarity"
+#~ msgstr "Polarita"
+
 #~ msgid "Press OK to view full changelog"
 #~ msgstr "Stlačením OK si prezriete celú správu o zmenách."
 
@@ -8540,6 +8937,12 @@ msgstr "prepnuté"
 #~ msgid "Stereo"
 #~ msgstr "Stereo"
 
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbolová rýchlosť"
+
+#~ msgid "Symbolrate"
+#~ msgstr "Symb. rých."
+
 #~ msgid ""
 #~ "The USB stick is now bootable. Do you want to download the latest image "
 #~ "from the feed server and save it on the stick?"
@@ -8600,12 +9003,21 @@ msgstr "prepnuté"
 #~ "10 sekúnd.\n"
 #~ "3) Vyčkajte na nabootovanie a riaďte sa pokynmi sprievodcu."
 
+#~ msgid "Transmission Mode"
+#~ msgstr "Režim prenosu"
+
+#~ msgid "Transponder Type"
+#~ msgstr "Typ transpondéra"
+
 #~ msgid ""
 #~ "USB stick wizard finished. Your dreambox will now restart with your new "
 #~ "image!"
 #~ msgstr ""
 #~ "Sprievodca kľúčom USB skončil. Dreambox sa teraz reštartuje s novým image."
 
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Použiť skokové prehrávanie pri rýchlostiach nad"
+
 #~ msgid "Wireless"
 #~ msgstr "Bezdrôtovo"
 
@@ -8627,6 +9039,9 @@ msgstr "prepnuté"
 #~ msgid "failed"
 #~ msgstr "zlyhalo"
 
+#~ msgid "redirect notifications to Growl"
+#~ msgstr "Presmerovať oznámenia na Growl"
+
 #~ msgid "select .NFI flash file"
 #~ msgstr "zvoliť súbor .NFI"
 
index f49fe2c..fa5b506 100755 (executable)
--- a/po/sl.po
+++ b/po/sl.po
@@ -2,7 +2,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: ENIGMA 1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2009-01-25 13:59+0100\n"
 "Last-Translator: Gregor <greg.domajnko@gmail.com>\n"
 "Language-Team: \n"
@@ -168,6 +168,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%S:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -206,6 +212,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -362,10 +372,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -386,6 +396,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -409,6 +422,9 @@ msgstr "Grafični EPG za vse storitve izbranega paketa"
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -863,6 +879,9 @@ msgstr "Vprašajte uporabnika"
 msgid "Aspect Ratio"
 msgstr "Način prikaza"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -877,6 +896,9 @@ msgstr "Zvok"
 msgid "Audio Options..."
 msgstr "Zvočne nastavitve..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -943,6 +965,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Samodejno"
@@ -977,6 +1008,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1019,6 +1068,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Nazaj"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Ozadje"
@@ -1113,6 +1168,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Svetlost"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1143,6 +1203,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Bus:"
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1409,21 +1480,11 @@ msgstr ""
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Visok nivo kodiranja"
-
-#
-msgid "Code rate low"
-msgstr "Nizek nivo kodiranja"
-
-#
-msgid "Coderate HP"
-msgstr "Kodiranje HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Kodiranje LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1607,6 +1668,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr ""
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr ""
@@ -1786,6 +1851,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1871,10 +1939,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Zamik"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Izbriši"
@@ -2062,6 +2139,12 @@ msgstr ""
 "Ali res želite preveriti datotečni sistem?\n"
 "Opravilo lahko traja zelo dolgo! "
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2257,6 +2340,12 @@ msgstr "Dreambox oblika podatkov DVD (HDTV združljiva)"
 msgid "Dreambox software because updates are available."
 msgstr ""
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2398,10 +2487,25 @@ msgstr "Omogoči"
 msgid "Enable /media"
 msgstr ""
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Vklopi 5V za aktivno anteno"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2522,18 +2626,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Previjanje naprej s hitrostjo"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Previjanje nazaj s hitrostjo"
-
-#
 msgid "Enter main menu..."
 msgstr "Vstop v glavni meni..."
 
@@ -2606,6 +2702,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Pregled dogodkov"
@@ -2805,6 +2904,11 @@ msgstr "Končan ponovni zagon omrežja"
 msgid "Finnish"
 msgstr "Finsko"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2824,16 +2928,18 @@ msgstr ""
 msgid "Format"
 msgstr "Formatiraj"
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Ponavljanje posamezne slike med neenakomernim premotavanjem"
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
+msgstr ""
 
 #
 msgid "Frame size in full view"
@@ -2878,6 +2984,9 @@ msgstr "Frisian"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2932,6 +3041,9 @@ msgstr ""
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Žanr"
@@ -3010,23 +3122,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Interval zaščite"
-
-#
-msgid "Guard interval mode"
-msgstr "Način zaštitnega intervala"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3055,6 +3168,9 @@ msgstr "HDD preklopi v mirovni način po"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "Skrit omrežni SSID"
@@ -3063,13 +3179,8 @@ msgstr "Skrit omrežni SSID"
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Informacije stopnje"
-
-#
-msgid "Hierarchy mode"
-msgstr "Način stopnje"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3140,11 +3251,10 @@ msgstr "ISO pot"
 msgid "Icelandic"
 msgstr "Islandsko"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3249,6 +3359,12 @@ msgstr "Informacije"
 msgid "Init"
 msgstr "Inicializacija"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3350,6 +3466,9 @@ msgstr "Notranji pomnilnik"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3547,6 +3666,11 @@ msgstr "Izberite jezik"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Zadnja hitrost"
@@ -3604,6 +3728,9 @@ msgstr "Povezava:"
 msgid "Linked titles with a DVD menu"
 msgstr "Povezani naslovi z DVD menujem"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Seznam naprav za shranjevanje"
@@ -3740,6 +3867,9 @@ msgstr ""
 msgid "Manual Scan"
 msgstr "Ročno preverjanje"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Ročno vnešeni oddajnik"
@@ -4027,6 +4157,9 @@ msgstr "Seznam filmov"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr ""
@@ -4035,6 +4168,9 @@ msgstr ""
 msgid "Multiple service support"
 msgstr "Podpora več storitvam"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4106,6 +4242,9 @@ msgstr ""
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "SEDAJ"
@@ -4135,6 +4274,9 @@ msgstr "Nastavljanje Imenskega strežnika"
 msgid "Nameserver settings"
 msgstr "Nast. Imenskega strežnika"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4290,6 +4432,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr "Omrežni Čarovnik"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4459,6 +4604,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4553,6 +4701,12 @@ msgstr "Sever"
 msgid "Norwegian"
 msgstr "Norveški"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4566,6 +4720,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4608,6 +4765,9 @@ msgstr ""
 msgid "OK, remove some extensions"
 msgstr ""
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "Nastavitve OSD"
@@ -4677,9 +4837,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr ""
 
-#
-msgid "Orbital Position"
-msgstr "Orbitalna Pozicija"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4702,10 +4861,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Nadgradnja sezma paketov"
@@ -5148,10 +5313,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Polariteta"
-
-#
 msgid "Polarization"
 msgstr "Polarizacija"
 
@@ -5187,6 +5348,9 @@ msgstr "Vrata D"
 msgid "Portuguese"
 msgstr "Portugalsko"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Pozicionirna naprava"
@@ -5402,6 +5566,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5512,6 +5679,9 @@ msgstr ""
 msgid "Recordings always have priority"
 msgstr "Snemanje ima vedno višjo prioriteto"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5733,6 +5903,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Nadaljuj z zadnje poznane lokacije"
@@ -5773,9 +5946,8 @@ msgstr "Hitrosti previjanja"
 msgid "Right"
 msgstr "Desno"
 
-#
-msgid "Rolloff"
-msgstr "Odvrti"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5785,6 +5957,9 @@ msgstr "Hitrost vrtenja rotorja"
 msgid "Running"
 msgstr "V teku"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5797,6 +5972,21 @@ msgstr "Rusko"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5813,6 +6003,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Sat"
@@ -6275,6 +6478,9 @@ msgstr ""
 "Storitve ni moč najti!\n"
 "(SID ni v PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Preverjanje storitev"
@@ -6409,6 +6615,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Prikaži infobar med prehodom po kanalih"
@@ -6421,6 +6630,9 @@ msgstr "Prikaži infobar ob spremembi dogodka"
 msgid "Show infobar on skip forward/backward"
 msgstr "Prikaži infobar med previjanjem naprej/nazaj"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Prikaži premikanje pozicionirne naprave"
@@ -6689,6 +6901,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr ""
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Začni na začetku"
@@ -6812,6 +7027,9 @@ msgstr "Ned"
 msgid "Sunday"
 msgstr "Nedelja"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Zamenjaj storitve"
@@ -6836,13 +7054,8 @@ msgstr "Preklopi na prejšnjo pod-storitev"
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Razmerje simbolov"
-
-#
-msgid "Symbolrate"
-msgstr "Razmerje simbolov"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6857,10 +7070,19 @@ msgstr "TRANSLATOR_INFO"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS datoteka prevelika za ISO9660 level1!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV Sistem"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Kazalo vsebine zbirke"
@@ -6893,6 +7115,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Zemeljski"
@@ -7566,10 +7791,6 @@ msgid "Translation:"
 msgstr "Prevod:"
 
 #
-msgid "Transmission Mode"
-msgstr "Način posredovanja"
-
-#
 msgid "Transmission mode"
 msgstr "Način posredovanja"
 
@@ -7578,10 +7799,6 @@ msgid "Transponder"
 msgstr "Oddajnik"
 
 #
-msgid "Transponder Type"
-msgstr "Tip oddajnika"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7709,6 +7926,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7737,6 +7957,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "Univerzalni LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7851,10 +8074,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Uporabi negladko previjanje pri hitrostih nad"
-
-#
 msgid "Use power measurement"
 msgstr "Uporabi merjenje moči"
 
@@ -7937,13 +8156,22 @@ msgstr "VMGM (v trailer)"
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr ""
@@ -7960,6 +8188,9 @@ msgstr "Čarovnik za podrobne nastavitve videa"
 msgid "Video Output"
 msgstr "Video izhod"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Video nastavitve"
@@ -8205,6 +8436,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr ""
@@ -8348,6 +8582,11 @@ msgstr "Kaj želite preveriti?"
 msgid "What to do with submitted crashlogs?"
 msgstr ""
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8384,6 +8623,15 @@ msgstr "Brezžično omrežje"
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8605,6 +8853,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Tega ne morete izbrisati!"
@@ -8789,6 +9043,9 @@ msgstr ""
 msgid "Your network configuration has been activated."
 msgstr "Vaša omrežna nastavitev je bila aktivirana."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -9006,6 +9263,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9024,6 +9287,9 @@ msgstr "zvočni zapisi"
 msgid "auto"
 msgstr "samodejno"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr ""
@@ -9056,6 +9322,9 @@ msgstr "Črni seznam"
 msgid "blue"
 msgstr "modro"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9097,6 +9366,9 @@ msgstr "počisti seznam za predvajanje"
 msgid "complex"
 msgstr "kompleksno"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "konfiguracijski meni"
@@ -9128,6 +9400,12 @@ msgstr ""
 msgid "create directory"
 msgstr "ustvari mapo"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9140,6 +9418,9 @@ msgstr "dnevno"
 msgid "day"
 msgstr "dan"
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "Izbriši"
@@ -9199,6 +9480,9 @@ msgstr "ne snemaj"
 msgid "done!"
 msgstr "Storjeno!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "uredi alternative"
@@ -9479,6 +9763,9 @@ msgstr "minuta"
 msgid "minutes"
 msgstr "minute"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "mesec"
@@ -9677,9 +9964,6 @@ msgstr "rdeče"
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr "odstrani vnos v imenskem strežniku"
@@ -10016,6 +10300,10 @@ msgstr "izbiraj med prikazom časa, poglavja, zvoka in podnapisi"
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr ""
@@ -10086,6 +10374,9 @@ msgstr "tedensko"
 msgid "whitelist"
 msgstr "bel seznam"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "deluje"
@@ -10318,6 +10609,22 @@ msgstr "prenesen"
 #~ msgstr "Izberi vir"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Visok nivo kodiranja"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Nizek nivo kodiranja"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Kodiranje HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Kodiranje LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact Flash kartica"
 
@@ -10459,6 +10766,14 @@ msgstr "prenesen"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Previjanje naprej s hitrostjo"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Previjanje nazaj s hitrostjo"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Vnesi ime/SSID WLAN omrežja:"
 
@@ -10494,6 +10809,10 @@ msgstr "prenesen"
 #~ msgstr "Velikost pisave"
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Ponavljanje posamezne slike med neenakomernim premotavanjem"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP naslov"
 
@@ -10510,10 +10829,26 @@ msgstr "prenesen"
 #~ msgstr "Žanri:"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Interval zaščite"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Način zaštitnega intervala"
+
+#
 #~ msgid "Hide error windows"
 #~ msgstr "Sakrij prozor greA!ke"
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Informacije stopnje"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Način stopnje"
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Pritisnite OK, če vidite to stran. "
 
@@ -10640,6 +10975,10 @@ msgstr "prenesen"
 #~ msgstr "Online-nadgradnja"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Orbitalna Pozicija"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Ostalo..."
 
@@ -10684,6 +11023,10 @@ msgstr "prenesen"
 #~ msgstr "Prosim izberite ciljno mapo ali medij"
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polariteta"
+
+#
 #~ msgid "Predefined satellite"
 #~ msgstr "Predefinirani sateliti"
 
@@ -10776,6 +11119,10 @@ msgstr "prenesen"
 #~ "nastavitev."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Odvrti"
+
+#
 #~ msgid "Satconfig"
 #~ msgstr "Satkonfig"
 
@@ -10894,6 +11241,14 @@ msgstr "prenesen"
 #~ msgstr "Stereo"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Razmerje simbolov"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Razmerje simbolov"
+
+#
 #~ msgid ""
 #~ "Thank you for using the wizard. Your box is now ready to use.\n"
 #~ "Please press OK to start using you Dreambox."
@@ -10993,6 +11348,14 @@ msgstr "prenesen"
 #~ "3) Počakajte na ponovni zagon in sledite navodilom čarovnika."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Način posredovanja"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Tip oddajnika"
+
+#
 #~ msgid "Transpondertype"
 #~ msgstr "TipTranspondera"
 
@@ -11031,6 +11394,10 @@ msgstr "prenesen"
 #~ msgstr "Postavke koriA!tenja"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Uporabi negladko previjanje pri hitrostih nad"
+
+#
 #~ msgid "VCR Switch"
 #~ msgstr "VCR prebacivanje"
 
index 9b59a08..1c22ba7 100755 (executable)
--- a/po/sr.po
+++ b/po/sr.po
@@ -3,13 +3,17 @@ msgid ""
 msgstr ""
 "Project-Id-Version: Enigma2\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
-"PO-Revision-Date: 2009-10-10 11:18+0100\n"
-"Last-Translator: maja <jovanovic@gmx.ch>\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
+"PO-Revision-Date: 2011-04-14 00:02+0200\n"
+"Last-Translator: majevica <jovanovic@gmx.ch>\n"
 "Language-Team: veselin & majevica CRNABERZA <jovanovic@gmx.ch>\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
+"Language: sr\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"
+"X-Generator: Pootle 2.0.3\n"
 "X-Poedit-Language: Serbian\n"
 "X-Poedit-SourceCharset: utf-8\n"
 "X-Poedit-Country: SERBIA\n"
@@ -141,7 +145,7 @@ msgid " extensions."
 msgstr "proširenja."
 
 msgid " ms"
-msgstr ""
+msgstr "ms"
 
 #
 msgid " packages selected."
@@ -199,6 +203,14 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+"%d problem(a) susretnuto pokušavajući dodati nove tajmere:\n"
+"%s"
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -237,6 +249,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr "%s: %s at %s"
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -325,7 +341,6 @@ msgstr "3"
 msgid "30 minutes"
 msgstr "30 minuta"
 
-#
 msgid "4"
 msgstr "4"
 
@@ -393,17 +408,17 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
-msgstr ""
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr "Povratak na izvorne maske ali sa varp-8 brzinom.  "
 
-msgid "A BackToTheRoots-Skin ... or good old times."
-msgstr ""
+msgid "A BackToTheRoots-Skin .. or good old times."
+msgstr "Povratak izvornom skinu..ili dobrim starim vremenima."
 
 msgid "A basic ftp client"
-msgstr ""
+msgstr "Osnovni FTP klijent"
 
 msgid "A client for www.dyndns.org"
-msgstr ""
+msgstr "Klijent za www.dyndns.org"
 
 #
 #, python-format
@@ -415,7 +430,10 @@ msgstr ""
 "Želite li zadržati vašu verziju?"
 
 msgid "A demo plugin for TPM usage."
-msgstr ""
+msgstr "Demo dodatak za TMP korišćenje."
+
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr "Drimboks simulacija od SG-Atlantis displeja"
 
 #
 msgid ""
@@ -438,10 +456,13 @@ msgid "A graphical EPG for all services of an specific bouquet"
 msgstr "Grafički EPG za sve kanale od specifičnog buketa"
 
 msgid "A graphical EPG interface"
-msgstr ""
+msgstr "Grafički EPG interfejs"
+
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr "grafički EPG interfejs i menadžer EPG alata"
 
 msgid "A graphical EPG interface."
-msgstr ""
+msgstr "Grafički EPG interfejs,"
 
 #
 msgid ""
@@ -452,13 +473,13 @@ msgstr ""
 "Ažuriraj postojeći unos i nastavi?\n"
 
 msgid "A nice looking HD skin from Kerni"
-msgstr ""
+msgstr "Lepa HD maska od Kernija"
 
 msgid "A nice looking HD skin in Brushed Alu Design from Kerni."
-msgstr ""
+msgstr "Lepa HD maska u brušenom alu dizajnu od Kernija"
 
 msgid "A nice looking skin from Kerni"
-msgstr ""
+msgstr "Lepa maska od Kernija"
 
 #
 #, python-format
@@ -513,7 +534,7 @@ msgstr ""
 "Da li želite da onemogućite drugi mrežni interfejs?"
 
 msgid "A simple downloading application for other plugins"
-msgstr ""
+msgstr "Jednostavna aplikacija za skidanje drugih dodataka"
 
 #
 msgid ""
@@ -580,10 +601,10 @@ msgid "About..."
 msgstr "O programu..."
 
 msgid "Access to the ARD-Mediathek"
-msgstr ""
+msgstr "Pristup ARD mediateci"
 
 msgid "Access to the ARD-Mediathek online video database."
-msgstr ""
+msgstr "Pristup onlajn video bazi podataka ARD mediateke"
 
 #
 msgid "Accesspoint:"
@@ -595,7 +616,7 @@ msgstr "Dejstvo za dugo pritisnutu tipku paljenja"
 
 #
 msgid "Action on short powerbutton press"
-msgstr ""
+msgstr "Akcija za kratko pritisnuto dugme paljenja"
 
 #
 msgid "Action:"
@@ -683,7 +704,7 @@ msgstr "Dodaj u favorite"
 
 #
 msgid "Add zap timer instead of record timer?"
-msgstr ""
+msgstr "Dodaj zap tajmer umesto tajmera za snimanje?"
 
 #
 msgid "Added: "
@@ -718,10 +739,10 @@ msgstr ""
 "ekrane. "
 
 msgid "Adult streaming plugin"
-msgstr ""
+msgstr "Dodatak za strim za odrasle"
 
 msgid "Adult streaming plugin."
-msgstr ""
+msgstr "Dodatak za strim za odrasle."
 
 #
 msgid "Advanced Options"
@@ -751,6 +772,8 @@ msgid ""
 "After a reboot or power outage, StartupToStandby will bring your Dreambox to "
 "standby-mode."
 msgstr ""
+"Posle restarta ili prekida napajanja, StartupToStandby će dovesti vaš "
+"drimboks u mod spreman."
 
 #
 msgid "After event"
@@ -765,7 +788,7 @@ msgstr ""
 "drimbox uputstva kako da to uradite."
 
 msgid "Ai.HD skin-style control plugin"
-msgstr ""
+msgstr "Ai.HD stil maske kontrolni dodatak"
 
 #
 msgid "Album"
@@ -792,10 +815,10 @@ msgid "Allow zapping via Webinterface"
 msgstr "Dozvoli promenu kanala preko vebinterfejsa"
 
 msgid "Allows the execution of TuxboxPlugins."
-msgstr ""
+msgstr "Dozvoljava izvršenje tuksboks dodataka."
 
 msgid "Allows user to download files from rapidshare in the background."
-msgstr ""
+msgstr "Dozvoljava korisniku da skida datoteke sa rapidšera u pozadini."
 
 #
 msgid "Alpha"
@@ -810,7 +833,7 @@ msgid "Alternative services tuner priority"
 msgstr "Prioritet alternativnih kanala tjunera"
 
 msgid "Always ask"
-msgstr ""
+msgstr "Uvek pitaj"
 
 #
 msgid "Always ask before sending"
@@ -912,11 +935,14 @@ msgstr "Pitaj korisnika"
 msgid "Aspect Ratio"
 msgstr "Odnos slike"
 
+msgid "Aspect ratio"
+msgstr "Odnos Slike"
+
 msgid "Assigning providers/services/caids to a CI module"
-msgstr ""
+msgstr "Dodeljivanje provajdera/kanala/kaida CI modulu "
 
 msgid "Atheros"
-msgstr ""
+msgstr "Ateros"
 
 #
 msgid "Audio"
@@ -926,18 +952,23 @@ msgstr "Zvuk"
 msgid "Audio Options..."
 msgstr "Zvučne opcije..."
 
+msgid "Audio PID"
+msgstr "Zvučni PID"
+
 #
 msgid "Audio Sync"
-msgstr ""
+msgstr "Audio sinhronizacija"
 
 #
 msgid "Audio Sync Setup"
-msgstr ""
+msgstr "Podešavanje audio sinhronizacije"
 
 msgid ""
 "AudoSync allows delaying the sound output (Bitstream/PCM) so that it is "
 "synchronous to the picture."
 msgstr ""
+"Audio sinhronizacija omogućava kašnjenje zvuka (Bitstream/PCM) tako da bude "
+"sinhronizovan sa slikom."
 
 #
 msgid "Australia"
@@ -991,6 +1022,17 @@ msgid ""
 "AutoTimer scans the EPG and creates Timers depending on user-defined search  "
 "criteria."
 msgstr ""
+"Autotajmer pretražuje EPG i kreira tajmere u zavisnosti od korisn. "
+"definisanih kriterijuma traženja. "
+
+msgid "AutoTimer was added successfully"
+msgstr "Auto tajmer je uspešno dodat"
+
+msgid "AutoTimer was changed successfully"
+msgstr "Auto tajmer je uspešno promenjen"
+
+msgid "AutoTimer was removed"
+msgstr "Auto tajmer je uklonjen"
 
 #
 msgid "Automatic"
@@ -1001,30 +1043,51 @@ msgid "Automatic Scan"
 msgstr "Automatsko skeniranje "
 
 msgid "Automatic volume adjustment"
-msgstr ""
+msgstr "automatsko podešavanje glasnoće"
 
 msgid "Automatic volume adjustment for ac3/dts services."
-msgstr ""
+msgstr "automatsko podešavanje glasnoće za ac3/dts usluge."
 
 msgid "Automatically change video resolution"
-msgstr ""
+msgstr "Automatski menja video rezoluciju"
 
 msgid ""
 "Automatically changes the output resolution depending on the video "
 "resolution you are watching."
 msgstr ""
+"Automatski menja izlaznu rezoluciju zavisno od video rezolucije koju gledate."
 
 msgid "Automatically create timer events based on keywords"
-msgstr ""
+msgstr "Automatski kreira tajmer događaje bazirane na ključnim rečima"
 
 msgid "Automatically informs you on low internal memory"
-msgstr ""
+msgstr "Automatski vas obaveštava na malo interne memorije"
 
 msgid "Automatically refresh EPG"
-msgstr ""
+msgstr "Automatski osvežava EPG"
 
 msgid "Automatically send crashlogs to Dream Multimedia"
+msgstr "Automatski šalje krah zapise Drim Multimediji"
+
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
 msgstr ""
+"Autoresolution dodatak test mod:\n"
+"je %s ok?"
+
+msgid "Autoresolution Switch"
+msgstr "Autoresolution prekidač"
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Autoresolution ne radi u Skart/DVI-PC modu"
+
+msgid "Autoresolution settings"
+msgstr "Autoresolution podešavanja"
+
+msgid "Autoresolution videomode setup"
+msgstr "Autoresolution podešavanje video moda"
 
 #
 msgid "Autos & Vehicles"
@@ -1047,10 +1110,10 @@ msgid "BA"
 msgstr "BA"
 
 msgid "BASIC-HD Skin by Ismail Demir"
-msgstr ""
+msgstr "Osnovna HD maska Ismail Demira"
 
 msgid "BASIC-HD Skin for Dreambox Images created from Ismail Demir"
-msgstr ""
+msgstr "Osnovna HD maska za drimboks kreirana od Ismail Demira"
 
 #
 msgid "BB"
@@ -1068,6 +1131,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Iza"
 
+msgid "Back, lower USB Slot"
+msgstr "Zadnji ,donji USB slot"
+
+msgid "Back, upper USB Slot"
+msgstr "Zadnji ,gornji USB slot"
+
 #
 msgid "Background"
 msgstr "Pozadina"
@@ -1141,10 +1210,10 @@ msgid "Blue boost"
 msgstr "Plavo pojačanje"
 
 msgid "Bonjour/Avahi control plugin"
-msgstr ""
+msgstr "Bonjour/Avah kontrolni dodatak"
 
 msgid "Bonjour/Avahi control plugin."
-msgstr ""
+msgstr "Bonjour/Avah kontrolni dodatak."
 
 #
 msgid "Bookmarks"
@@ -1162,11 +1231,18 @@ msgstr "Brazil"
 msgid "Brightness"
 msgstr "Osvetljenje"
 
-msgid "Browse for and connect to network shares"
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
 msgstr ""
+"Pregledaj ORF i SAT1 teletekst nezavisno od kanala.Za ovo je potrebna I-net "
+"veza."
+
+msgid "Browse for and connect to network shares"
+msgstr "Traži i spoji se sa delovima na mreži "
 
 msgid "Browse for nfs/cifs shares and connect to them."
-msgstr ""
+msgstr "Traži nfs/cifs delove i spoji se sa njima."
 
 #
 msgid "Browse network neighbourhood"
@@ -1181,17 +1257,32 @@ msgid "Burn existing image to DVD"
 msgstr "Nareži postojeći imidž na DVD"
 
 #
-#, fuzzy
 msgid "Burn to DVD"
 msgstr "Nareži na DVD"
 
 msgid "Burn your recordings to DVD"
-msgstr ""
+msgstr "Nareži svoje snimke na DVD"
 
 #
 msgid "Bus: "
 msgstr "Bus:"
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+"Uključenjem ovoga događaji neće biti složeni ako se ne dese na određene "
+"datume."
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+"Uključenjem ovoga,vi ćete biti obavešteni o problemima tajmera prnaćenih za "
+"vreme auto biranja Pamet nije uključena pa vam može stalno dosađivati o "
+"istom problemu.   "
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1203,18 +1294,18 @@ msgstr ""
 msgid "C"
 msgstr "C"
 
-#
 msgid "C-Band"
-msgstr "C-Band"
+msgstr "C-Opseg"
 
-#, fuzzy
 msgid "CDInfo"
-msgstr "Info"
+msgstr "CD Info"
 
 msgid ""
 "CDInfo enables gathering album and track details from CDDB and CD-Text when "
 "playing Audio CDs in Mediaplayer."
 msgstr ""
+"CDinfo omogućava prikupljanje detalja albuma i pesama sa CDDB i cd tekst dok "
+"puštate audio CD u medija plejetu."
 
 #
 msgid "CI assignment"
@@ -1237,14 +1328,13 @@ msgid "Cache Thumbnails"
 msgstr "Učitaj sličice"
 
 msgid "Callmonitor for NCID-based call notification"
-msgstr ""
+msgstr "Nadzor poziva za NCID bazirane objave poziva"
 
 msgid "Callmonitor for the Fritz!Box routers"
-msgstr ""
+msgstr "Nadzor poziva za Fritz!Box rutere "
 
-#, fuzzy
 msgid "Can't connect to server. Please check your network!"
-msgstr "Molim proverite vaše mrežne postavke"
+msgstr "Ne mogu se povezati na server.Molim proverite vašu mrežu!"
 
 #
 msgid "Canada"
@@ -1268,15 +1358,15 @@ msgstr "Katalonski"
 
 #
 msgid "Center screen at the lower border"
-msgstr ""
+msgstr "Centriraj ekran na donjoj ivici"
 
 #
 msgid "Center screen at the upper border"
-msgstr ""
+msgstr "Centriraj ekran na gornjoj ivici"
 
 #
 msgid "Change active delay"
-msgstr ""
+msgstr "Promeni aktivno kašnjenje"
 
 #
 msgid "Change bouquets in quickzap"
@@ -1284,7 +1374,7 @@ msgstr "Promeni bukete u brzom prebacivanju"
 
 #
 msgid "Change default recording offset?"
-msgstr ""
+msgstr "Promeni standardnu ladicu za snimanje?"
 
 #
 msgid "Change hostname"
@@ -1295,13 +1385,13 @@ msgid "Change pin code"
 msgstr "Promeni pin kod"
 
 msgid "Change service PIN"
-msgstr ""
+msgstr "Promeni servisni PIN"
 
 msgid "Change service PINs"
-msgstr ""
+msgstr "Promeni servisne PINove"
 
 msgid "Change setup PIN"
-msgstr ""
+msgstr "Promeni PIN za podešavanje"
 
 #
 msgid "Change step size"
@@ -1312,7 +1402,7 @@ msgid "Change the hostname of your Dreambox."
 msgstr "Promeni ime hosta svog drimboksa."
 
 msgid "Changelog"
-msgstr ""
+msgstr "Zapis izmena"
 
 #
 msgid "Channel"
@@ -1383,7 +1473,7 @@ msgid "Choose bouquet"
 msgstr "Odaberi buket"
 
 msgid "Choose image to download"
-msgstr ""
+msgstr "Izaberi imidž za skidanje"
 
 #
 msgid "Choose target folder"
@@ -1406,7 +1496,7 @@ msgid "Circular right"
 msgstr "Kružna desna"
 
 msgid "Classic"
-msgstr "Klasi?na "
+msgstr "Klasična "
 
 #
 msgid "Cleanup"
@@ -1421,10 +1511,10 @@ msgid "Cleanup Wizard settings"
 msgstr "Postavke čarobnjaka za čišćenje"
 
 msgid "Cleanup timerlist automatically"
-msgstr ""
+msgstr "Ošisti listu tajmera automatski"
 
 msgid "Cleanup timerlist automatically."
-msgstr ""
+msgstr "Ošisti listu tajmera automatski."
 
 #
 msgid "CleanupWizard"
@@ -1458,21 +1548,11 @@ msgstr "Zatvori i sačuvaj izmene"
 msgid "Close title selection"
 msgstr "Zatvori zbor naslova"
 
-#
-msgid "Code rate high"
-msgstr "Visoka kod rata"
-
-#
-msgid "Code rate low"
-msgstr "Niska kod rata"
-
-#
-msgid "Coderate HP"
-msgstr "Kodrata HP"
+msgid "Code rate HP"
+msgstr "Kod rata HP"
 
-#
-msgid "Coderate LP"
-msgstr "Kodrata LP"
+msgid "Code rate LP"
+msgstr "Kod rata LP"
 
 #
 msgid "Collection name"
@@ -1531,7 +1611,7 @@ msgid "Complex (allows mixing audio tracks and aspects)"
 msgstr "Složen (dozvoljava miksovanje audio zapisa i aspekta)"
 
 msgid "Composition of the recording filenames"
-msgstr ""
+msgstr "Sklapanje imena snimljenih datoteka"
 
 #
 msgid "Configuration Mode"
@@ -1554,7 +1634,7 @@ msgid "Configure nameservers"
 msgstr "Konfiguriši nejmservere"
 
 msgid "Configure your WLAN network interface"
-msgstr ""
+msgstr "Konfiguriši svoj WLAN mrežni interfejs"
 
 #
 msgid "Configure your internal LAN"
@@ -1617,28 +1697,28 @@ msgid "Contrast"
 msgstr "Kontrast"
 
 msgid "Control your Dreambox with your Web browser."
-msgstr ""
+msgstr "Kontroliši svoj drimboks svojim veb pretraživašem."
 
 msgid "Control your Dreambox with your browser"
-msgstr ""
+msgstr "Kontroliši svoj drimboks svojim pretraživašem."
 
 msgid "Control your dreambox with only the MUTE button"
-msgstr ""
+msgstr "Kontroliši svoj drimboks samo sa MUTE dugmetom"
 
 msgid "Control your dreambox with only the MUTE button."
-msgstr ""
+msgstr "Kontroliši svoj drimboks samo sa MUTE dugmetom"
 
 msgid "Control your internal system fan."
-msgstr ""
+msgstr "Kontroliši svoj unutrašnji sist. ventilator."
 
 msgid "Control your kids's tv usage"
-msgstr ""
+msgstr "Kontroliši dešiju upotrebu TV-a"
 
 msgid "Control your system fan"
-msgstr ""
+msgstr "Kontroliši svoj sist. ventilator"
 
 msgid "Copy, rename, delete, move local files on your Dreambox."
-msgstr ""
+msgstr "Kopiraj,preimenuj,obriši,premesti lokalne datoteke na drimboksu."
 
 #
 msgid "Could not connect to Dreambox .NFI Image Feed Server:"
@@ -1657,6 +1737,10 @@ msgstr "Ne mogu otvoriti sliku u slici"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Snimanje nije moguće zbog konflikta tajmera %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr "Snimanje nemoguće zbog nevaljanog kanala %s"
+
 #
 msgid "Crashlog settings"
 msgstr "Postavke krah zapisa"
@@ -1686,10 +1770,10 @@ msgid "Create DVD-ISO"
 msgstr "Napravi DVD-ISO"
 
 msgid "Create a backup of your Video DVD on your DreamBox hard drive."
-msgstr ""
+msgstr "Kreiraj bekap svog video DVD-a na drimboksovom hard disku."
 
 msgid "Create a backup of your Video-DVD"
-msgstr ""
+msgstr "Kreiraj bekap svog video DVD-a"
 
 #
 msgid "Create a new AutoTimer."
@@ -1708,13 +1792,13 @@ msgid "Create movie folder failed"
 msgstr "Neuspešno stvaranje video fascikle"
 
 msgid "Create preview pictures of your Movies"
-msgstr ""
+msgstr "Kreiraj prikaz slike svojih filmova"
 
 msgid "Create remote timers"
-msgstr ""
+msgstr "Kreiraj udaljene tajmere"
 
 msgid "Create timers on remote Dreamboxes."
-msgstr ""
+msgstr "Kreiraj tajmere na udaljenim drimboksovima."
 
 #
 #, python-format
@@ -1734,7 +1818,7 @@ msgid "Current Transponder"
 msgstr "Trenutni transponder"
 
 msgid "Current device: "
-msgstr ""
+msgstr "Aktuelni uređaj:"
 
 #
 msgid "Current settings:"
@@ -1749,7 +1833,7 @@ msgid "Current version:"
 msgstr "Trenutna verzija:"
 
 msgid "Currently installed image"
-msgstr ""
+msgstr "Aktuelno instalirani imidž"
 
 #
 #, python-format
@@ -1781,23 +1865,23 @@ msgid "Customize"
 msgstr "Prilagodi"
 
 msgid "Customize Vali-XD skins"
-msgstr ""
+msgstr "Prilagodi Vali-XD maske"
 
 msgid "Customize Vali-XD skins by yourself."
-msgstr ""
+msgstr "Prilagodi Vali-XD maske po svome."
 
 #
 msgid "Cut"
 msgstr "Odreži"
 
 msgid "Cut your movies"
-msgstr ""
+msgstr "Iseci svoje filmove"
 
 msgid "Cut your movies."
-msgstr ""
+msgstr "Iseci svoje filmove."
 
 msgid "CutListEditor allows you to edit your movies"
-msgstr ""
+msgstr "CutListEditor vam dozvoljava da uredite vase filmove"
 
 msgid ""
 "CutListEditor allows you to edit your movies.\n"
@@ -1805,6 +1889,10 @@ msgid ""
 "cut'.\n"
 "Then seek to the end, press OK, select 'end cut'. That's it."
 msgstr ""
+"CutListEditor vam dozvoljava da uredite vase filmove.\n"
+"Tražite početak onog što želite da isečete.Stisnite OK,izaberite  'počni "
+"isecanje'.\n"
+"Zatim tražite kraj,stisnite OK,izaberite  'kraj isecanja'. To je to."
 
 #
 msgid "Cutlist editor..."
@@ -1828,7 +1916,7 @@ msgstr "DHCP"
 
 #
 msgid "DUAL LAYER DVD"
-msgstr ""
+msgstr "DVOSLOJNI DVDi "
 
 #
 msgid "DVB-S"
@@ -1838,6 +1926,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr "DVD drajv"
+
 #
 msgid "DVD File Browser"
 msgstr "DVD pretraživač datoteka"
@@ -1855,13 +1946,16 @@ msgid "DVD media toolbox"
 msgstr "DVD medij alati"
 
 msgid "DVDPlayer plays your DVDs on your Dreambox"
-msgstr ""
+msgstr "DVD plejer pušta vaše DVD na vašem drimboksu"
 
 msgid ""
 "DVDPlayer plays your DVDs on your Dreambox.\n"
 "With the DVDPlayer you can play your DVDs on your Dreambox from a DVD or "
 "even from an iso file or video_ts folder on your harddisc or network."
 msgstr ""
+"DVD plejer pušta vaše DVD na vašem drimboksu.\n"
+"Sa DVD plejerom možete puštati vaše DVD na drimboksu sa DVD'a ili čak iz iso "
+"datoteke ili video_ts fascikle sa vašeg hard diska ili mreže."
 
 #
 msgid "Danish"
@@ -1885,20 +1979,19 @@ msgstr "Odlučuje šta bi se trebalo desiti sa krah zapisima posle slanja."
 
 #
 msgid "Decrease delay"
-msgstr ""
+msgstr "Smanji kašnjenje"
 
 #
 #, python-format
 msgid "Decrease delay by %i ms (can be set)"
-msgstr ""
+msgstr "Smanji kašnjenje za  %i ms (može se podesiti)"
 
 #
 msgid "Deep Standby"
 msgstr "Isključi Drimbox"
 
-#
 msgid "Default"
-msgstr "Tvorni?ko"
+msgstr "Standardno"
 
 #
 msgid "Default Settings"
@@ -1913,20 +2006,28 @@ msgid "Default services lists"
 msgstr "Standardna lista kanala"
 
 #
-#, fuzzy
 msgid "Defaults"
-msgstr "Tvorni?ko"
+msgstr "Standardni"
 
 msgid "Define a startup service"
-msgstr ""
+msgstr "Definiši početni kanal"
 
 msgid "Define a startup service for your Dreambox."
-msgstr ""
+msgstr "Definiši početni kanal za svoj drimboks."
+
+msgid "Deinterlacer mode for interlaced content"
+msgstr "Deinterlacer način za interlaced sadržaj"
+
+msgid "Deinterlacer mode for progressive content"
+msgstr "Deinterlacer način za napredni sadržaj"
 
 #
 msgid "Delay"
 msgstr "Kašnjenje"
 
+msgid "Delay x seconds after service started"
+msgstr "Kašnjenje x sekundi pošto je kanal krenuo"
+
 #
 msgid "Delete"
 msgstr "Obriši"
@@ -1945,7 +2046,7 @@ msgstr "Brisanje neuspešno!"
 
 #
 msgid "Delete mount"
-msgstr ""
+msgstr "Obriši maunt"
 
 #
 #, python-format
@@ -1969,7 +2070,7 @@ msgid "Deselect"
 msgstr "Deselektuj"
 
 msgid "Details for plugin: "
-msgstr ""
+msgstr "Detalji dodatka:"
 
 #
 msgid "Detected HDD:"
@@ -2016,7 +2117,7 @@ msgid "Dir:"
 msgstr "Dir:"
 
 msgid "Direct playback of Youtube videos"
-msgstr ""
+msgstr "Direktno puštanje jutjub videa"
 
 #
 msgid "Direct playback of linked titles without menu"
@@ -2053,11 +2154,11 @@ msgstr "Onemogućeno"
 
 #
 msgid "Discard changes and close plugin"
-msgstr ""
+msgstr "Odbaciti promene i zatvori dodatak"
 
 #
 msgid "Discard changes and close screen"
-msgstr ""
+msgstr "Odbaciti promene i zatvori ekran"
 
 #
 msgid "Disconnect"
@@ -2092,10 +2193,10 @@ msgid "Display search results by:"
 msgstr "Prikaži rezultate traženja po:"
 
 msgid "Display your photos on the TV"
-msgstr ""
+msgstr "Prikaži svoje fotografije na TV-u"
 
 msgid "Displays movie information from the InternetMovieDatabase"
-msgstr ""
+msgstr "Prikaži informacije o filmu iz Internet filmske baze podataka"
 
 #
 #, python-format
@@ -2114,6 +2215,14 @@ msgstr ""
 "Da li stvarno želite da proverite sistem datoteka?\n"
 "To može potrajati dosta vremena!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+"Da li stvarno želite da obrišete %s\n"
+"%s?"
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2164,7 +2273,7 @@ msgstr "Želite li sada započeti drugu ručnu pretragu kanala?"
 
 #, python-format
 msgid "Do you want to download the image to %s ?"
-msgstr ""
+msgstr "Da li želite da skinete imidž u %s ?"
 
 #
 msgid "Do you want to enable the parental control feature on your dreambox?"
@@ -2262,7 +2371,7 @@ msgstr "Skidanje"
 
 #, python-format
 msgid "Download %s from Server"
-msgstr ""
+msgstr "Skidanje %s sa servera"
 
 #
 msgid "Download .NFI-Files for USB-Flasher"
@@ -2277,7 +2386,7 @@ msgid "Download Video"
 msgstr "Preuzmi video"
 
 msgid "Download files from Rapidshare"
-msgstr ""
+msgstr "Skidanje datoteka sa rapidšera"
 
 #
 msgid "Download location"
@@ -2311,6 +2420,12 @@ msgstr "Drimbox oblik podataka DVD (HDTV kompatibilan)"
 msgid "Dreambox software because updates are available."
 msgstr "Drimboks softver zato što su ažuriranja dostupna."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr "Trajanje: "
@@ -2341,6 +2456,10 @@ msgid ""
 "(in standby mode without any running recordings) to perform updates of the "
 "epg information on these channels."
 msgstr ""
+"EPG osvežavanje će automatski prebaciti na kanale koji su korisnički "
+"definisani kad je boks besposlen\n"
+"(u modu pripravnosti bez ijednog snimanja u toku)da odradi ažuriranje EPG "
+"informacija ovih kanala."
 
 #
 #, python-format
@@ -2381,7 +2500,7 @@ msgstr "Urediti naslov"
 
 #
 msgid "Edit bouquets list"
-msgstr ""
+msgstr "Uredi listi buketa"
 
 #
 msgid "Edit chapters of current title"
@@ -2404,10 +2523,10 @@ msgid "Edit settings"
 msgstr "Urediti postavke"
 
 msgid "Edit tags of recorded movies"
-msgstr ""
+msgstr "Uredi etikete snimljenih filmova"
 
 msgid "Edit tags of recorded movies."
-msgstr ""
+msgstr "Uredi etikete snimljenih filmova."
 
 #
 msgid "Edit the Nameserver configuration of your Dreambox.\n"
@@ -2442,7 +2561,7 @@ msgid "Electronic Program Guide"
 msgstr "Elektronski Programski Vodič"
 
 msgid "Emailclient is an IMAP4 e-mail viewer for the Dreambox."
-msgstr ""
+msgstr "Imejl klijent je IMAP4 preglednik e-pošte za drimboks."
 
 #
 msgid "Enable"
@@ -2452,10 +2571,25 @@ msgstr "Omogući"
 msgid "Enable /media"
 msgstr "Aktiviraj /media"
 
+msgid "Enable 1080p24 Mode"
+msgstr "Uključi 1080p24 način"
+
+msgid "Enable 1080p25 Mode"
+msgstr "Uključi 1080p25 način"
+
+msgid "Enable 1080p30 Mode"
+msgstr "Uključi 1080p30 način"
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Uključi 5V za aktivnu antenu"
 
+msgid "Enable 720p24 Mode"
+msgstr "Uključi 720p24 način"
+
+msgid "Enable Autoresolution"
+msgstr "Uključi Autorezoluciju"
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr "Uključi čarobnjak za čišćenje?"
@@ -2466,19 +2600,19 @@ msgstr "Aktiviraj filtriranje"
 
 #
 msgid "Enable HTTP Access"
-msgstr ""
+msgstr "Omogući HTTP pristup"
 
 #
 msgid "Enable HTTP Authentication"
-msgstr ""
+msgstr "Omogući HTTP autorizaciju"
 
 #
 msgid "Enable HTTPS Access"
-msgstr ""
+msgstr "Omogući HTTPS pristup"
 
 #
 msgid "Enable HTTPS Authentication"
-msgstr ""
+msgstr "Omogući HTTPS autorizaciju"
 
 #
 msgid "Enable Service Restriction"
@@ -2486,7 +2620,7 @@ msgstr "Aktiviraj zabrane kanala"
 
 #
 msgid "Enable Streaming Authentication"
-msgstr ""
+msgstr "Omogući striming autorizaciju"
 
 #
 msgid "Enable multiple bouquets"
@@ -2501,6 +2635,7 @@ msgid ""
 "Enable this to be able to access the AutoTimer Overview from within the "
 "extension menu."
 msgstr ""
+"Uključi ovo da možeš pristupiti pregledu Auto tajmera iz menia proširenja."
 
 #
 msgid "Enable timer"
@@ -2515,6 +2650,8 @@ msgid ""
 "Encoding the channel uses for it's EPG data. You only need to change this if "
 "you're searching for special characters like the german umlauts."
 msgstr ""
+"Kodiranje kanala se koristi za EPG podatke.Ovo treba samo promeniti ako "
+"tražite specijalne karaktere kao nemačke samoglasnike. "
 
 #
 msgid "Encrypted: "
@@ -2564,6 +2701,8 @@ msgid ""
 "Enigma2 Plugin to play AVI/DIVX/WMV/etc. videos from PC on your Dreambox. "
 "Needs a running VLC from www.videolan.org on your pc."
 msgstr ""
+"Enigma2 dodatak za puštanje AVI/DIVX/WMV/itd. videa sa PC-ija na vašem "
+"drimboksu.Potreban uključen VLC sa www.videolan.org na vašem PC-iju."
 
 #
 msgid ""
@@ -2582,16 +2721,8 @@ msgstr ""
 "© 2006 - Stephan Reichholf"
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Pokreni brzo premotavanje napred pri brzini"
-
-#
 msgid "Enter IP to scan..."
-msgstr ""
-
-#
-msgid "Enter Rewind at speed"
-msgstr "Pokreni premotavanje unazad pri brzini"
+msgstr "Unesi IP za traženje..."
 
 #
 msgid "Enter main menu..."
@@ -2611,7 +2742,7 @@ msgstr "Unesi lozinku:"
 
 #
 msgid "Enter pin code"
-msgstr ""
+msgstr "Unesi PIN kod"
 
 #
 msgid "Enter share directory:"
@@ -2667,6 +2798,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estonski"
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Pregled događaja"
@@ -2680,9 +2814,8 @@ msgid "Exact match"
 msgstr "Potpuno slaganje"
 
 #
-#, fuzzy
 msgid "Exceeds dual layer medium!"
-msgstr "prevazilazi dvoslojni medij!"
+msgstr "Prevazilazi dvoslojni medij!"
 
 #
 msgid "Exclude"
@@ -2693,7 +2826,7 @@ msgid "Execute \"after event\" during timespan"
 msgstr "Izvrši posle događaja,u vrem. razmaku "
 
 msgid "Execute TuxboxPlugins"
-msgstr ""
+msgstr "Izvrži Tuksboks dodatke"
 
 #
 msgid "Execution Progress:"
@@ -2716,7 +2849,7 @@ msgid "Exit editor"
 msgstr "Izađi iz editora"
 
 msgid "Exit input device selection."
-msgstr ""
+msgstr "Napusti izbor ulaznog uređaja."
 
 #
 msgid "Exit network wizard"
@@ -2770,6 +2903,8 @@ msgid ""
 "FTPBrowser allows uploading and downloading files between your Dreambox and "
 "a server using the file transfer protocol."
 msgstr ""
+"FTP pretraživač dozvoljava podizanje i skidanje datoteka između vašeg "
+"drimboksa i servera koristeći protokol transfera datoteka."
 
 #
 msgid "Factory reset"
@@ -2824,7 +2959,7 @@ msgstr "Dobavljam unose traženja"
 
 #
 msgid "Filesystem Check"
-msgstr ""
+msgstr "Provera sistema datoteka"
 
 #
 msgid "Filesystem contains uncorrectable errors"
@@ -2870,8 +3005,15 @@ msgstr "Završeno je restartovanje vaše mreže"
 msgid "Finnish"
 msgstr "Finski"
 
-msgid "First generate your skin-style with the Ai.HD-Control plugin."
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
 msgstr ""
+"Prvi dan da se događaji slože.Nijedan događaj koji počinje pre ovog datuma "
+"neće se složiti."
+
+msgid "First generate your skin-style with the Ai.HD-Control plugin."
+msgstr "Prvo generišite vaš stil maske sa Ai.HD-Control dodatkom."
 
 #
 msgid "Flash"
@@ -2889,7 +3031,14 @@ msgstr "Sledeći zadaci će biti urađeni kad pritisnete OK!"
 msgid "Format"
 msgstr "Formatiranje"
 
-#
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+"Pronađeno ukupno %d odgovarajućih događaja.\n"
+"%d Tajmera dodato i %d modifikovano, %d problema primećeno."
+
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
@@ -2899,10 +3048,6 @@ msgstr ""
 "%d Tajmera je dodato i %d izmenjeno."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Ponavljane frejma se računa za vreme neravnomernog premotavanja"
-
-#
 msgid "Frame size in full view"
 msgstr "Veličina frejma u punom izgledu"
 
@@ -2943,10 +3088,13 @@ msgid "Frisian"
 msgstr "Frizijski"
 
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
-msgstr ""
+msgstr "FritzCal pokazuje dolazne pozive vašem  Fritz!Box-u na drimboksu."
+
+msgid "Front USB Slot"
+msgstr "Prednji USB slot"
 
 msgid "Frontend for /tmp/mmi.socket"
-msgstr ""
+msgstr "Prednji završetak za /tmp/mmi.adapter"
 
 #
 #, python-format
@@ -2966,14 +3114,15 @@ msgstr ""
 " Želite li restartovati GUI sada ?"
 
 msgid "GUI that allows user to change the ftp- / telnet password."
-msgstr ""
+msgstr "GUI koji dozvoljava korisniku da promeni ftp- / telnet lozinku."
 
 msgid ""
 "GUI that allows user to change the ftp-/telnet-password of the Dreambox."
 msgstr ""
+"GUI koji dozvoljava korisniku da promeni ftp- / telnet lozinku drimboksa."
 
 msgid "GUI to change the ftp and telnet-password"
-msgstr ""
+msgstr "GUI za promenu ftp- / telnet lozinke"
 
 #
 msgid "Gaming"
@@ -2999,42 +3148,47 @@ msgstr "Opšte PCM kašnjenje"
 msgid "General PCM delay (ms)"
 msgstr "Opšte PCM kašnjenje (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+"Generiše i prikazuje TV grafikon svih korisnika koji imaju ovaj dodatak "
+"instaliran"
+
 #
 msgid "Genre"
 msgstr "Žanrovi"
 
 #
 msgid "Genuine Dreambox"
-msgstr ""
+msgstr "Originalni drimboks"
 
 msgid "Genuine Dreambox validation failed!"
-msgstr ""
+msgstr "Provera originalnosti drimboksa neuspela!"
 
 msgid "Genuine Dreambox verification"
-msgstr ""
+msgstr "Verifikacija originalnog drimboksa"
 
 #
 msgid "German"
 msgstr "Nemački"
 
 msgid "German storm information"
-msgstr ""
+msgstr "Informacija o nemačkim olujama"
 
 msgid "German traffic information"
-msgstr ""
+msgstr "Nemačke saobraćajne informacije"
 
 #
 msgid "Germany"
 msgstr "Nemačka"
 
 msgid "Get AudioCD info from CDDB and CD-Text"
-msgstr ""
+msgstr "Uzmi info audio CD-a sa CDDB i CD-tekst"
 
 msgid "Get latest experimental image"
-msgstr ""
+msgstr "Uzmi poslednji eksperimentalni imidž"
 
 msgid "Get latest release image"
-msgstr ""
+msgstr "Uzmi poslednji predstavljeni imidž"
 
 #
 msgid "Getting plugin information. Please wait..."
@@ -3042,7 +3196,7 @@ msgstr "Skidanje informacije o dodatku. Molim pričekajte..."
 
 #
 msgid "Global delay"
-msgstr ""
+msgstr "Globalno kašnjenje"
 
 #
 msgid "Goto 0"
@@ -3053,12 +3207,14 @@ msgid "Goto position"
 msgstr "Idi na poziciju"
 
 msgid "GraphMultiEPG shows a graphical timeline EPG"
-msgstr ""
+msgstr "GraphMultiEPG pokazuje grafički vrem. liniju EPG"
 
 msgid ""
 "GraphMultiEPG shows a graphical timeline EPG.\n"
 "Shows a nice overview of all running und upcoming tv shows."
 msgstr ""
+"GraphMultiEPG pokazuje grafički vrem. liniju EPG.\n"
+"Pokazuje lep prikaz svih tv šoua u toku kao i dolazećih."
 
 #
 msgid "Graphical Multi EPG"
@@ -3077,34 +3233,38 @@ msgid "Green boost"
 msgstr "Zeleno pojačanje"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
+"Growlee omogućuje vašem drimboksu da prosledi obaveštenje kao 'Snimanje "
+"počelo' na PC gde je growl pokrenut,čvor ili syslog kompatibilnom klijentu "
+"ili direktno na Ajfon koji koristi prowl."
 
-#
-msgid "Guard Interval"
-msgstr "Interval zaštite"
-
-#
-msgid "Guard interval mode"
-msgstr "Način zaštitnog intervala"
+msgid "Guard interval"
+msgstr "Zaštitni interval"
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr "Procena postojećeg tajmera baziranog na Početak/Kraj"
 
+msgid "HD Interlace Mode"
+msgstr "HD Interlace način"
+
+msgid "HD Progressive Mode"
+msgstr "HD Napredni način"
+
 #
 msgid "HD videos"
 msgstr "HD Video "
 
 #
 msgid "HTTP Port"
-msgstr ""
+msgstr "HTTP Port"
 
 #
 msgid "HTTPS Port"
-msgstr ""
+msgstr "HTTPS Port"
 
 #
 msgid "Harddisk"
@@ -3122,6 +3282,9 @@ msgstr "Isključi hard disk posle"
 msgid "Help"
 msgstr "Pomoć"
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "Skriveni mrežni SSID"
@@ -3130,13 +3293,8 @@ msgstr "Skriveni mrežni SSID"
 msgid "Hidden networkname"
 msgstr "Skriveno mrežno ime"
 
-#
-msgid "Hierarchy Information"
-msgstr "Informacije hijerarhije"
-
-#
-msgid "Hierarchy mode"
-msgstr "Mod hijerarhije"
+msgid "Hierarchy info"
+msgstr "Rangiranje info"
 
 #
 msgid "High bitrate support"
@@ -3159,7 +3317,7 @@ msgid "Horizontal"
 msgstr "Horizontalno"
 
 msgid "Hotplugging for removeable devices"
-msgstr ""
+msgstr "Vrući kontakt za pokretne uređaje"
 
 #
 msgid "How many minutes do you want to record?"
@@ -3182,7 +3340,7 @@ msgid "Hungarian"
 msgstr "Mađarski"
 
 msgid "IMAP4 e-mail viewer for the Dreambox"
-msgstr ""
+msgstr "IMAP4 preglednik e-pošte za drimboks"
 
 #
 msgid "IP Address"
@@ -3193,7 +3351,7 @@ msgid "IP:"
 msgstr "IP:"
 
 msgid "IRC Client for Enigma2"
-msgstr ""
+msgstr "IRC klijent za enigmu 2"
 
 #
 msgid "ISO file is too large for this filesystem!"
@@ -3207,11 +3365,10 @@ msgstr "ISO putanja"
 msgid "Icelandic"
 msgstr "Islandski"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3275,12 +3432,12 @@ msgstr "Uključite vaš imejl i ime (opciono) u poruku?"
 
 #
 msgid "Increase delay"
-msgstr ""
+msgstr "Povećaj kašnjenje"
 
 #
 #, python-format
 msgid "Increase delay by %i ms (can be set)"
-msgstr ""
+msgstr "Povećaj kašnjenje za  %i ms (može se podesiti)"
 
 #
 msgid "Increased voltage"
@@ -3314,13 +3471,19 @@ msgstr "Informacije"
 msgid "Init"
 msgstr "Init"
 
+msgid "Initial Fast Forward speed"
+msgstr "Početna brzina premotavanja napred"
+
+msgid "Initial Rewind speed"
+msgstr "Početna brzina premotavanja nazad"
+
 #
 msgid "Initial location in new timers"
 msgstr "Početna lokacija u novim tajmerima."
 
 #
 msgid "Initialization"
-msgstr ""
+msgstr "Inicijalizacija"
 
 #
 msgid "Initialize"
@@ -3335,10 +3498,10 @@ msgid "Input"
 msgstr "Ulaz "
 
 msgid "Input device setup"
-msgstr ""
+msgstr "Podešavanje ulaznog uređaja "
 
 msgid "Input devices"
-msgstr ""
+msgstr "Ulazni uređaji"
 
 #
 msgid "Install"
@@ -3413,10 +3576,13 @@ msgid "Internal Flash"
 msgstr "Interni fleš"
 
 msgid "Internal LAN adapter."
-msgstr ""
+msgstr "unutrašnji LAN adapter."
+
+msgid "Internal USB Slot"
+msgstr "unutrašnji USB slot"
 
 msgid "Internal firmware updater"
-msgstr ""
+msgstr "Unutrašnji apdejter firmvera"
 
 #
 msgid "Invalid Location"
@@ -3430,18 +3596,18 @@ msgstr "Izabran je nevažeči direktorijum: %s"
 #
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 304
 msgid "Invalid response from Security service pls restart again"
-msgstr ""
+msgstr "Ništavan odgovor od usluge bezbednosti,molim restartujte ponovo"
 
 #
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 132
 msgid "Invalid response from server."
-msgstr ""
+msgstr "Ništavan odgovor sa servera"
 
 #
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 177
 #, python-format
 msgid "Invalid response from server. Please report: %s"
-msgstr ""
+msgstr "Ništavan odgovor sa servera. Molim prijavite: %s"
 
 #
 msgid "Invalid selection"
@@ -3486,10 +3652,10 @@ msgid "Italian"
 msgstr "Italijanski"
 
 msgid "Italian Weather forecast on Dreambox"
-msgstr ""
+msgstr "Italijanska vremenska prognoza za drimboks"
 
 msgid "Italian Weather forecast on Dreambox from www.google.it."
-msgstr ""
+msgstr "Italijanska vremenska prognoza za drimboks sa www.google.it."
 
 #
 msgid "Italy"
@@ -3509,49 +3675,49 @@ msgid "Just Scale"
 msgstr "Samo razmeri"
 
 msgid "Kerni's BrushedAlu-HD skin"
-msgstr ""
+msgstr "Kernijeva BrushedAlu-HD maska"
 
 msgid "Kerni's DreamMM-HD skin"
-msgstr ""
+msgstr "Kernijeva DreamMM-HD maska"
 
 msgid "Kerni's Elgato-HD skin"
-msgstr ""
+msgstr "Kernijeva Elgato-HD maska"
 
 msgid "Kerni's SWAIN skin"
-msgstr ""
+msgstr "Kernijeva SWAIN maska"
 
 msgid "Kerni's SWAIN-HD skin"
-msgstr ""
+msgstr "Kernijeva SWAIN-HD maska"
 
 msgid "Kerni's UltraViolet skin"
-msgstr ""
+msgstr "Kernijeva Ultraviolet maska"
 
 msgid "Kerni's YADS-HD skin"
-msgstr ""
+msgstr "Kernijeva YADS-HD maska"
 
 msgid "Kerni's dTV-HD skin"
-msgstr ""
+msgstr "Kernijeva dTV-HD maska"
 
 msgid "Kerni's dTV-HD-Reloaded skin"
-msgstr ""
+msgstr "Kernijeva dTV-HD-reloaded maska"
 
 msgid "Kerni's dmm-HD skin"
-msgstr ""
+msgstr "Kernijeva dmm-HD maska"
 
 msgid "Kerni's dreamTV-HD skin"
-msgstr ""
+msgstr "Kernijeva dreamTV-HD maska"
 
 msgid "Kerni's simple skin"
-msgstr ""
+msgstr "Kernijeva jednostavna maska"
 
 msgid "Kerni-HD1 skin"
-msgstr ""
+msgstr "Kerni-HD1 maska"
 
 msgid "Kerni-HD1R2 skin"
-msgstr ""
+msgstr "Kerni-HD1R2 maska"
 
 msgid "Kernis HD1 skin"
-msgstr ""
+msgstr "Kernijeva HD1 maska"
 
 #
 #, python-format
@@ -3581,13 +3747,14 @@ msgstr "Mapa ključa"
 
 msgid "KiddyTimer allows to control your kids's daily tv usage."
 msgstr ""
+"KiddyTimer vam dozvoljava da kontrolišete dnevno dečije korišćenje TV-a."
 
 #
 msgid "LAN Adapter"
 msgstr "LAN adapter"
 
 msgid "LAN connection"
-msgstr ""
+msgstr "LAN veza"
 
 #
 msgid "LNB"
@@ -3617,6 +3784,13 @@ msgstr "Izbor jezika"
 msgid "Last config"
 msgstr "Zadnji konfig"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+"Poslednji dan za slaganje događaja.Događaji moraju početi pre ovog datuma da "
+"bi se složili."
+
 #
 msgid "Last speed"
 msgstr "Poslednja brzina"
@@ -3674,15 +3848,18 @@ msgstr "Link:"
 msgid "Linked titles with a DVD menu"
 msgstr "Vezani naslovi sa DVD meniem"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Lista uređaja za odlaganje"
 
 msgid "Listen and record internet radio"
-msgstr ""
+msgstr "Slušaj i snimaj Internet radio"
 
 msgid "Listen and record shoutcast internet radio on your Dreambox."
-msgstr ""
+msgstr "Slušaj i snimaj šautkast Internet radio na svom drimboksu."
 
 #
 msgid "Lithuanian"
@@ -3733,7 +3910,7 @@ msgid "Long Keypress"
 msgstr "Dugi pritisak tipke"
 
 msgid "Long filenames"
-msgstr ""
+msgstr "Dugačka imena datoteka"
 
 #
 msgid "Longitude"
@@ -3741,13 +3918,15 @@ msgstr "Geografska dužina"
 
 #
 msgid "Lower bound of timespan."
-msgstr ""
+msgstr "donja granica vrem. pomaka."
 
 #
 msgid ""
 "Lower bound of timespan. Nothing before this time will be matched. Offsets "
 "are not taken into account!"
 msgstr ""
+"donja granica vrem. pomaka.Ništa pre ovog vremena se neće poklapati. Odsečci "
+"se neće uzeti u obzir!"
 
 #
 msgid "MMC Card"
@@ -3782,13 +3961,13 @@ msgid "Manage extensions"
 msgstr "Rukuj proširenjima"
 
 msgid "Manage local files"
-msgstr ""
+msgstr "Upravljaj lokalnim datotekama"
 
 msgid "Manage logos to display at boot time or while in radio mode."
-msgstr ""
+msgstr "Upravljaj logom da se prikaže kod podizanja ili u radio modu."
 
 msgid "Manage logos to display at boottime"
-msgstr ""
+msgstr "Upravljaj logom da se prikaže kod podizanja."
 
 #
 msgid "Manage network shares"
@@ -3797,6 +3976,8 @@ msgstr "Upravljaj delovima mreže"
 msgid ""
 "Manage your music files in a database, play it with Merlin Music Player."
 msgstr ""
+"Upravljaj svojim muzičkim datotekama u bazi podataka,pusti ih sa Merlin "
+"Music plejerom."
 
 #
 msgid "Manage your network shares..."
@@ -3810,6 +3991,9 @@ msgstr "Upravljanje softverom vašeg prijemnika"
 msgid "Manual Scan"
 msgstr "Ručno skeniranje"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Ručno uneseni transponder"
@@ -3853,6 +4037,8 @@ msgid ""
 "Maximum event duration to match. If an event is longer than this ammount of "
 "time (without offset) it won't be matched."
 msgstr ""
+"Maksimalno trajanje događaja za poklapanje.Ako je događaj duži od ovog "
+"vremena (bez odsečka) neće se poklopiti."
 
 #
 msgid "Media player"
@@ -3866,12 +4052,17 @@ msgid ""
 "MediaScanner scans devices for playable media files and displays a menu with "
 "possible actions like viewing pictures or playing movies."
 msgstr ""
+"MediaScanner pretražuje uređaje sa medija datotekama i prikazuje meni sa "
+"mogućim akcijama kao gledanje slika ili puštanje filmova."
 
 msgid ""
 "Mediaplayer plays your favorite music and videos.\n"
 "Play all your favorite music and video files, organize them in playlists, "
 "view cover and album information."
 msgstr ""
+"Mediaplayer pušta vašu omiljenu muziku i video.\n"
+"Pusti svu svoju omiljenu muziku i video datoteke,sredi ih u liste za "
+"puštanje,pogledaj omot i informacije o albumu."
 
 #
 msgid "Medium is not a writeable DVD!"
@@ -3886,7 +4077,7 @@ msgid "Menu"
 msgstr "Meni"
 
 msgid "Merlin Music Player and iDream"
-msgstr ""
+msgstr "Merlin Music plejer i iDream"
 
 #
 msgid "Message"
@@ -4022,61 +4213,61 @@ msgstr "Pokreći na istok"
 
 #
 msgid "Move plugin screen"
-msgstr ""
+msgstr "Pomeri dodatak ekran"
 
 #
 msgid "Move screen down"
-msgstr ""
+msgstr "Pomeri ekran dole"
 
 #
 msgid "Move screen to the center of your TV"
-msgstr ""
+msgstr "Pomeri ekran u centar vašeg TV"
 
 #
 msgid "Move screen to the left"
-msgstr ""
+msgstr "Pomeri ekran u levo"
 
 #
 msgid "Move screen to the lower left corner"
-msgstr ""
+msgstr "Pomeri ekran ka donjem levom uglu"
 
 #
 msgid "Move screen to the lower right corner"
-msgstr ""
+msgstr "Pomeri ekran ka donjem desnom uglu"
 
 #
 msgid "Move screen to the middle of the left border"
-msgstr ""
+msgstr "Pomeri ekran ka sredini leve granice"
 
 #
 msgid "Move screen to the middle of the right border"
-msgstr ""
+msgstr "Pomeri ekran ka sredini desne granice"
 
 #
 msgid "Move screen to the right"
-msgstr ""
+msgstr "Pomeri ekran udesno"
 
 #
 msgid "Move screen to the upper left corner"
-msgstr ""
+msgstr "Pomeri ekran ka gornjem levom uglu"
 
 #
 msgid "Move screen to the upper right corner"
-msgstr ""
+msgstr "Pomeri ekran ka gornjem desnom uglu"
 
 #
 msgid "Move screen up"
-msgstr ""
+msgstr "pomeri ekran na gore"
 
 #
 msgid "Move west"
 msgstr "Pokreći na zapad"
 
 msgid "Movie information from the Online Film Datenbank (German)."
-msgstr ""
+msgstr "informacije o filmu sa Online Film Datenbank (Nemački)."
 
 msgid "Movie informations from the Online Film Datenbank"
-msgstr ""
+msgstr "informacije o filmu sa Online Film Datenbank"
 
 #
 msgid "Movie location"
@@ -4085,11 +4276,14 @@ msgstr "Lokacija filmova"
 msgid ""
 "MovieTagger adds tags to recorded movies to sort a large list of movies."
 msgstr ""
+"MovieTagger dodaje oznake na snimljene filmove da uredi veliku listu filmova."
 
 msgid ""
 "Movielist Preview creates screenshots of recordings and shows them inside "
 "the movielist."
 msgstr ""
+"Movielist Preview kreira slike ekrana od snimanja i pokazuje ih u okviru "
+"liste filmova."
 
 #
 msgid "Movielist menu"
@@ -4099,6 +4293,9 @@ msgstr "Meni liste filmova"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr "Multi EPG izbor buketa"
+
 #
 msgid "Multimedia"
 msgstr "Multimedija"
@@ -4107,6 +4304,9 @@ msgstr "Multimedija"
 msgid "Multiple service support"
 msgstr "Podrška za višestruke kanale"
 
+msgid "Multiplex"
+msgstr "Multipleks"
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4159,6 +4359,8 @@ msgid ""
 "NCID Client shows incoming voice calls promoted by any NCID server (e.g. "
 "Vodafone Easybox) on your Dreambox."
 msgstr ""
+"NCID klijent pokazuje dolazne pozive promovisane od bilo kog NCID servera "
+"(npr.Vodafone Easybox) na vašem drimboksu."
 
 #
 msgid "NEXT"
@@ -4176,6 +4378,9 @@ msgstr "Flešovanje NFI imidža završeno.Pritisni žuto za novo podizanje"
 msgid "NFS share"
 msgstr "NFS deljenje"
 
+msgid "NIM"
+msgstr "NIM"
+
 #
 msgid "NOW"
 msgstr "SADA"
@@ -4205,101 +4410,104 @@ msgstr "Postavke nejmservera"
 msgid "Nameserver settings"
 msgstr "Postavke nejmservera"
 
+msgid "Namespace"
+msgstr "Prostor za ime"
+
 msgid "Nemesis BlackBox Skin"
-msgstr ""
+msgstr "Nemesis BlackBox maska"
 
 msgid "Nemesis BlackBox Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis BlackBox maska za drimboks"
 
 msgid "Nemesis Blueline Single Skin"
-msgstr ""
+msgstr "Nemesis Blueline Single maska"
 
 msgid "Nemesis Blueline Single Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Blueline Single maska za drimboks"
 
 msgid "Nemesis Blueline Skin"
-msgstr ""
+msgstr "Nemesis Blueline maska"
 
 msgid "Nemesis Blueline Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Blueline maska za drimboks"
 
 msgid "Nemesis Blueline.Extended Skin"
-msgstr ""
+msgstr "Nemesis Blueline.Extended maska"
 
 msgid "Nemesis Blueline.Extended Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Blueline.Extended maska za drimboks"
 
 msgid "Nemesis ChromeLine Cobolt Skin"
-msgstr ""
+msgstr "Nemesis ChromeLine Cobolt maska"
 
 msgid "Nemesis ChromeLine Cobolt Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis ChromeLine Cobolt maska za drimboks"
 
 msgid "Nemesis ChromeLine Skin"
-msgstr ""
+msgstr "Nemesis ChromeLine maska"
 
 msgid "Nemesis ChromeLine Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis ChromeLine maska za drimboks"
 
 msgid "Nemesis Flatline Blue Skin"
-msgstr ""
+msgstr "Nemesis Flatline Blue maska"
 
 msgid "Nemesis Flatline Blue Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Flatline Blue maska za drimboks"
 
 msgid "Nemesis Flatline Skin"
-msgstr ""
+msgstr "Nemesis Flatline maska"
 
 msgid "Nemesis Flatline Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Flatline maska za drimboks"
 
 msgid "Nemesis GlassLine Skin"
-msgstr ""
+msgstr "Nemesis GlassLine maska"
 
 msgid "Nemesis GlassLine Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis GlassLine maska za drimboks"
 
 msgid "Nemesis Greenline Extended Skin"
-msgstr ""
+msgstr "Nemesis Greenline Extended maska"
 
 msgid "Nemesis Greenline Extended Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greenline Extended maska za drimboks"
 
 msgid "Nemesis Greenline Single Skin"
-msgstr ""
+msgstr "Nemesis Greenline Single maska"
 
 msgid "Nemesis Greenline Single Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greenline Single maska za drimboks"
 
 msgid "Nemesis Greenline Skin"
-msgstr ""
+msgstr "Nemesis Greenline maska"
 
 msgid "Nemesis Greenline Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greenline maska za drimboks"
 
 msgid "Nemesis Greyline Extended Skin"
-msgstr ""
+msgstr "Nemesis Greyline Extended maska"
 
 msgid "Nemesis Greyline Extended Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greyline Extended maska za drimboks"
 
 msgid "Nemesis Greyline Single Skin"
-msgstr ""
+msgstr "Nemesis Greyline Single maska"
 
 msgid "Nemesis Greyline Single Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greyline Single maska za drimboks"
 
 msgid "Nemesis Greyline Skin"
-msgstr ""
+msgstr "Nemesis Greyline maska"
 
 msgid "Nemesis Greyline Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis Greyline maska za drimboks"
 
 msgid "Nemesis ShadowLine Skin"
-msgstr ""
+msgstr "Nemesis ShadowLine maska"
 
 msgid "Nemesis ShadowLine Skin for the Dreambox"
-msgstr ""
+msgstr "Nemesis ShadowLine maska za drimboks"
 
 #
 msgid "Netmask"
@@ -4346,7 +4554,7 @@ msgid "Network test..."
 msgstr "Test mreže..."
 
 msgid "Network test: "
-msgstr ""
+msgstr "Test mreže:"
 
 #
 msgid "Network:"
@@ -4360,6 +4568,9 @@ msgstr "Pretraživač mreže"
 msgid "NetworkWizard"
 msgstr "Mrežni čarobnjak"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr "Nikad"
@@ -4369,7 +4580,7 @@ msgid "New"
 msgstr "Novo"
 
 msgid "New PIN"
-msgstr ""
+msgstr "Novi PIN"
 
 #
 msgid "New Zealand"
@@ -4530,6 +4741,9 @@ msgstr "Nema videa za prikazivanje"
 msgid "No wireless networks found! Please refresh."
 msgstr "Nisu pronađene bežične mreže! Molim osveži."
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4585,7 +4799,7 @@ msgid "No, just start my dreambox"
 msgstr "Ne, samo pokreni moj drimbox"
 
 msgid "No, never"
-msgstr ""
+msgstr "ne,nikad"
 
 #
 msgid "No, not now"
@@ -4624,6 +4838,12 @@ msgstr "Sever"
 msgid "Norwegian"
 msgstr "Norveški"
 
+msgid "Not after"
+msgstr "Ne posle"
+
+msgid "Not before"
+msgstr "Ne pre"
+
 #
 #, python-format
 msgid ""
@@ -4637,6 +4857,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Ne dobijam fid unose"
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4661,7 +4884,7 @@ msgstr ""
 
 #
 msgid "Number of scheduled recordings left."
-msgstr ""
+msgstr "Broj preostalih zakazanih snimanja."
 
 #
 msgid "OK"
@@ -4679,6 +4902,9 @@ msgstr "OK, ukloni druga proširenja"
 msgid "OK, remove some extensions"
 msgstr "OK,uklonite neke dodatke"
 
+msgid "ONID"
+msgstr "ONID"
+
 #
 msgid "OSD Settings"
 msgstr "Postavke OSD"
@@ -4742,14 +4968,13 @@ msgstr "Otvori dopunski meni"
 
 #
 msgid "Open plugin menu"
-msgstr ""
+msgstr "Otvori meni dodataka"
 
 #
 msgid "Optionally enter your name if you want to."
 msgstr "Opciono unesite vaše ime ako želite."
 
-#
-msgid "Orbital Position"
+msgid "Orbital position"
 msgstr "Orbitalna pozicija"
 
 #
@@ -4757,26 +4982,32 @@ msgid "Outer Bound (+/-)"
 msgstr "Krajnje ograničen (+/-)"
 
 msgid "Overlay for scrolling bars"
-msgstr ""
+msgstr "Dopuna za skrolujuće trake"
 
 #
 msgid "Override found with alternative service"
 msgstr "Poništi nađeno sa alternativnim kanalom"
 
 msgid "Overwrite configuration files ?"
-msgstr ""
+msgstr "Prepiši konfiguracione datoteke?"
 
 msgid "Overwrite configuration files during software upgrade?"
-msgstr ""
+msgstr "Prepiši konfiguracione datoteke za vreme nadograđivanja softvera?"
 
 #
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr "PCR PID"
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr "PMT PID"
+
 #
 msgid "Package list update"
 msgstr "Nadogradnja liste paketa"
@@ -4826,6 +5057,8 @@ msgid ""
 "Partnerbox allows editing a remote Dreambox's record timers and stream its "
 "TV  program."
 msgstr ""
+"Partnerbox dozvoljava uređivanje udaljenih drimboks tajmera snimanja i strim "
+"njihovih programa."
 
 #
 msgid "Password"
@@ -4840,10 +5073,10 @@ msgid "People & Blogs"
 msgstr "Ljudi & Blogovi"
 
 msgid "PermanentClock shows the clock permanently on the screen."
-msgstr ""
+msgstr "PermanentClock stalno prikazuje sat na ekranu."
 
 msgid "Persian"
-msgstr ""
+msgstr "Persijski"
 
 #
 msgid "Pets & Animals"
@@ -4895,10 +5128,10 @@ msgid "Play YouTube movies"
 msgstr "reprodukuj YouTube filmove"
 
 msgid "Play music from Last.fm"
-msgstr ""
+msgstr "Pusti muziku sa Last.fm"
 
 msgid "Play music from Last.fm."
-msgstr ""
+msgstr "Pusti muziku sa Last.fm."
 
 #
 msgid "Play next video"
@@ -4913,19 +5146,19 @@ msgid "Play video again"
 msgstr "Reprodukuj video ponovo"
 
 msgid "Play videos from PC on your Dreambox"
-msgstr ""
+msgstr "Pusti video sa PC-ja na svom drimboksu"
 
 msgid "Playback of Youtube through a PC"
-msgstr ""
+msgstr "Puštanje Jutjuba preko PC-ja"
 
 msgid "Player for Network and Internet Streams"
-msgstr ""
+msgstr "Plejer za mrežne i Internet strimove"
 
 msgid "Player for Network and Internet Streams."
-msgstr ""
+msgstr "Plejer za mrežne i Internet strimove."
 
 msgid "Plays your favorite music and videos"
-msgstr ""
+msgstr "Pušta vašu omiljenu muziku i video"
 
 #
 msgid "Please Reboot"
@@ -4937,12 +5170,14 @@ msgstr "Molim izaberite medij za traženje"
 
 #
 msgid "Please add titles to the compilation."
-msgstr ""
+msgstr "Molim,dodaj naziv kompilaciji."
 
 msgid ""
 "Please be aware, that anyone can disable the parental control, if you have "
 "not set a PIN."
 msgstr ""
+"Molim budite svesni da svako može isključiti roditeljsku kontrolu ako niste "
+"postavili PIN."
 
 #
 msgid "Please change recording endtime"
@@ -5012,7 +5247,7 @@ msgid "Please enter the correct pin code"
 msgstr "Molim unesite ispravan pin kod"
 
 msgid "Please enter the old PIN code"
-msgstr ""
+msgstr "Molim unesite stari PIN kod"
 
 #
 msgid "Please enter your email address here:"
@@ -5071,7 +5306,7 @@ msgid "Please select a subservice..."
 msgstr "Molim odaberite podkanal..."
 
 msgid "Please select an NFI file and press green key to flash!"
-msgstr ""
+msgstr "Molim izaberite NFI datoteku i pritisnite zeleno dugme da flešujete!"
 
 #
 msgid "Please select an extension to remove."
@@ -5146,9 +5381,8 @@ msgstr ""
 "dugme."
 
 #
-#, fuzzy
 msgid "Please wait (Step 2)"
-msgstr "Molim sačekajte"
+msgstr "Molim sačekajte(korak2)"
 
 #
 msgid "Please wait for activation of your network configuration..."
@@ -5217,24 +5451,20 @@ msgstr "Menadžer dodataka,pomoć"
 #
 #, python-format
 msgid "Plugin: %(plugin)s , Version: %(version)s"
-msgstr ""
+msgstr "Dodatak: %(plugin)s , Verzija: %(version)s"
 
 #
 msgid "Plugins"
 msgstr "Dodaci"
 
 msgid "PodCast streams podcasts to your Dreambox."
-msgstr ""
+msgstr "PodCast strimuje podkasts na vaš drimboks."
 
 #
 msgid "Poland"
 msgstr "Poljska"
 
 #
-msgid "Polarity"
-msgstr "Polaritet"
-
-#
 msgid "Polarization"
 msgstr "Polarizacija"
 
@@ -5270,6 +5500,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portugalski"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr "Pozicija završenog tajmera u listi tajmera"
+
 #
 msgid "Positioner"
 msgstr "Pozicioner"
@@ -5291,13 +5524,15 @@ msgid "Positioner storage"
 msgstr "Čuvanje motora"
 
 msgid "PositionerSetup helps you installing a motorized dish"
-msgstr ""
+msgstr "Podešavanje pozicionera vam pomaže instalaciju motorizovane antene"
 
 #
 msgid ""
 "Power state to change to after recordings. Select \"standard\" to not change "
 "the default behavior of enigma2 or values changed by yourself."
 msgstr ""
+"Stanje boksa da se promeni posle snimanja.Izaberi  \"standard\" da ne "
+"promeniš standardno ponašanje enigme2 ili vrednosti koje si sam promenio."
 
 #
 msgid "Power threshold in mA"
@@ -5308,17 +5543,17 @@ msgid "Predefined transponder"
 msgstr "Predefinisani transponder"
 
 msgid "Prepare another USB stick for image flashing"
-msgstr ""
+msgstr "Pripremi drugi USB stik za flešovanje imidža"
 
 #
 msgid "Preparing... Please wait"
 msgstr "Pripremam... Molim pričekajte"
 
 msgid "Press INFO on your remote control for additional information."
-msgstr ""
+msgstr "Pritisni INFO na svom daljinskom za dodatne informacije."
 
 msgid "Press MENU on your remote control for additional options."
-msgstr ""
+msgstr "Pritisni MENI na svom daljinskom za dodatne opcije."
 
 #
 msgid "Press OK on your remote control to continue."
@@ -5334,7 +5569,7 @@ msgstr "Pritisnite OK za aktiviranje postavki."
 
 #
 msgid "Press OK to collapse this host"
-msgstr ""
+msgstr "Pritisni OK da srušiš ovaj host"
 
 #
 msgid "Press OK to edit selected settings."
@@ -5346,7 +5581,7 @@ msgstr "Pritisnite OK da uredite postavke."
 
 #
 msgid "Press OK to expand this host"
-msgstr ""
+msgstr "Pritisni OK da otvoriš ovaj host"
 
 #
 #, python-format
@@ -5355,7 +5590,7 @@ msgstr "Pritisnite OK da dobijete dodatne detalje za %s"
 
 #
 msgid "Press OK to mount this share!"
-msgstr ""
+msgstr "Pritisni OK da mauntaš ovaj deo!"
 
 #
 msgid "Press OK to mount!"
@@ -5410,10 +5645,10 @@ msgid "Preview menu"
 msgstr "Pregled menia"
 
 msgid "Preview screenshots of running tv shows"
-msgstr ""
+msgstr "Prikaz ekrana šoua u toku"
 
 msgid "Preview screenshots of running tv shows."
-msgstr ""
+msgstr "Prikaz ekrana šoua u toku."
 
 #
 msgid "Primary DNS"
@@ -5460,7 +5695,7 @@ msgid "Python frontend for /tmp/mmi.socket"
 msgstr "Čeoni python za /tmp/mmi.socket"
 
 msgid "Python frontend for /tmp/mmi.socket."
-msgstr ""
+msgstr "Piton završetak za  /tmp/mmi.adapter."
 
 #
 msgid "Quick"
@@ -5483,6 +5718,9 @@ msgid "RGB"
 msgstr "RGB"
 
 msgid "RSS viewer"
+msgstr "RSS preglednik"
+
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
 msgstr ""
 
 #
@@ -5490,7 +5728,7 @@ msgid "Radio"
 msgstr "Radio"
 
 msgid "Ralink"
-msgstr ""
+msgstr "Ralink"
 
 #
 msgid "Ram Disk"
@@ -5549,18 +5787,16 @@ msgid "Reception Settings"
 msgstr "Postavke prijema"
 
 msgid "Reconstruct .ap and .sc files"
-msgstr ""
+msgstr "Rekonstruišu .ap i .sc datoteke"
 
 msgid "Reconstruct missing or corrupt .ap and .sc files of recorded movies."
-msgstr ""
+msgstr "Rekonstruišu .ap i .sc datoteke"
 
-#
 msgid "Record"
-msgstr "Snim "
+msgstr "Snimanje "
 
-#
 msgid "Record a maximum of x times"
-msgstr "Snimi maksimum  x puta"
+msgstr "Snimi najviše  x puta"
 
 #
 msgid "Record on"
@@ -5581,7 +5817,7 @@ msgstr "Snimanje"
 
 #
 msgid "Recording paths"
-msgstr ""
+msgstr "Putanje snimanja"
 
 #
 msgid "Recording(s) are in progress or coming up in few seconds!"
@@ -5595,8 +5831,11 @@ msgstr "Snimanja"
 msgid "Recordings always have priority"
 msgstr "Snimanje uvek ima prioritet"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr "Preusmeri obaveštenja na Growl,Snarl,Prowl ili Syslog"
+
 msgid "Reenter new PIN"
-msgstr ""
+msgstr "Ponovo unesi novi PIN"
 
 #
 msgid "Refresh Rate"
@@ -5620,16 +5859,16 @@ msgstr "Ponovo ubaciti"
 
 #
 msgid "Reload Black-/Whitelists"
-msgstr ""
+msgstr "Ponovo učitaj Black-/Whitelists"
 
 msgid "Remember service PIN"
-msgstr ""
+msgstr "Zapamti PIN kanala"
 
 msgid "Remember service PIN cancel"
-msgstr ""
+msgstr "Remember service PIN,otkazano"
 
 msgid "Remote timer and remote TV player"
-msgstr ""
+msgstr "Udaljeni tajmer i udaljeni TV plejer"
 
 #
 msgid "Remove"
@@ -5697,7 +5936,7 @@ msgid "Rename crashlogs"
 msgstr "Preimenuj krah zapise"
 
 msgid "Rename your movies"
-msgstr ""
+msgstr "Preimenuj svoje filmove"
 
 #
 msgid "Repeat"
@@ -5716,10 +5955,10 @@ msgid "Repeats"
 msgstr "Ponavljanja"
 
 msgid "Replace the minute input for the seek functions with a seekbar."
-msgstr ""
+msgstr "Promeni minutni ulaz za funkcije traženja sa trakom za traženje."
 
 msgid "Replace the rewind  input with a seekbar"
-msgstr ""
+msgstr "Zameni ulaz za premotavanje unazad sa trakom za traženje"
 
 #
 msgid "Require description to be unique"
@@ -5727,10 +5966,10 @@ msgstr "Zahteva jedinstven opis"
 
 #
 msgid "Required medium type:"
-msgstr ""
+msgstr "Potrebni tip medija:"
 
 msgid "Rescan"
-msgstr ""
+msgstr "Ponovo pretraži"
 
 #
 msgid "Reset"
@@ -5746,7 +5985,7 @@ msgstr "Resetuj brojanje"
 
 #
 msgid "Reset saved position"
-msgstr ""
+msgstr "Resetuj sačuvanu poziciju"
 
 #
 msgid "Reset video enhancement settings to system defaults?"
@@ -5809,11 +6048,13 @@ msgid "Restore system settings"
 msgstr "Vratite sistemske postavke"
 
 msgid "Restore your Dreambox with a USB stick"
-msgstr ""
+msgstr "Vrati svoj drimboks u prethodno stanje sa USB stikom"
 
-#
 msgid "Restrict \"after event\" to a certain timespan?"
-msgstr ""
+msgstr "Ograniči  \"posle događaja\" na određeni vrem. razmak?"
+
+msgid "Restrict to events on certain dates"
+msgstr "Ograniči na događaje na određene datume"
 
 #
 msgid "Resume from last position"
@@ -5822,7 +6063,7 @@ msgstr "Nastavite sa poslednje pozicije"
 #
 #, python-format
 msgid "Resume position at %s"
-msgstr ""
+msgstr "Nastavi poziciju od %s"
 
 #
 #. TRANSLATORS: The string "Resuming playback" flashes for a moment
@@ -5855,9 +6096,8 @@ msgstr "Brzine premotavanja nazad"
 msgid "Right"
 msgstr "Desno"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr "Kotrljanje"
 
 #
 msgid "Rotor turning speed"
@@ -5867,6 +6107,9 @@ msgstr "Brzina okretanja rotora"
 msgid "Running"
 msgstr "Pokrenuto"
 
+msgid "Running in testmode"
+msgstr "Pokrenuto u test modu"
+
 #
 msgid "Russia"
 msgstr "Rusija"
@@ -5879,9 +6122,24 @@ msgstr "Ruski"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr "SD 25/50HZ Interlace način"
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr "SD 25/50HZ Napredni način"
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr "SD 30/60HZ Interlace način"
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr "SD 30/60HZ napredni način"
+
+msgid "SID"
+msgstr "SID"
+
 #
 msgid "SINGLE LAYER DVD"
-msgstr ""
+msgstr "JEDNOSLOJNI DVD"
 
 #
 msgid "SNR"
@@ -5895,6 +6153,25 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+"SVDRP je protokol razvijen za VDR softver da kontroliše udaljeni boks.\n"
+"Dodatak samo podržava podskup SVDRP i kreće sam koristeći standardna "
+"podešavanja.\n"
+"\n"
+"Vi verovatno ne trebate ovaj dodatak i umesto njega koristite obični veb "
+"interfejs za enigmu2."
+
+msgid "SVDRP server for Enigma2"
+msgstr "SVDRP server za enigmu2"
+
 #
 msgid "Sat"
 msgstr "Sat"
@@ -5913,10 +6190,10 @@ msgstr "Postavke satelitske opreme"
 
 #
 msgid "Satellite equipment"
-msgstr ""
+msgstr "Satelitska oprema"
 
 msgid "SatelliteEquipmentControl allows you to fine-tune DiSEqC-settings"
-msgstr ""
+msgstr "SatelliteEquipmentControl vam omogućava fino podešavanje DISEqC-a"
 
 #
 msgid "Satellites"
@@ -5927,7 +6204,7 @@ msgid "Satfinder"
 msgstr "Sat tražitelj"
 
 msgid "Satfinder helps you to align your dish"
-msgstr ""
+msgstr "Satfinder vam pomaže da usmerite svoju antenu"
 
 #
 msgid "Sats"
@@ -5951,19 +6228,19 @@ msgstr "Sačuvaj plejlistu"
 
 #
 msgid "Save current delay to key"
-msgstr ""
+msgstr "Sačuvaj aktuelno kašnjenje na taster"
 
 #
 msgid "Save to key"
-msgstr ""
+msgstr "Sačuvaj na taster"
 
 #
 msgid "Save values and close plugin"
-msgstr ""
+msgstr "Sačuvaj vrednosti i zatvori dodatak"
 
 #
 msgid "Save values and close screen"
-msgstr ""
+msgstr "Sačuvaj vrednosti i zatvori ekran"
 
 #
 msgid "Scaler sharpness"
@@ -5983,7 +6260,7 @@ msgstr "Pretraži datoteke"
 
 #
 msgid "Scan NFS share"
-msgstr ""
+msgstr "Pretraži NFS delove"
 
 #
 msgid "Scan QAM128"
@@ -6070,19 +6347,21 @@ msgid "Scan band US SUPER"
 msgstr "Skeniraj band US SUPER"
 
 msgid "Scan devices for playable media files"
-msgstr ""
+msgstr "Pretraži uređaje za media datoteke"
 
 #
 msgid "Scan range"
-msgstr ""
+msgstr "Pretraži opseg"
 
 msgid ""
 "Scan your network for wireless access points and connect to them using your "
 "selected wireless device.\n"
 msgstr ""
+"Pretraži svoju mrežu za bežične pristupne tačke i poveži se s njima "
+"koristeći svoj izabrani bežični uređaj.\n"
 
 msgid "Scans default lamedbs sorted by satellite"
-msgstr ""
+msgstr "Pretraži standardne lamedbs poređane po satelitima"
 
 #
 msgid ""
@@ -6128,7 +6407,7 @@ msgid "Search strictness"
 msgstr "Striktnost traženja"
 
 msgid "Search through the EPG"
-msgstr ""
+msgstr "Traži preko EPG"
 
 #
 msgid "Search type"
@@ -6148,19 +6427,18 @@ msgstr "Traženje novih instaliranih ili uklonjenih paketa.Molim sačekajte..."
 
 #
 msgid "Searching your network. Please wait..."
-msgstr ""
+msgstr "Pretražujem vašu mrežu. Molim sačekajte..."
 
 #
 msgid "Secondary DNS"
 msgstr "Sekundarni DNS"
 
 #
-#, fuzzy
 msgid "Security service not running."
-msgstr "Izaberi kanal za dodavanje..."
+msgstr "Usluga bezbednosti nije uključena."
 
 msgid "See service-epg (and PiP) from other channels in an infobar."
-msgstr ""
+msgstr "Vidi epg kanala (i PiP) sa drugih kanala na jednoj info traci."
 
 #
 msgid "Seek"
@@ -6175,6 +6453,9 @@ msgid ""
 "Select \"exact match\" to enforce \"Match title\" to match exactly or "
 "\"partial match\" if you only want to search for a part of the event title."
 msgstr ""
+"Izaberi \"potpuno slaganje\" da nateraš  \"Složi naslov\" da se potpuno "
+"složi ili \"delimično slaganje\" ako samo želiš da tražiš deo naslova "
+"događaja."
 
 #
 msgid "Select HDD"
@@ -6213,20 +6494,20 @@ msgid "Select channel to record on"
 msgstr "Izaberi kanal za snimanje"
 
 msgid "Select desired image from feed list"
-msgstr ""
+msgstr "Izaberi željeni imidž sa fid liste"
 
 msgid "Select files for backup."
-msgstr ""
+msgstr "Izaberi datoteke za bekap."
 
 #
 msgid "Select files/folders to backup"
 msgstr "Izaberi datoteke/fascikle za bekap"
 
 msgid "Select input device"
-msgstr ""
+msgstr "Izaberi ulazni uređaj"
 
 msgid "Select input device."
-msgstr ""
+msgstr "Izaberi ulazni uređaj."
 
 #
 msgid "Select interface"
@@ -6259,7 +6540,7 @@ msgstr "Izaberite tipku koju želite podesiti u %i ms "
 
 #
 msgid "Select the location to save the recording to."
-msgstr ""
+msgstr "Izaberi lokaciju da sačuvaš snimanja."
 
 #
 msgid "Select type of Filter"
@@ -6279,7 +6560,7 @@ msgstr "Izaberi video mod"
 
 #
 msgid "Select whether or not you want to enforce case correctness."
-msgstr ""
+msgstr "Izaberi da li želiš ili ne da nateraš tačnost velikih i malih slova."
 
 #
 msgid "Select wireless network"
@@ -6313,9 +6594,8 @@ msgstr "Srpski"
 msgid "Server IP"
 msgstr "Server IP"
 
-#
 msgid "Server share"
-msgstr "Server "
+msgstr "Server deo"
 
 #
 msgid "Service"
@@ -6331,7 +6611,7 @@ msgstr "Pretraživanje kanala"
 
 #
 msgid "Service delay"
-msgstr ""
+msgstr "Kašnjenje kanala"
 
 #
 msgid "Service has been added to the favourites."
@@ -6357,6 +6637,9 @@ msgstr ""
 "Kanal nije pronađen!\n"
 "(SID nije pronađen u PAT)"
 
+msgid "Service reference"
+msgstr "Kanal referenca"
+
 #
 msgid "Service scan"
 msgstr "Skeniranje kanala"
@@ -6378,11 +6661,11 @@ msgid "Services"
 msgstr "Kanali"
 
 msgid "Set Bitstream/PCM audio delays"
-msgstr ""
+msgstr "Podesi bitstrim/PCM audio kašnjenja"
 
 #
 msgid "Set End Time"
-msgstr ""
+msgstr "Podesi završno vreme"
 
 #
 msgid "Set Voltage and 22KHz"
@@ -6395,7 +6678,7 @@ msgstr "Podesi prag dostupne interne memorije za opomenu"
 #
 #, python-format
 msgid "Set delay to %i ms (can be set)"
-msgstr ""
+msgstr "podesi kašnjenje u  %i ms (može se podesiti)"
 
 #
 msgid "Set interface as default Interface"
@@ -6411,10 +6694,10 @@ msgstr "Postavi maksim. trajanje"
 
 #
 msgid "Set this NO to disable this AutoTimer."
-msgstr ""
+msgstr "Podesi ovde NE da isključiš ovaj auto tajmer."
 
 msgid "Sets your Dreambox into Deep-Standby"
-msgstr ""
+msgstr "Postavi svoj drimboks u duboku pripravnost"
 
 #
 msgid "Setting key canceled"
@@ -6434,7 +6717,7 @@ msgstr "Mod postavki"
 
 #
 msgid "Setup for the Audio Sync Plugin"
-msgstr ""
+msgstr "Podešavanje  Audio Sync dodatka"
 
 #
 #, python-format
@@ -6442,6 +6725,8 @@ msgid ""
 "Shall the USB stick wizard proceed and program the image file %s into flash "
 "memory?"
 msgstr ""
+"Da li da USB stik čarobnjak nastavi i programira imidž datoteku %s u fleš "
+"memoriju?"
 
 #
 msgid "Sharpness"
@@ -6452,20 +6737,24 @@ msgid "Short Movies"
 msgstr "Kratki filmovi"
 
 msgid "Short filenames"
-msgstr ""
+msgstr "Kratka imena datoteka"
 
 #
 msgid "Should this AutoTimer be restricted to a timespan?"
-msgstr ""
+msgstr "Da li ograničiti ovaj auto tajmer na vremenski razmak?"
 
 #
 msgid "Should this AutoTimer only match up to a certain event duration?"
 msgstr ""
+"Da li ovaj auto tajmer treba samo da se složi sa trajanjem određenog "
+"događaja?"
 
 #
 msgid ""
 "Should timers created by this AutoTimer be recorded to a custom location?"
 msgstr ""
+"Trebaju li tajmeri kreirani od ovog auto tajmera biti snimljeni na "
+"uobičajenu lokaciju?"
 
 #
 msgid "Show Info"
@@ -6485,12 +6774,15 @@ msgstr "Prikaži trepćući sat na displeju tokom snimanja"
 
 #
 msgid "Show event-progress in channel selection"
-msgstr ""
+msgstr "Pokaži napredak događaja u izboru kanala"
 
 #
 msgid "Show in extension menu"
 msgstr "Prikaži u meniu proširenja"
 
+msgid "Show info screen"
+msgstr "Pokaži info ekran"
+
 #
 msgid "Show infobar on channel change"
 msgstr "Prikaži info traku na promeni kanala"
@@ -6503,6 +6795,9 @@ msgstr "Prikaži info traku pri promeni događaja"
 msgid "Show infobar on skip forward/backward"
 msgstr "Prikaži info traku na preskakanju napred/nazad"
 
+msgid "Show notification on conflicts"
+msgstr "Pokaži obaveštenje kod problema "
+
 #
 msgid "Show positioner movement"
 msgstr "Prikaži kretanje motora"
@@ -6520,24 +6815,26 @@ msgid "Show the tv player..."
 msgstr "Prikaži tv plejer..."
 
 msgid "Show webcam pictures on your TV Screen"
-msgstr ""
+msgstr "Prikaži slike sa veb kamer na vašem TV ekranu"
 
 msgid ""
 "Shows a list containing the zapping-history and allows user to zap to the "
 "entries or to modify them."
 msgstr ""
+"Prikaži listu koja sadrži zap istoriju i dozvoljava korisniku da prebaci na "
+"unose ili da ih modifikuje."
 
 msgid "Shows a list of recent zap entries"
-msgstr ""
+msgstr "Prikaži listu nedavnih prebacivanja"
 
 msgid "Shows average bitrate of video and audio"
-msgstr ""
+msgstr "Prikaži prosečni bitrejt videa i audia"
 
 msgid "Shows statistics of watched services"
-msgstr ""
+msgstr "Prikaži statistiku gledanih kanala"
 
 msgid "Shows the clock permanently on the screen"
-msgstr ""
+msgstr "Prikazuje sat stalno na ekranu"
 
 #
 msgid "Shows the state of your wireless LAN connection.\n"
@@ -6572,14 +6869,14 @@ msgid "Simple"
 msgstr "Jednostavno"
 
 msgid "Simple IRC GroupChat client for e2 #dm8000-vip channel"
-msgstr ""
+msgstr "Jednostavni IRC grupni čet klijent za e2 #dm8000-vip kanal"
 
 #
 msgid "Simple titleset (compatibility for legacy players)"
 msgstr "Jednostavne postavke naslova (kompatibilnost za legacy plejere)"
 
 msgid "SimpleRSS allows reading RSS newsfeeds on your Dreambox."
-msgstr ""
+msgstr "Jednostavni RSS omogućava čitanje vesti sa fida na vašem drimboksu."
 
 #
 msgid "Single"
@@ -6606,7 +6903,7 @@ msgid "Skin"
 msgstr "Maska"
 
 msgid "SkinSelector shows a menu with selectable skins"
-msgstr ""
+msgstr "SkinSelector prikazuje meni sa mogućim maskama"
 
 #
 msgid "Skins"
@@ -6654,7 +6951,7 @@ msgid "Software management"
 msgstr "Upravljač softvera "
 
 msgid "Software manager setup"
-msgstr ""
+msgstr "Podešavanje upravljača softvera"
 
 #
 msgid "Software restore"
@@ -6665,10 +6962,10 @@ msgid "Software update"
 msgstr "Nadogradnja softvera"
 
 msgid "SoftwareManager manages your Dreambox software"
-msgstr ""
+msgstr "Upravljač softvera upravlja vašim drimboks softverom"
 
 msgid "Softwaremanager information"
-msgstr ""
+msgstr "Informacije upravljača softvera"
 
 #
 msgid "Some plugins are not available:\n"
@@ -6765,17 +7062,20 @@ msgstr "Spreman / restart"
 #
 #, python-format
 msgid "Standby Fan %d PWM"
-msgstr ""
+msgstr "Ventilator spreman %d PWM"
 
 #
 #, python-format
 msgid "Standby Fan %d Voltage"
-msgstr ""
+msgstr "Ventilator spreman %d Voltage"
 
 #
 msgid "Start Webinterface"
 msgstr "Pokreni vebinterfejs"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr "Pokreni lako svoje multimedijalne dodatke PVR dugmetom."
+
 #
 msgid "Start from the beginning"
 msgstr "Počnite od početka"
@@ -6805,7 +7105,7 @@ msgid "Std. Feeds"
 msgstr "Std. fidovi"
 
 msgid "Step by step network configuration"
-msgstr ""
+msgstr "Mrežna konfiguracija korak po korak"
 
 #
 msgid "Step east"
@@ -6870,10 +7170,10 @@ msgid "Stored position"
 msgstr "Snimljene pozicije"
 
 msgid "Stream podcasts"
-msgstr ""
+msgstr "Strim podkast"
 
 msgid "Streaming modules for the orf.at iptv web page."
-msgstr ""
+msgstr "Striming modula sa orf.at iptv veb stranice."
 
 #
 msgid "Subservice list..."
@@ -6899,6 +7199,9 @@ msgstr "Ned"
 msgid "Sunday"
 msgstr "Nedelja"
 
+msgid "Support \"Fast Scan\"?"
+msgstr "Podržava \"Brzu pretragu\"?"
+
 #
 msgid "Swap Services"
 msgstr "Zameni kanale"
@@ -6921,14 +7224,9 @@ msgstr "prebaci na prethodni podkanal "
 
 #
 msgid "Switchable tuner types:"
-msgstr ""
-
-#
-msgid "Symbol Rate"
-msgstr "Simbol rata"
+msgstr "Zamenljivi tipovi tjunera:"
 
-#
-msgid "Symbolrate"
+msgid "Symbol rate"
 msgstr "Simbol rata"
 
 #
@@ -6944,10 +7242,19 @@ msgstr "PREVODILAC_INFO"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS datoteka je prevelika za ISO9660 nivo 1!"
 
+msgid "TSID"
+msgstr "TSID"
+
+msgid "TV Charts of all users"
+msgstr "TV mape svih korisnika"
+
 #
 msgid "TV System"
 msgstr "TV Sistem"
 
+msgid "TXT PID"
+msgstr "TXT PID"
+
 #
 msgid "Table of content for collection"
 msgstr "Tabela sadržaja za kolekciju"
@@ -6966,7 +7273,7 @@ msgstr "Oznake"
 
 #
 msgid "Tags the Timer/Recording will have."
-msgstr ""
+msgstr "Oznake koje će imati Tajmer/Snimanje"
 
 #
 msgid "Tags: "
@@ -6980,6 +7287,9 @@ msgstr "Tajvan"
 msgid "Temperature and Fan control"
 msgstr "Kontrola temperature i ventilatora"
 
+msgid "Temperature-dependent fan control."
+msgstr "Kontrola vent. zavisna od temperature."
+
 #
 msgid "Terrestrial"
 msgstr "Zemaljski"
@@ -6999,7 +7309,7 @@ msgstr "Testiraj tip"
 #
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 80
 msgid "Test again"
-msgstr ""
+msgstr "Testiraj ponovo"
 
 #
 msgid "Test mode"
@@ -7010,7 +7320,7 @@ msgid "Test the network configuration of your Dreambox.\n"
 msgstr "Testirajte mrežnu konfiguraciju vašeg drimboxa.\n"
 
 msgid "Test your DiSEqC equipment"
-msgstr ""
+msgstr "Testiraj svoju DISEqC opremu"
 
 #
 msgid "Test-Messagebox?"
@@ -7047,6 +7357,9 @@ msgid ""
 "has dropped below a definable threshold.You can use this wizard to remove "
 "some plugins."
 msgstr ""
+"Čarobnjak za čišćenje vas obaveštava kad unutrašnja slobodna memorija vašeg "
+"drimboksa padne ispod definisanog nivoa.Možete koristiti ovaj čarobnjak da "
+"uklonite neke dodatke."
 
 #
 msgid ""
@@ -7066,49 +7379,70 @@ msgid ""
 "The box automatically wakes up for recordings or at the end of the sleep "
 "time. You therefore don't have to wait until it is on again."
 msgstr ""
+"Elektro Power Save dodatak stavlja boks iz pripravnosti u mod spavanja "
+"(Duboka pripravnost) u određena vremena.\n"
+"Ovo se jedino dešava ako je boks u stanju pripravnosti i nijedno snimanje "
+"nije u toku ili zakazano u narednih 20 min.\n"
+"Boks se automatski budi za snimanja na kraju vremena spavanja.Vi naravno ne "
+"morate čekati dok je ponovo uključen."
 
 msgid ""
 "The Hotplug plugin notifies your system of newly added or removed devices."
 msgstr ""
+"Hotplug dodatak obaveštava vaš sistem o novo dodatim ili uklonjenim "
+"uređajima."
 
 #
 msgid ""
 "The NetworkWizard extension is not installed!\n"
 "Please install it."
 msgstr ""
+"NetworkWizard proširenje nije instalirano!\n"
+"molim instalirajte ga."
 
 msgid "The PIN code has been changed successfully."
-msgstr ""
+msgstr "PIN kod je uspešno promenjen."
 
 msgid "The PIN codes you entered are different."
-msgstr ""
+msgstr "PIN kodovi koji ste uneli su različiti. "
 
 msgid ""
 "The PicturePlayer displays your photos on the TV.\n"
 "You can view them as thumbnails or slideshow."
 msgstr ""
+"Preglednik slika prikazuje vaše slike na TV-u.\n"
+"Možete ih videti kao male datoteke ili slajd šou."
 
 msgid ""
 "The Satfinder plugin helps you to align your dish.\n"
 "It shows you informations about signal rate and errors."
 msgstr ""
+"Satfinder dodatak vam pomaže da usmerite svoju antenu.\n"
+"On vam pokazuje informacije oko jačine signala i grešaka. "
 
 msgid ""
 "The SkinSelector shows a menu with selectable skins.\n"
 "It's now easy to change the look and feel of your Dreambox."
 msgstr ""
+"SkinSelector vam pokazuje meni sa izabranim maskama.\n"
+"Sada je lako da promenite izgled i osećaj vašeg drimboksa."
 
 msgid ""
 "The SoftwareManager manages your Dreambox software.\n"
 "It's easy to update your receiver's software, install or remove plugins or "
 "even backup and restore your system settings."
 msgstr ""
+"SoftwareManager upravlja vašim drimboks softverom.\n"
+"Sada je lako da ažurirate softver vašeg prijemnika,instalirate ili uklonite "
+"dodatke ili čak uradite bekap ili vraćanje vaših sistemskih postavki."
 
 #
 msgid ""
 "The Softwaremanagement extension is not installed!\n"
 "Please install it."
 msgstr ""
+"Softwaremanagement proširenje nije instalirano!\n"
+"molim instalirajte ga."
 
 #
 msgid ""
@@ -7132,22 +7466,28 @@ msgid ""
 "The USB stick was prepared to be bootable.\n"
 "Now you can download an NFI image file!"
 msgstr ""
+"USB stik je bio pripremljen da bude butabiloan.\n"
+"Sada možete skinuti NFI imidž datoteku!"
 
 msgid ""
 "The VideoEnhancement plugin provides advanced video enhancement settings."
 msgstr ""
+"VideoEnhancement dodatak obezbeđuje napredno podešavanje video poboljšanja."
 
 msgid ""
 "The VideoTune helps fine-tuning your tv display.\n"
 "You can control brightness and contrast of your tv."
 msgstr ""
+"VideoTune vam pomaže za fino podešavanje vašeg TV ekrana.\n"
+"Možete kontrolisati osvetljenje i kontrast vašeg TV-a."
 
 msgid "The Videomode plugin provides advanced video mode settings."
-msgstr ""
+msgstr "Videomode dodatak obezbeđuje napredna video podešavanja."
 
 msgid ""
 "The WirelessLan plugin helps you configuring your WLAN network interface."
 msgstr ""
+" WirelessLan dodatak vam pomaže konfiguraciju vašeg WLAN mrežnog interfejsa."
 
 #
 msgid "The backup failed. Please choose a different backup location."
@@ -7157,6 +7497,7 @@ msgstr "Neuspešna sigurnosna kopija. Molim odaberite drugu lokaciju."
 msgid ""
 "The counter can automatically be reset to the limit at certain intervals."
 msgstr ""
+"Brojač može automatski biti resetovan na na limit u određenim intervalima."
 
 #
 #, python-format
@@ -7172,6 +7513,8 @@ msgid ""
 "The editor to be used for new AutoTimers. This can either be the Wizard or "
 "the classic editor."
 msgstr ""
+"Urednik za korišćenje za nove auto tajmere. Ovo može biti ili čarobnjak ili "
+"klasični urednik."
 
 #
 #, python-format
@@ -7219,7 +7562,7 @@ msgid "The match attribute is mandatory."
 msgstr "Atribut slaganja je obavezan."
 
 msgid "The md5sum validation failed, the file may be corrupted!"
-msgstr ""
+msgstr "md5sum provera validnosti neuspela,datoteka može biti oštećena!"
 
 #
 msgid "The package doesn't contain anything."
@@ -7244,7 +7587,7 @@ msgid "The results have been written to %s."
 msgstr "Rezultati su zapisani u %s."
 
 msgid "The skin is in KingSize-definition 1024x576"
-msgstr ""
+msgstr "Maska je u kingsajz definiciji 1024x576"
 
 #
 msgid "The sleep timer has been activated."
@@ -7286,6 +7629,8 @@ msgid ""
 "The wizard found a configuration backup. Do you want to restore your old "
 "settings from %s?"
 msgstr ""
+"Čarobnjak je pronašao bekap konfiguracije.Da li želite da vratite vaše stare "
+"postavke sa %s?"
 
 #
 msgid "The wizard is finished now."
@@ -7341,6 +7686,8 @@ msgid ""
 "There's a certificate update available for your dreambox. Would you like to "
 "apply this update now?"
 msgstr ""
+"Postoji provereno ažuriranje dostupno za vaš drimboks.Da li želite da sada "
+"primenite ovo ažuriranje? "
 
 #
 msgid ""
@@ -7368,6 +7715,8 @@ msgid ""
 "This is a name you can give the AutoTimer. It will be shown in the Overview "
 "and the Preview."
 msgstr ""
+"Ovo je ime koje možete dati auto tajmeru.Biće prikazano u opštem i kratkom "
+"pregledu."
 
 #
 msgid "This is step number 2."
@@ -7378,6 +7727,8 @@ msgid ""
 "This is the delay in hours that the AutoTimer will wait after a search to "
 "search the EPG again."
 msgstr ""
+"Ovo je razmak u satima koje će auto tajmer čekati od traženja EPG do "
+"ponovnog traženja."
 
 #
 msgid "This is the help screen. Feed me with something to display."
@@ -7389,6 +7740,9 @@ msgid ""
 "german umlauts can be tricky as you have to know the encoding the channel "
 "uses."
 msgstr ""
+"Ovo že se tražiti u naslovima događaja.Primedba je da tržanje npr. nemačkih "
+"samoglasnika može biti nepouzdano jer morate znati kodiranje koje kanal "
+"koristi. "
 
 msgid ""
 "This plugin creates a USB stick which can be used to update the firmware of "
@@ -7399,6 +7753,13 @@ msgid ""
 "If you already have a prepared bootable USB stick, please insert it now. "
 "Otherwise plug in a USB stick with a minimum size of 64 MB!"
 msgstr ""
+"dodatak kreira USB stik koji se može koristiti za ažuriranje fiemvera vašeg "
+"drimboksa bez potrebe za mrežom ili WLAN vezom.\n"
+"Prvo,USB stik treba biti pripremljen da bi postao butabilan.\n"
+"U sledećem koraku,neki NFI imidž može biti skinut sa servera za ažuriranje i "
+"sačuvan na USB stiku.\n"
+"Ako ste već ranije pripremili butabilni USB stik,molimo da ga sad ubacite. U "
+"svakom slučaju uključite USB stik minimalne veličine 64MB!"
 
 #
 msgid "This plugin is installed."
@@ -7419,11 +7780,15 @@ msgstr "Ovaj dodatak će biti uklonjen."
 #
 msgid "This setting controls the behavior when a timer matches a found event."
 msgstr ""
+"Ovo podešavanje kontroliše ponašanje kad se tajmer slaže sa nađenim "
+"događajem."
 
 msgid ""
 "This system tool is internally used to program the hardware with firmware "
 "updates."
 msgstr ""
+"Ovaj sistemski alat je interno korišćen da programira hardver sa "
+"ažuriranjima fiemvera."
 
 #
 msgid ""
@@ -7493,6 +7858,9 @@ msgid ""
 "event that conflicts with an existing timer it will not ignore this event "
 "but add it disabled."
 msgstr ""
+"Ovo prebacuje ponašanje kod konflikta tajmera.Ako se jedan auto tajmer slaže "
+"sa događajem koji je u konfliktu sa postojećim tajmerom,neće ga ignorisati "
+"već dodati kao onemogućen."
 
 #
 msgid "Three"
@@ -7520,11 +7888,11 @@ msgstr "Vreme"
 
 #
 msgid "Time in minutes to append to recording."
-msgstr ""
+msgstr "Vreme u minutima da se doda snimanju."
 
 #
 msgid "Time in minutes to prepend to recording."
-msgstr ""
+msgstr "Vreme u minutima da se doda pre snimanja."
 
 #
 msgid "Time/Date Input"
@@ -7612,6 +7980,7 @@ msgstr "Način postavki naziva"
 
 msgid "To be used as simple downloading application by other Plugins."
 msgstr ""
+"Da se koristi kao jednostavna aplikacija za skidanje od drugih dodataka."
 
 msgid ""
 "To update your Dreambox firmware, please follow these steps:\n"
@@ -7621,6 +7990,12 @@ msgid ""
 "for 10 seconds.\n"
 "3) Wait for bootup and follow instructions of the wizard."
 msgstr ""
+"Da ažurirate vaš drimboks softver,molim pratite sledeće korake:\n"
+"1)Ugasite boks na prekidaču otpozadi i uverite se da je butabilni USB stik "
+"uključen.\n"
+"2)Uključite prekidač otpozadi i držite tipku DOLE na prednoj ploči "
+"pritisnutu 10 sekundi.\n"
+"3)Sačekajte podizanje i pratite instrukcije čarobnjaka."
 
 #
 msgid "Today"
@@ -7655,7 +8030,7 @@ msgid "Track"
 msgstr "Trag"
 
 msgid "TrafficInfo shows german traffic information."
-msgstr ""
+msgstr "TrafficInfo pokazuje nemačke saobraćajne informavije."
 
 #
 msgid "Translation"
@@ -7666,10 +8041,6 @@ msgid "Translation:"
 msgstr "Prevod:"
 
 #
-msgid "Transmission Mode"
-msgstr "Mod transmisije"
-
-#
 msgid "Transmission mode"
 msgstr "Mod transmisije"
 
@@ -7678,10 +8049,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Tip Transpondera"
-
-#
 msgid "Travel & Events"
 msgstr "Putovanje & Dogadjaji"
 
@@ -7751,7 +8118,7 @@ msgstr "Status tjunera"
 
 #
 msgid "Tuner type"
-msgstr ""
+msgstr "Tip tjunera"
 
 #
 msgid "Turkish"
@@ -7813,9 +8180,12 @@ msgstr "Poništi instaliranje"
 msgid "Undo uninstall"
 msgstr "Poništi deinstalaciju"
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
-msgstr ""
+msgstr "Neupravljan ključ"
 
 #
 msgid "Unicable"
@@ -7841,15 +8211,20 @@ msgstr "SAD"
 msgid "Universal LNB"
 msgstr "Univerzalni LNB"
 
-msgid "Unknown network adapter."
+msgid "Unknown"
 msgstr ""
 
+msgid "Unknown network adapter."
+msgstr "Nepoznat mrežni adapter."
+
 #
 msgid ""
 "Unless this is enabled AutoTimer will NOT automatically look for events "
 "matching your AutoTimers but only when you leave the GUI with the green "
 "button."
 msgstr ""
+"Dok je ovo uključeno auto tajmer neće automatski tražiti događaje koji se "
+"slažu sa vašim auto tajmerima sem kad napustite GUI sa zelenim dugmetom."
 
 #
 msgid "Unmount failed"
@@ -7860,16 +8235,15 @@ msgid "Unsupported"
 msgstr "Nepodržano"
 
 msgid "UnwetterInfo shows german storm information."
-msgstr ""
+msgstr "UnwetterInfo prikazuje nemačke informacije o olujama."
 
 #
 msgid "Update"
 msgstr "Ažuriranje"
 
 #
-#, fuzzy
 msgid "Update done..."
-msgstr "Ažuriranje"
+msgstr "Ažuriranje završeno..."
 
 #
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 170
@@ -7877,17 +8251,20 @@ msgid ""
 "Update done... The genuine dreambox test will now be rerun and should not "
 "ask you to update again."
 msgstr ""
+"Ažuriranje završeno...Test originalnosti drimboksa će biti ponovo pokrenut i "
+"neće vas pitati da ponovo ažurirate."
 
 #
-#, fuzzy
 msgid "Updatefeed not available."
-msgstr "ažuriranja dostupna."
+msgstr "Fid ažuriranja nije dostupan."
 
 #
 # File: tmp/enigma2_plugins/genuinedreambox/src/plugin.py, line: 150
 msgid ""
 "Updating failed. Nothing is broken, just the update couldn't be applied."
 msgstr ""
+"Ažuriranje neuspešno.Ništa nije pokvareno,samo ažuriranje ne može biti "
+"primenjeno."
 
 #
 msgid "Updating finished. Here is the result:"
@@ -7898,9 +8275,8 @@ msgid "Updating software catalog"
 msgstr "Ažuriranje kataloga softvera"
 
 #
-#, fuzzy
 msgid "Updating, please wait..."
-msgstr "Molim sačekajte"
+msgstr "Ažuriram,molim sačekajte..."
 
 #
 msgid "Updating... Please wait... This can take some minutes..."
@@ -7920,13 +8296,15 @@ msgstr "Nadograđujem drimbox... Molim čekajte"
 
 #
 msgid "Upper bound of timespan."
-msgstr ""
+msgstr "gornja granica vrem. razmaka."
 
 #
 msgid ""
 "Upper bound of timespan. Nothing after this time will be matched. Offsets "
 "are not taken into account!"
 msgstr ""
+"Gornja granica vremenskog razmaka.Ništa posle ovog vremena neće se slagati."
+"Odsečci nisu uzeti u obzir!"
 
 #
 msgid "Use"
@@ -7953,11 +8331,7 @@ msgid "Use a gateway"
 msgstr "Koristi prolaz"
 
 msgid "Use and control multiple Dreamboxes with different RCs."
-msgstr ""
-
-#
-msgid "Use non-smooth winding at speeds above"
-msgstr "Koristi premotavanje sa brzinama iznad "
+msgstr "koristi i kontroliši više drimboksova sa različitim daljinskim."
 
 #
 msgid "Use power measurement"
@@ -7965,7 +8339,7 @@ msgstr "Koristi merenje snage"
 
 #
 msgid "Use the Networkwizard to configure selected network adapter"
-msgstr ""
+msgstr "Koristi mrežni čarobnjak da konfigurišeš izabrani mrežni adapter"
 
 #
 msgid "Use the Networkwizard to configure your Network\n"
@@ -7990,10 +8364,10 @@ msgstr ""
 "Posle toga, pritisnite OK."
 
 msgid "Use this input device settings?"
-msgstr ""
+msgstr "Koristi postavke ovog ulaznog uređaja?"
 
 msgid "Use this settings?"
-msgstr ""
+msgstr "Koristi ove postavke?"
 
 #
 msgid "Use this video enhancement settings?"
@@ -8040,14 +8414,24 @@ msgid "VMGM (intro trailer)"
 msgstr "VMGM (unutrašnji trejler)"
 
 msgid "Vali-XD skin"
-msgstr ""
+msgstr "Vali-XD maska"
+
+msgid "Vali.HD.atlantis skin"
+msgstr "Vali.HD.atlantis maska"
 
 msgid "Vali.HD.nano skin"
-msgstr ""
+msgstr "Vali-XD.nano maska"
+
+msgid "Vali.HD.warp skin"
+msgstr "Vali.HD.warp maska"
 
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
+"Proveri autentičnost svog drimboksa pokrećući genuine dreambox  dodatak!"
+
+msgid "Verifying your internet connection..."
+msgstr "Provera vaše internet veze..."
 
 #
 msgid "Vertical"
@@ -8065,6 +8449,9 @@ msgstr "Čarobnjak za fino video podešavanje"
 msgid "Video Output"
 msgstr "Video izlaz"
 
+msgid "Video PID"
+msgstr "Video PID"
+
 #
 msgid "Video Setup"
 msgstr "Video postavke"
@@ -8106,13 +8493,13 @@ msgid "Video mode selection."
 msgstr "Izbor video načina"
 
 msgid "Video streaming from the orf.at web page"
-msgstr ""
+msgstr "Video striming sa orf.at veb stranice"
 
 msgid "VideoEnhancement provides advanced video enhancement settings"
-msgstr ""
+msgstr "VideoEnhancement obezbeđuje napredna podešavanja video poboljšanja"
 
 msgid "VideoTune helps fine-tuning your tv display"
-msgstr ""
+msgstr "VideoTune pomaže finom podešavanju vašeg tv ekrana"
 
 #
 msgid "Videobrowser exit behavior:"
@@ -8123,7 +8510,7 @@ msgid "Videoenhancement Setup"
 msgstr "Podešavanje video poboljšavanja"
 
 msgid "Videomode provides advanced video mode settings"
-msgstr ""
+msgstr "Videomode obezbeđuje napredna podešavanja u video modu"
 
 #
 msgid "Videoplayer stop/exit behavior:"
@@ -8134,10 +8521,10 @@ msgid "View Count"
 msgstr "Vidi brojač"
 
 msgid "View Google maps"
-msgstr ""
+msgstr "Vidi Gugl mape"
 
 msgid "View Google maps with your Dreambox."
-msgstr ""
+msgstr "Vidi Gugl mape sa svojim drimboksom."
 
 #
 msgid "View Movies..."
@@ -8181,7 +8568,7 @@ msgstr "Vidi listu mogućih EPG proširenja"
 
 #
 msgid "View list of available Satellite equipment extensions."
-msgstr ""
+msgstr "Vidi listu mogućih proširenja satelitske opreme."
 
 #
 msgid "View list of available communication extensions."
@@ -8244,12 +8631,14 @@ msgid "Virtual KeyBoard"
 msgstr "Virtuelna tastatura"
 
 msgid "Visualization for the European Installation Bus"
-msgstr ""
+msgstr "Vizuelizacija za Evropski instalacioni bus"
 
 msgid ""
 "Visualize and control your lights, dimmers, blinds, thermostats etc. through "
 "EIB/KNX. (linknx server required)"
 msgstr ""
+"Pregledaj i kontroliši svoja svetla,dimere,kapke,termostate itd. kroz  EIB/"
+"KNX. (potreban linknx server )"
 
 #
 msgid "Voltage mode"
@@ -8268,10 +8657,10 @@ msgid "WEP"
 msgstr "WEP"
 
 msgid "WLAN adapter."
-msgstr ""
+msgstr "WLAN adapter."
 
 msgid "WLAN connection"
-msgstr ""
+msgstr "WLAN veza"
 
 #
 msgid "WPA"
@@ -8302,13 +8691,16 @@ msgid "Warn if free space drops below (kB):"
 msgstr "Upozorii ako slobodan prostor padne ispod (kB):"
 
 msgid "Watch streams from ZDF Mediathek"
-msgstr ""
+msgstr "Gledaj strimove iz ZDF Mediateke"
 
 msgid "WeatherPlugin shows weatherforecasts on your Dreambox."
-msgstr ""
+msgstr "WeatherPlugin pokazuje vremensku prognozu na vašem drimboksu."
 
 msgid "Weatherforecast on your Dreambox"
-msgstr ""
+msgstr "Vremenska prognoza na vašem drimboksu"
+
+msgid "Web-Bouquet-Editor for PC"
+msgstr "Veb uređivač buketa za PC"
 
 #
 msgid "Webinterface"
@@ -8428,6 +8820,12 @@ msgid ""
 "cleaned up.\n"
 "You can use this wizard to remove some extensions.\n"
 msgstr ""
+"Dobrodošli u čarobnjak za čišćenje.\n"
+"\n"
+"Primetili smo da je vaša dostupna unutrašnja memorija pala ispod 2MB.\n"
+"Da bi osigurali stabilan rad drimboksa,interna memorija treba biti "
+"očišćena.\n"
+"Možete koristiti ovaj čarobnjak da uklonite neka proširenja.\n"
 
 #
 msgid ""
@@ -8486,11 +8884,20 @@ msgstr "Šta želite skenirati?"
 msgid "What to do with submitted crashlogs?"
 msgstr "Šta činiti sa poslatim krah zapisima?"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+"Kad je podržano \"Brzo traženje\" tip kanala je ignorisan.Ne treba ovo da "
+"uključujete dok vaš imidž ne podržava \"Brzo traženje\" i vi ga koristite."
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
 "timer with the same description already exists in the timer list."
 msgstr ""
+"Kada je ova opcija uključena auto tajmer se neće složiti sa događajima gde "
+"drugi tajmer sa istim opisom već postoji u listi tajmera. "
 
 #
 msgid ""
@@ -8528,10 +8935,21 @@ msgstr "Bežična mreža"
 msgid "Wireless Network State"
 msgstr "Status bežične mreže"
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
 msgstr ""
+"Sa AntiScrollbar-om možete zatvoriti dosadne prekidane linije (npr. na "
+"kanalima vesti)."
 
 msgid ""
 "With DVDBurn you can make compilations of records from your Dreambox hard "
@@ -8540,38 +8958,52 @@ msgid ""
 "a standard-compliant DVD that can be played on conventinal DVD players.\n"
 "HDTV recordings can only be burned in proprietary dreambox format."
 msgstr ""
+"Sa  DVDBurn-om možete praviti kompilacije od snimanja sa hard diska vašeg "
+"drimboksa.\n"
+"Opciono možete dodati prilagođene menie.Možete snimiti kompilacije na "
+"standardno usaglašen DVD koji može biti puštan na konvencionalnim DVD "
+"plejerima.\n"
+"HDTV snimanja mogu biti rezana samo u sopstvenom drimboks formatu."
 
 msgid "With EPGSearch you can search through the EPG and create timers."
-msgstr ""
+msgstr "Sa EPGSearch vi možete pretraživati kroz EPG i kreirati tajmere."
 
 msgid "With Genuine Dreambox you can verify the authenticity of your Dreambox."
-msgstr ""
+msgstr "Sa Genuine Dreambox možete verifikovati autentičnost vašeg drimboksa."
 
 msgid ""
 "With IMDb you can download and displays movie information (rating, poster, "
 "cast, synopsis etc.) about the selected event."
 msgstr ""
+"Sa IMDb možete skidati i prikazivati informacije o filmu (rejting,poster,"
+"uloge,scenario itd.) od izabranog događaja."
 
 msgid "With MovieRetitle you can rename your movies."
-msgstr ""
+msgstr "Sa MovieRetitle vi možete preimenovati vaše filmove."
 
 msgid ""
 "With MyTube you can play YouTube videos directly on your TV without a PC."
 msgstr ""
+"Sa MyTube možete puštati YouTube video direktno na vaš TV,bez kompjutera."
 
 msgid "With WebcamViewer you can watch webcams on your TV Screen."
-msgstr ""
+msgstr "Sa WebcamViewer-om možete gledati veb kamere na TV ekranu."
 
 msgid ""
 "With Werbezapper you can bridge commercials by creating short timers\n"
 "(between 1 and 9 minutes long) which will automatically zap back to the "
 "original channel after execution."
 msgstr ""
+"Sa Werbezapper-om možete premostiti reklame kreirajući kratke tajmere\n"
+"(između 1 i 9 minuta dugačke) koji će se automatski vratiti na originalni "
+"kanal posle izvršenja."
 
 msgid ""
 "With YouTubePlayer you can watch YouTube-Videos on the Dreambox.\n"
 "This plugin requires a PC with the VLC program running."
 msgstr ""
+"Sa YouTubePlayer-om možete gledati YouTube video na vašem drimboksu.\n"
+"Ovaj dodatak zahteva PC sa pokrenutim VLC programom."
 
 msgid ""
 "With the CommonInterfaceAssignment plugin it is possible to use differentCI "
@@ -8579,53 +9011,75 @@ msgid ""
 "each of them.\n"
 "This allows watching a scrambled service while recording another one."
 msgstr ""
+"Sa CommonInterfaceAssignment dodatkom moguće je sa drimboksom koristiti "
+"različite CI module i dodeliti svakom određene provajdere/kanale ili "
+"kartice.\n"
+"Ovo vam omogućava gledanje kodiranih kanala dok snimate drugi."
 
 msgid ""
 "With the CrashlogAutoSubmit plugin it is possible to automaticallymail "
 "crashlogs found on your hard drive to Dream Multimedia."
 msgstr ""
+"Sa  CrashlogAutoSubmit dodatkom je moguće automatski poslati mejlom zapise "
+"kraha nađene na vašem hard disku Drim Multimediji."
 
 msgid ""
 "With the DefaultServicesScanner plugin you can scan default lamedbs sorted "
 "by satellite with a connected dish positioner."
 msgstr ""
+"Sa DefaultServicesScanner dodatkom možete pretražiti standardne lamedbs "
+"sortirane po satelitima sa povezanim antenskim pozicionerom."
 
 msgid ""
 "With the DiseqcTester plugin you can test your satellite equipment for "
 "DiSEqC compatibility and errors."
 msgstr ""
+"Sa DiseqcTester dodatkom možete testirati vašu satelitsku opremu za DISEqC "
+"kompatibilnost i greške."
 
 msgid ""
 "With the NFIFlash plugin it is possible to prepare a USB stick with an "
 "Dreambox image.\n"
 "It is then possible to flash your Dreambox with the image on that stick."
 msgstr ""
+"Sa NFIFlash dodatkom je moguće pripremiti USB stik sa nekim drimboks "
+"imidžem.\n"
+"Tada je moguće flešovati vaš drimboks sa imidžem na tom stiku."
 
 msgid ""
 "With the NetworkWizard you can easily configure your network step by step."
 msgstr ""
+"sa NetworkWizard-om možete lako konfigurisati vašu mrežu korak po korak. "
 
 msgid ""
 "With the PositionerSetup plugin it is easy to install and configure a "
 "motorized dish."
 msgstr ""
+"Sa PositionerSetup dodatkom je lako da se instalira i konfiguriše "
+"motorizovana antena."
 
 msgid ""
 "With the SatelliteEquipmentControl plugin it is possible to fine-tune DiSEqC-"
 "settings."
 msgstr ""
+"Sa SatelliteEquipmentControl  dodatkom je moguće fino štelovanje DISEqC "
+"podešavanja."
 
 #
 msgid ""
 "With this option enabled the channel to record on can be changed to a "
 "alternative service it is restricted to."
 msgstr ""
+"Sa ovom uključenom opcijom kanal koji se snima može biti promenjen na "
+"alternativni kanal na koji je ograničen."
 
 #
 msgid ""
 "With this option you can restrict the AutoTimer to a certain ammount of "
 "scheduled recordings. Set this to 0 to disable this functionality."
 msgstr ""
+"Sa ovom opcijom možete ograničiti auto tajmer na određeni broj zakazanih "
+"snimanja.Postavite ovo na 0 da isključite ovu funkciju."
 
 #
 msgid "Wizard"
@@ -8656,7 +9110,7 @@ msgid "Yes to all"
 msgstr "Da za sve"
 
 msgid "Yes, always"
-msgstr ""
+msgstr "Da,uvek"
 
 #
 msgid "Yes, and delete this movie"
@@ -8752,6 +9206,15 @@ msgstr ""
 "Dok je  'Ime' samo za ljude čitljivo ime prikazano u pregledu, 'Slaganje u "
 "naslovu' je ono šta tražimo u EPG."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+"Možete koristiti Easyinfo da upravljate vašim EPG dodacima sa info dugmeta."
+"Takođe imate novi sad-posle preglednik događaja.Easy-PG,sopstveni grafički "
+"pretraživač je takođe uključen."
+
 #
 msgid "You cannot delete this!"
 msgstr "Ne možete ovo obrisati!"
@@ -8786,7 +9249,7 @@ msgstr ""
 "Kako je ovo obavezna osobina,ne možete nastaviti pre nego to učinite."
 
 msgid "You didn't select a channel to record from."
-msgstr ""
+msgstr "Niste odabrali kanal sa koga ćete snimati."
 
 #
 #, python-format
@@ -8845,6 +9308,9 @@ msgid ""
 "\n"
 "Do you want to set the pin now?"
 msgstr ""
+"Treba da postavite PIN kod i sakrijete ga od vaše dece.\n"
+"\n"
+"Da li sada želite da postavite PIN?"
 
 #
 msgid ""
@@ -8925,7 +9391,7 @@ msgstr ""
 
 #
 msgid "Your current collection will get lost!"
-msgstr ""
+msgstr "Vaša aktuelna kolekcija će biti izgubljena!"
 
 #
 msgid "Your dreambox is shutting down. Please stand by..."
@@ -8967,6 +9433,9 @@ msgstr "Vaše  ime (opciono):"
 msgid "Your network configuration has been activated."
 msgstr "Vaša mrežna konfiguracija je aktivirana."
 
+msgid "Your network is not working. Please try again."
+msgstr "Vaša mreža ne radi. Molim pokušajte ponovo."
+
 #
 msgid "Your network mount has been activated."
 msgstr "Vaš mrežni maunt je aktiviran."
@@ -8992,11 +9461,11 @@ msgstr ""
 "Molim izaberite šta želite sledeće da učinite."
 
 msgid "ZDFMediathek allows you to watch streams from ZDF Mediathek."
-msgstr ""
+msgstr "ZDFMediathek vam omogućava da gledate strimove sa ZDF Mediateke."
 
 #
 msgid "Zap back to previously tuned service?"
-msgstr ""
+msgstr "Vratiti se nazad na prethodni kanal?"
 
 #
 msgid "Zap back to service before positioner setup?"
@@ -9008,22 +9477,22 @@ msgstr "Prebaciti natrag na kanal pre sat. tražitelja?"
 
 #
 msgid "Zap back to service before tuner setup?"
-msgstr ""
+msgstr "Vratiti se nazad na kanal pre podešavanja tjunera?"
 
 msgid "Zap between commercials"
-msgstr ""
+msgstr "Zap izmeću reklama"
 
 msgid "ZapStatistic shows the watched services with some statistics."
-msgstr ""
+msgstr "ZapStatistic pokazuje gledane kanale sa nekim statistikama."
 
 msgid "Zoom into letterboxed/anamorph movies"
-msgstr ""
+msgstr "Zum u letterboxed/anamorph filmove"
 
 msgid "Zoom into letterboxed/anamorph movies."
-msgstr ""
+msgstr "Zum u letterboxed/anamorph filmove."
 
 msgid "Zydas"
-msgstr ""
+msgstr "Zidas"
 
 #
 msgid "[alternative edit]"
@@ -9042,7 +9511,7 @@ msgid "[move mode]"
 msgstr "[mod premeštanja]"
 
 msgid "a HD skin from Kerni"
-msgstr ""
+msgstr "HD maska od Kernija"
 
 #
 msgid "a gui to assign services/providers to common interface modules"
@@ -9153,7 +9622,7 @@ msgid "add services"
 msgstr "Dodaj kanale"
 
 msgid "add tags to recorded movies"
-msgstr ""
+msgstr "Dodaj oznake snimljenim filmovima"
 
 #
 msgid "add to parental protection"
@@ -9169,16 +9638,19 @@ msgstr "sortiraj abecedno"
 
 msgid "assign color buttons (red/green/yellow/blue) to plugins from MOVIELIST."
 msgstr ""
+"dodeli obojene tipke (crveno/zeleno/žuto/plavo) dodacima iz liste FILMOVA."
 
 msgid "assign color buttons to plugins from MOVIELIST"
-msgstr ""
+msgstr "dodeli obojene tipke dodacima iz liste FILMOVA."
 
 msgid ""
 "assign long key-press (red/green/yellow/blue) to plugins or E2 functions."
 msgstr ""
+"dodeli dugački pritisak (crveno/zeleno/žuto/plavo) dodacima ili E2 "
+"funkcijama."
 
 msgid "assign long key-press on color buttons to plugins or E2 functions"
-msgstr ""
+msgstr "dodeli dugački pritisak na obojenu tipku dodacima ili E2 funkcijama"
 
 #
 msgid "assigned CAIds:"
@@ -9188,6 +9660,12 @@ msgstr "dodeljeni CAIdi:"
 msgid "assigned Services/Provider:"
 msgstr "Dodeljeni kanali/Provajder:"
 
+msgid "at beginning"
+msgstr "na početku"
+
+msgid "at end"
+msgstr "na kraju"
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9206,6 +9684,9 @@ msgstr "Audio zapisi"
 msgid "auto"
 msgstr "Auto"
 
+msgid "autotimers need a match attribute"
+msgstr "auto tajmer treba atribut za slaganje"
+
 #
 msgid "available"
 msgstr "dostupno"
@@ -9238,6 +9719,9 @@ msgstr "crna lista"
 msgid "blue"
 msgstr "Plavo"
 
+msgid "bob"
+msgstr "klatno"
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9279,6 +9763,9 @@ msgstr "očisti Plejlistu"
 msgid "complex"
 msgstr "kompleksno"
 
+msgid "config changed."
+msgstr "konfig promenjen."
+
 #
 msgid "config menu"
 msgstr "konfig  meni"
@@ -9296,7 +9783,7 @@ msgid "continue"
 msgstr "nastavi"
 
 msgid "control multiple Dreamboxes with different RCs"
-msgstr ""
+msgstr "kontroliši više drimboksova sa različitim daljinskim"
 
 #
 msgid "copy to bouquets"
@@ -9310,9 +9797,15 @@ msgstr "ne može biti uklonjeno"
 msgid "create directory"
 msgstr "Kreiraj direktorijum"
 
+msgid "creates virtual series folders from episodes"
+msgstr "kreira virtuelne fascikle serija od epizoda"
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr "kreira virtuelne fascikle serija od seta snimljenih epizoda"
+
 #, python-format
 msgid "currently installed image: %s"
-msgstr ""
+msgstr "Trenutno instalisani imidž: %s"
 
 #
 msgid "daily"
@@ -9322,6 +9815,9 @@ msgstr "dnevno"
 msgid "day"
 msgstr "Dan"
 
+msgid "default"
+msgstr "standardni"
+
 #
 msgid "delete"
 msgstr "Obriši"
@@ -9347,7 +9843,7 @@ msgid "delete..."
 msgstr "Obriši..."
 
 msgid "description"
-msgstr ""
+msgstr "opis"
 
 #
 msgid "disable"
@@ -9381,6 +9877,9 @@ msgstr "ne snimaj"
 msgid "done!"
 msgstr "Učinjeno!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "Uredi alternative"
@@ -9607,7 +10106,7 @@ msgstr "dužina"
 
 #
 msgid "list of EPG views..."
-msgstr ""
+msgstr "lista EPG pregleda..."
 
 #
 msgid "list style compact"
@@ -9661,6 +10160,9 @@ msgstr "minut"
 msgid "minutes"
 msgstr "minuti"
 
+msgid "missing parameter \"id\""
+msgstr "nedostaje parametar \"id\""
+
 #
 msgid "month"
 msgstr "Mesec"
@@ -9743,14 +10245,14 @@ msgstr "prazno"
 
 #
 msgid "not configured"
-msgstr ""
+msgstr "nije konfigurisano"
 
 #
 msgid "not locked"
 msgstr "nije prihvaćen"
 
 msgid "not supported"
-msgstr ""
+msgstr "nije podržano"
 
 #
 msgid "not used"
@@ -9857,10 +10359,7 @@ msgid "red"
 msgstr "Crveno"
 
 msgid "redesigned Kerni-HD1 skin"
-msgstr ""
-
-msgid "redirect notifications to Growl"
-msgstr ""
+msgstr "redizajnirana Kerni-HD1 maska"
 
 #
 msgid "remove a nameserver entry"
@@ -9964,7 +10463,7 @@ msgid "seconds"
 msgstr "sekundi"
 
 msgid "see service-epg (and PiP) from channels in an infobar"
-msgstr ""
+msgstr "vidi epg kanala (i PiP) od kanala u jednoj info traci"
 
 #
 msgid "select"
@@ -9995,17 +10494,17 @@ msgid "select the movie path"
 msgstr "Izaberite putanju filma"
 
 msgid "service PIN"
-msgstr ""
+msgstr "PIN kanala"
 
 msgid "set enigma2 to standby-mode after startup"
-msgstr ""
+msgstr "postavi enigmu2 u mod pripravnosti posle starta"
 
 #
 msgid "sets the Audio Delay (LipSync)"
-msgstr ""
+msgstr "podesi audio kašnjenje (LipSync)"
 
 msgid "setup PIN"
-msgstr ""
+msgstr "podesi PIN"
 
 #
 msgid "show DVD main menu"
@@ -10075,7 +10574,6 @@ msgstr "isključi"
 msgid "simple"
 msgstr "jednostavno"
 
-#
 msgid "skip backward"
 msgstr "preskoči unazad"
 
@@ -10101,7 +10599,7 @@ msgstr "sortiraj po datumu"
 
 #
 msgid "special characters"
-msgstr ""
+msgstr "posebni karakteri"
 
 #
 msgid "standard"
@@ -10196,7 +10694,11 @@ msgid "toggle time, chapter, audio, subtitle info"
 msgstr "Prebacuj vreme,poglavlje,audio,subtitl informacije"
 
 msgid "tuner is not supported"
-msgstr ""
+msgstr "tjuner nije podržan"
+
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr "nemoguće pronaći tajmer sa id %i"
 
 #
 msgid "unavailable"
@@ -10216,17 +10718,17 @@ msgstr "Nepoznat kanal"
 
 #
 msgid "until standby/restart"
-msgstr ""
+msgstr "do spreman/restart"
 
 #
 msgid "use as HDD replacement"
-msgstr ""
+msgstr "koristi kao zamenu za hard disk"
 
 msgid "use your Dreambox as Web proxy"
-msgstr ""
+msgstr "koristi svoj drimboks kao veb proksi"
 
 msgid "use your Dreambox as Web proxy."
-msgstr ""
+msgstr "koristi svoj drimboks kao veb proksi."
 
 #
 msgid "user defined"
@@ -10268,6 +10770,9 @@ msgstr "nedeljno"
 msgid "whitelist"
 msgstr "bela lista"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "U radu"
@@ -10370,6 +10875,9 @@ msgstr "prebačen"
 #~ msgid "50 Hz"
 #~ msgstr "50 Hz"
 
+#~ msgid "A BackToTheRoots-Skin ... or good old times."
+#~ msgstr "Povratak izvornom skinu...ili dobrim starim vremenima"
+
 #
 #~ msgid ""
 #~ "A sleep timer want's to set your\n"
@@ -10549,6 +11057,22 @@ msgstr "prebačen"
 #~ msgstr "Odaberi izvor"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Visoka kod rata"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Niska kod rata"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Kodrata HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Kodrata LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Kompakt fleš kartica"
 
@@ -10735,6 +11259,14 @@ msgstr "prebačen"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Pokreni brzo premotavanje napred pri brzini"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Pokreni premotavanje unazad pri brzini"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Unesite ime WLAN mreže/SSID"
 
@@ -10773,6 +11305,10 @@ msgstr "prebačen"
 #~ msgstr "Sledeći zadaci će biti urađeni kad pritisnete nastavit!"
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Ponavljane frejma se računa za vreme neravnomernog premotavanja"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP adresa"
 
@@ -10792,11 +11328,43 @@ msgstr "prebačen"
 #~ msgid "General PCM delay"
 #~ msgstr "Opšte PCM kašnjenje"
 
+#~ msgid ""
+#~ "Growlee allows your Dreambox to send short messages using the growl "
+#~ "protocol\n"
+#~ "like Recording started notifications to a PC running a growl client"
+#~ msgstr ""
+#~ "Growlee dozvoljava vašem drimboksu da šalje kratke poruke koristeći growl "
+#~ "protokol\n"
+#~ "kao obaveštenje Snimanje započeto na PC koji koristi growl klijent"
+
+#
+#~ msgid "Guard Interval"
+#~ msgstr "Interval zaštite"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Način zaštitnog intervala"
+
 #
 #~ msgid "Hide error windows"
 #~ msgstr "Sakrij prozor greA!ke"
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Informacije hijerarhije"
+
+#~ msgid "Hierarchy mode"
+#~ msgstr "Način rangiranja"
+
+#
+#~ msgid ""
+#~ "If this is enabled an existing timer will also be considered recording an "
+#~ "event if it records at least 80% of the it."
+#~ msgstr ""
+#~ "Ako je ovo uključeno postojeći tajmer će takođe biti smatran da snima "
+#~ "događaj ako snimi najmanje 80% istog."
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Ako vidite ovu stranu,molim pritisnite OK."
 
@@ -11009,6 +11577,10 @@ msgstr "prebačen"
 #~ msgstr "Online-nadogradnja"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Orbitalna pozicija"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Ostalo..."
 
@@ -11071,6 +11643,10 @@ msgstr "prebačen"
 #~ msgstr "Menadžer dodataka"
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polaritet"
+
+#
 #~ msgid "Port"
 #~ msgstr "Port"
 
@@ -11221,6 +11797,9 @@ msgstr "prebačen"
 #~ msgid "Retrieving network information. Please wait..."
 #~ msgstr "Obnavljanje informacija o mreži. Molim sačekajte..."
 
+#~ msgid "Rolloff"
+#~ msgstr "Kotrljanje"
+
 #
 #~ msgid "SSL"
 #~ msgstr "SSL"
@@ -11437,6 +12016,14 @@ msgstr "prebačen"
 #~ msgstr "Verwende benutzerdefinierte Werte für Zahlentasten"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Simbol rata"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Simbol rata"
+
+#
 #~ msgid ""
 #~ "The USB stick is now bootable. Do you want to download the latest image "
 #~ "from the feed server and save it on the stick?"
@@ -11573,6 +12160,14 @@ msgstr "prebačen"
 #~ "3) Sačekajte na podizanje i pratite uputstva čarobnjaka."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Mod transmisije"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Tip Transpondera"
+
+#
 #~ msgid "Transpondertype"
 #~ msgstr "TipTranspondera"
 
@@ -11659,6 +12254,10 @@ msgstr "prebačen"
 #~ msgstr "Koristi domen/korisn.ime za windows domene kao korisn.ime!"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Koristi premotavanje sa brzinama iznad "
+
+#
 #
 #
 #
@@ -11960,6 +12559,9 @@ msgstr "prebačen"
 #~ msgid "play previous playlist entry"
 #~ msgstr "pokreni predhodni unos playliste"
 
+#~ msgid "redirect notifications to Growl"
+#~ msgstr "prosledi obaveštenja u Growl"
+
 #
 #~ msgid "remove bouquet"
 #~ msgstr "obriA!i paket"
index ebbf80d..e2811ee 100755 (executable)
--- a/po/sv.po
+++ b/po/sv.po
@@ -7,13 +7,14 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
-"PO-Revision-Date: 2010-12-08 08:01+0200\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
+"PO-Revision-Date: 2011-05-03 13:22+0200\n"
 "Last-Translator: sig <sigstop@hotmail.com>\n"
+"Language-Team: \n"
+"Language: sv\n"
 "MIME-Version: 1.0\n"
 "Content-Type: text/plain; charset=UTF-8\n"
 "Content-Transfer-Encoding: 8bit\n"
-"Language: sv\n"
 "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 "X-Generator: Pootle 2.0.3\n"
 "X-Poedit-Language: Swedish\n"
@@ -196,6 +197,14 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+"%d konflikter uppstod vid uppläggning av nya timers:\n"
+"%s"
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -230,6 +239,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr "%s: %s at %s"
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -383,12 +396,12 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
+msgstr "Ett TillbakaTillGrunden-Skin .. men med Warp-8 fart."
+
 msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr "Ett TillbakaTillRötterna-Skin .. eller gamla goda tider."
 
-msgid "A BackToTheRoots-Skin ... or good old times."
-msgstr "Ett TillbakaTillRötterna-Skin ... eller gamla goda tider."
-
 msgid "A basic ftp client"
 msgstr "En enkel ftp klient"
 
@@ -407,6 +420,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr "Ett demoplugin för TPM användning."
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr "En dreambox simulering av SG-Atlantis skärmar."
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -430,6 +446,9 @@ msgstr "En grafisk EPG för alla kanaler i en vald favoritlista"
 msgid "A graphical EPG interface"
 msgstr "Ett grafiskt EPG gränssnitt"
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr "Ett grafiskt EPG gränssnitt och EPG verktygshanterare"
+
 msgid "A graphical EPG interface."
 msgstr "Ett grafiskt EPG gränssnitt."
 
@@ -900,6 +919,9 @@ msgstr "Fråga"
 msgid "Aspect Ratio"
 msgstr "Bildformat"
 
+msgid "Aspect ratio"
+msgstr "Bildförhållande"
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr "Tilldela operatörer/kanaler/caids till en CI modul"
 
@@ -914,6 +936,9 @@ msgstr "Ljud"
 msgid "Audio Options..."
 msgstr "Ljudval..."
 
+msgid "Audio PID"
+msgstr "Ljud PID"
+
 #
 msgid "Audio Sync"
 msgstr "Ljudsynk"
@@ -982,6 +1007,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr "AutoTimer lades till utan problem"
+
+msgid "AutoTimer was changed successfully"
+msgstr "AutoTimer ändrades utan problem"
+
+msgid "AutoTimer was removed"
+msgstr "AutoTimer togs bort"
+
 #
 msgid "Automatic"
 msgstr "Automatisk"
@@ -991,30 +1025,50 @@ msgid "Automatic Scan"
 msgstr "Automatisk sökning"
 
 msgid "Automatic volume adjustment"
-msgstr ""
+msgstr "Automatisk volymjustering"
 
 msgid "Automatic volume adjustment for ac3/dts services."
-msgstr ""
+msgstr "Automatisk volymjustering för ac3/dts kanaler."
 
 msgid "Automatically change video resolution"
-msgstr ""
+msgstr "Automatiskt byte av videoupplösning"
 
 msgid ""
 "Automatically changes the output resolution depending on the video "
 "resolution you are watching."
-msgstr ""
+msgstr "Automatisk byte av upplösning beroende av källans upplösning."
 
 msgid "Automatically create timer events based on keywords"
-msgstr ""
+msgstr "Automatiskt skapa timerhändelser baserat på nyckelord"
 
 msgid "Automatically informs you on low internal memory"
-msgstr ""
+msgstr "Automatiskt informera dig om lite ledigt internt minne"
 
 msgid "Automatically refresh EPG"
-msgstr ""
+msgstr "Automatiskt uppdatera EPG"
 
 msgid "Automatically send crashlogs to Dream Multimedia"
+msgstr "Automatiskt skicka crashlog till Dream Multimedia"
+
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
 msgstr ""
+"Autoupplösning Plugin Testläge:\n"
+"Är %s ok?"
+
+msgid "Autoresolution Switch"
+msgstr "Autoupplösning Byte"
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr "Autoupplösning fungerar inte i Scart/DVI-PV Läge"
+
+msgid "Autoresolution settings"
+msgstr "Autoupplösning inställningar"
+
+msgid "Autoresolution videomode setup"
+msgstr "Autoupplösning videoläge installation"
 
 #
 msgid "Autos & Vehicles"
@@ -1058,6 +1112,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Tillbaka"
 
+msgid "Back, lower USB Slot"
+msgstr "Bak, nedre USB kontakt"
+
+msgid "Back, upper USB Slot"
+msgstr "Bak, övre USB kontakt"
+
 #
 msgid "Background"
 msgstr "Bakgrund"
@@ -1150,6 +1210,13 @@ msgstr "Brasilien"
 msgid "Brightness"
 msgstr "Ljusstyrka"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+"Bläddra på ORF och SAT1 Teletext oberoende av kanal. Detta kräver I-net "
+"anslutning."
+
 msgid "Browse for and connect to network shares"
 msgstr "Bläddra efter och anslut till nätverksutdelningar"
 
@@ -1160,9 +1227,8 @@ msgstr "Bläddra efter nfs/cifs utdelningar och anslut till dem."
 msgid "Browse network neighbourhood"
 msgstr "Bläddra i nätverket"
 
-#
 msgid "Burn DVD"
-msgstr "Skapa DVD"
+msgstr "Bränn DVD"
 
 #
 msgid "Burn existing image to DVD"
@@ -1178,6 +1244,21 @@ msgstr "Bränn dina inspelningar till DVD"
 msgid "Bus: "
 msgstr "Bus: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+"Vid aktivering kommer händelser inte bli matchade om de inte inträffar på "
+"vissa datum."
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+"Vid aktiveringkommer du upplysas om timerkonflikter vid automatisk pollning. "
+"Det finns ingen intelligens inblandad, du bör undersöka om du får konflikter."
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1199,6 +1280,8 @@ msgid ""
 "CDInfo enables gathering album and track details from CDDB and CD-Text when "
 "playing Audio CDs in Mediaplayer."
 msgstr ""
+"CDInfo aktiverar  insamling av album moch spår information från CDDB och CD-"
+"Text vid uppspelning av Audop CDs i Mediaspelaren."
 
 #
 msgid "CI assignment"
@@ -1221,10 +1304,10 @@ msgid "Cache Thumbnails"
 msgstr "Buffra miniatyrer"
 
 msgid "Callmonitor for NCID-based call notification"
-msgstr ""
+msgstr "Callmonitor för NCID-baserad call notifiering"
 
 msgid "Callmonitor for the Fritz!Box routers"
-msgstr ""
+msgstr "Callmonitor för Fritz!Box routers"
 
 msgid "Can't connect to server. Please check your network!"
 msgstr "Kan inte ansluta till servern. Vänligen kontrollera ditt nätverk!"
@@ -1440,21 +1523,11 @@ msgstr "Stäng och spar ändringar"
 msgid "Close title selection"
 msgstr "Stäng titelval"
 
-#
-msgid "Code rate high"
-msgstr "Code rate hög"
+msgid "Code rate HP"
+msgstr "Kodhastighet HP"
 
-#
-msgid "Code rate low"
-msgstr "Code rate låg"
-
-#
-msgid "Coderate HP"
-msgstr "Coderate HP"
-
-#
-msgid "Coderate LP"
-msgstr "Coderate LP"
+msgid "Code rate LP"
+msgstr "Kodhastighet LP"
 
 #
 msgid "Collection name"
@@ -1598,28 +1671,28 @@ msgid "Contrast"
 msgstr "Kontrast"
 
 msgid "Control your Dreambox with your Web browser."
-msgstr ""
+msgstr "Kontrollera din Dreambox med din Webläsare."
 
 msgid "Control your Dreambox with your browser"
-msgstr ""
+msgstr "Kontrollera din Dreambox med din webläsare"
 
 msgid "Control your dreambox with only the MUTE button"
-msgstr ""
+msgstr "Kontrollera din dreambox enbart med MUTE knappen"
 
 msgid "Control your dreambox with only the MUTE button."
-msgstr ""
+msgstr "Kontrollera din dreambox enbart med MUTE knappen."
 
 msgid "Control your internal system fan."
-msgstr ""
+msgstr "Kontrollera inbyggd systemfläkt."
 
 msgid "Control your kids's tv usage"
-msgstr ""
+msgstr "Kontrollera dina barns tv användade"
 
 msgid "Control your system fan"
-msgstr ""
+msgstr "Kontrollera din systemfläkt"
 
 msgid "Copy, rename, delete, move local files on your Dreambox."
-msgstr ""
+msgstr "Kopiera, döp om, ta bort, flytta lokala filer på din Dreambox."
 
 #
 msgid "Could not connect to Dreambox .NFI Image Feed Server:"
@@ -1638,6 +1711,10 @@ msgstr "Gick inte att öppna Bild i Bild"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Kunde inte spela in på grund av timerkonflikt med %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr "Kunde inte spela in på grund av ogiltig kanal %s"
+
 #
 msgid "Crashlog settings"
 msgstr "Crashlog inställningar"
@@ -1667,10 +1744,10 @@ msgid "Create DVD-ISO"
 msgstr "Skapa DVD-ISO"
 
 msgid "Create a backup of your Video DVD on your DreamBox hard drive."
-msgstr ""
+msgstr "Skapa en backup av din Video DVD på din Dreamboxs hårddisk."
 
 msgid "Create a backup of your Video-DVD"
-msgstr ""
+msgstr "Skapa en backup av din Video-DVD"
 
 msgid "Create a new AutoTimer."
 msgstr "Skapa en ny AutoTimer."
@@ -1687,13 +1764,13 @@ msgid "Create movie folder failed"
 msgstr "Det gick inte att skapa en filmkatalog"
 
 msgid "Create preview pictures of your Movies"
-msgstr ""
+msgstr "Skapa förhandsbilder av dina Filmer"
 
 msgid "Create remote timers"
-msgstr ""
+msgstr "Skapa fjärrtimers"
 
 msgid "Create timers on remote Dreamboxes."
-msgstr ""
+msgstr "Skapa timers på andra Dreamboxar."
 
 #
 #, python-format
@@ -1776,7 +1853,7 @@ msgid "Cut your movies."
 msgstr "Klipp dina filmer."
 
 msgid "CutListEditor allows you to edit your movies"
-msgstr ""
+msgstr "CutListEditor tillåter dig editera dina filmer"
 
 msgid ""
 "CutListEditor allows you to edit your movies.\n"
@@ -1817,6 +1894,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr "DVD Läsare"
+
 #
 msgid "DVD File Browser"
 msgstr "DVD Filutforskare"
@@ -1833,7 +1913,7 @@ msgid "DVD media toolbox"
 msgstr "DVD media verktyg"
 
 msgid "DVDPlayer plays your DVDs on your Dreambox"
-msgstr ""
+msgstr "DVDPlayer spelar upp dina DVDs på din Dreambox"
 
 msgid ""
 "DVDPlayer plays your DVDs on your Dreambox.\n"
@@ -1894,15 +1974,24 @@ msgid "Defaults"
 msgstr "Grund"
 
 msgid "Define a startup service"
-msgstr ""
+msgstr "Definera en startkanal"
 
 msgid "Define a startup service for your Dreambox."
-msgstr ""
+msgstr "Definera en startkanal för din Dreambox."
+
+msgid "Deinterlacer mode for interlaced content"
+msgstr "Deinterlaced lägen för interlaced innehåll"
+
+msgid "Deinterlacer mode for progressive content"
+msgstr "Deinterlaced läge för progressivt innehåll"
 
 #
 msgid "Delay"
 msgstr "Fördröjning"
 
+msgid "Delay x seconds after service started"
+msgstr "Fördröj x sekunder efter kanalstart"
+
 #
 msgid "Delete"
 msgstr "Ta bort"
@@ -1991,7 +2080,7 @@ msgid "Dir:"
 msgstr "Dir:"
 
 msgid "Direct playback of Youtube videos"
-msgstr ""
+msgstr "Direkt playback av Youtube videos"
 
 #
 msgid "Direct playback of linked titles without menu"
@@ -2067,10 +2156,10 @@ msgid "Display search results by:"
 msgstr "Visa sökresultat sortterat på:"
 
 msgid "Display your photos on the TV"
-msgstr ""
+msgstr "Visa dina foton på TVn"
 
 msgid "Displays movie information from the InternetMovieDatabase"
-msgstr ""
+msgstr "Visa filminformation från InternetMovieDatabase"
 
 #, python-format
 msgid ""
@@ -2088,6 +2177,14 @@ msgstr ""
 "Vill du verkligen kontrollera filsystemet?\n"
 "Detta kan ta lång tid!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+"Vill du verkligen ta bort %s\n"
+"%s?"
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2250,7 +2347,7 @@ msgid "Download Video"
 msgstr "Ladda ner Video"
 
 msgid "Download files from Rapidshare"
-msgstr ""
+msgstr "Ladda ner från Rapidshare"
 
 #
 msgid "Download location"
@@ -2284,6 +2381,12 @@ msgstr "Dreambox formaterad data DVD (HDTV kompatibel)"
 msgid "Dreambox software because updates are available."
 msgstr "Dreambox mjukvara på grund av uppdateringar är tillgängliga."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr "Drivrutin för Ralink RT8070/RT3070/RT3370 baserad trådlösa-n USB kort."
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr "Drivrutin för Realtek r8712u baserad trådlösa-n USB kort."
+
 #
 msgid "Duration: "
 msgstr "Längd: "
@@ -2375,10 +2478,10 @@ msgid "Edit settings"
 msgstr "Ändra inställningar"
 
 msgid "Edit tags of recorded movies"
-msgstr ""
+msgstr "Ändra märkning i inspelade filmer"
 
 msgid "Edit tags of recorded movies."
-msgstr ""
+msgstr "Ändra märkning i inspelade filmer."
 
 #
 msgid "Edit the Nameserver configuration of your Dreambox.\n"
@@ -2412,7 +2515,7 @@ msgid "Electronic Program Guide"
 msgstr "Elektronisk Program Guide"
 
 msgid "Emailclient is an IMAP4 e-mail viewer for the Dreambox."
-msgstr ""
+msgstr "Epostklient är en IMAP4 e-postvisare för Dreambox."
 
 #
 msgid "Enable"
@@ -2422,10 +2525,25 @@ msgstr "Aktivera"
 msgid "Enable /media"
 msgstr "Aktivera /media"
 
+msgid "Enable 1080p24 Mode"
+msgstr "Aktivera 1080p24 läge"
+
+msgid "Enable 1080p25 Mode"
+msgstr "Aktivera 1080p25 läge"
+
+msgid "Enable 1080p30 Mode"
+msgstr "Aktivera 1080p30 läge"
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Aktivera 5V för aktiv antenn"
 
+msgid "Enable 720p24 Mode"
+msgstr "Aktivera 720p24 läge"
+
+msgid "Enable Autoresolution"
+msgstr "Aktivera Autoupplösning"
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr "Aktivera Upprensningsguide?"
@@ -2554,18 +2672,10 @@ msgstr ""
 "© 2006 - Stephan Reichholf"
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Initial hastighet för snabbspolning framåt"
-
-#
 msgid "Enter IP to scan..."
 msgstr "Ange IP för sökning..."
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Initial hastighet för snabbspolning bakåt"
-
-#
 msgid "Enter main menu..."
 msgstr "Gå till huvudmeny..."
 
@@ -2636,6 +2746,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estniska"
 
+msgid "Ethernet network interface"
+msgstr "Ethernet nätverkskort"
+
 #
 msgid "Eventview"
 msgstr "Programöversikt"
@@ -2832,8 +2945,15 @@ msgstr "Klar med omstarten av ditt nätverk"
 msgid "Finnish"
 msgstr "Finska"
 
-msgid "First generate your skin-style with the Ai.HD-Control plugin."
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
 msgstr ""
+"Först dag att matcha händelser. Ingen händelse innan denna dag kommer "
+"matchas."
+
+msgid "First generate your skin-style with the Ai.HD-Control plugin."
+msgstr "Generera först din skinstil med Ai.HD-Control plugin."
 
 #
 msgid "Flash"
@@ -2851,6 +2971,12 @@ msgstr "Följande saker kommer utföras efter du tryckt på OK!"
 msgid "Format"
 msgstr "Format"
 
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -2861,10 +2987,6 @@ msgstr ""
 "%d Timer har lagts till och %d ändrade."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Bildupprepning vid hackig spolning"
-
-#
 msgid "Frame size in full view"
 msgstr "Ramstorlek i fullskärm"
 
@@ -2905,10 +3027,13 @@ msgid "Frisian"
 msgstr "Frisiska"
 
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
-msgstr ""
+msgstr "Fritz!Call visar inkommande samtal till din Fritz!Box på din Dreambox"
+
+msgid "Front USB Slot"
+msgstr "Fram USB kontakt"
 
 msgid "Frontend for /tmp/mmi.socket"
-msgstr ""
+msgstr "Frontend för /tmp/mmi.socket"
 
 #
 #, python-format
@@ -2928,14 +3053,15 @@ msgstr ""
 "Vill du starta om GUI nu?"
 
 msgid "GUI that allows user to change the ftp- / telnet password."
-msgstr ""
+msgstr "GUI som tillåter användare att ändra ftp- / telnet lösenord."
 
 msgid ""
 "GUI that allows user to change the ftp-/telnet-password of the Dreambox."
 msgstr ""
+"GUI som tillåter användare att ändra ftp- / telnet-lösenord på Dreambox."
 
 msgid "GUI to change the ftp and telnet-password"
-msgstr ""
+msgstr "GUI för att ändra ftp- / telnet-lösenord"
 
 #
 msgid "Gaming"
@@ -2961,6 +3087,9 @@ msgstr "Generisk PCM fördröjning"
 msgid "General PCM delay (ms)"
 msgstr "Generell PCM fördröjning (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Genre"
@@ -2973,7 +3102,7 @@ msgid "Genuine Dreambox validation failed!"
 msgstr "Äkta Dreambox validering misslyckades!"
 
 msgid "Genuine Dreambox verification"
-msgstr ""
+msgstr "Äkta Dreambox verifiering"
 
 #
 msgid "German"
@@ -3039,23 +3168,24 @@ msgid "Green boost"
 msgstr "Grön förstärkning"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Guard intervall"
-
-#
-msgid "Guard interval mode"
-msgstr "Guard intervalläge"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr "Gissa existerande timer baserat på start/slut"
 
+msgid "HD Interlace Mode"
+msgstr "HD Interlace läge"
+
+msgid "HD Progressive Mode"
+msgstr "HD Progressive läge"
+
 #
 msgid "HD videos"
 msgstr "HD video"
@@ -3084,6 +3214,9 @@ msgstr "Viloläge för hårddisk efter"
 msgid "Help"
 msgstr "Hjälp"
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "Dold nätverks SSID"
@@ -3092,12 +3225,8 @@ msgstr "Dold nätverks SSID"
 msgid "Hidden networkname"
 msgstr "Dolt nätverksnamn"
 
-msgid "Hierarchy Information"
-msgstr "Hierarkisk information"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hierarkiskt läge"
+msgid "Hierarchy info"
+msgstr "Hierarkis info"
 
 #
 msgid "High bitrate support"
@@ -3170,7 +3299,7 @@ msgstr "Isländska"
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3270,6 +3399,12 @@ msgstr "Information"
 msgid "Init"
 msgstr "Initiera"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr "Initial filmplats för nya timers"
@@ -3371,6 +3506,9 @@ msgstr "Intern Flash"
 msgid "Internal LAN adapter."
 msgstr "Intern LAN adapter."
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3573,6 +3711,11 @@ msgstr "Välj språk"
 msgid "Last config"
 msgstr "Senaste konfiguration"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Föregående hastighet"
@@ -3630,6 +3773,9 @@ msgstr "Länk:"
 msgid "Linked titles with a DVD menu"
 msgstr "Länkade titlar med en DVD meny"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Lista på lagringsenheter"
@@ -3763,6 +3909,9 @@ msgstr "Hantera din mottagares mjukvara"
 msgid "Manual Scan"
 msgstr "Manuell sökning"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Manuell transponder"
@@ -4049,6 +4198,9 @@ msgstr "Filmlista meny"
 msgid "Multi EPG"
 msgstr "Multi EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr "Multimedia"
@@ -4057,6 +4209,9 @@ msgstr "Multimedia"
 msgid "Multiple service support"
 msgstr "Multipla kanaler stöds"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Multisat"
@@ -4124,6 +4279,9 @@ msgstr "NFI image flashning klar. Tryck Gul för omstart!"
 msgid "NFS share"
 msgstr "NFS delning"
 
+msgid "NIM"
+msgstr "NIM"
+
 msgid "NOW"
 msgstr "NU"
 
@@ -4152,6 +4310,9 @@ msgstr "Namnserver installation"
 msgid "Nameserver settings"
 msgstr "Namnserver inställningar"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr "Nemesis BlackBox Skin"
 
@@ -4307,6 +4468,9 @@ msgstr "Nätverksbläddring"
 msgid "NetworkWizard"
 msgstr "Nätverksguide"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr "Aldrig"
@@ -4473,6 +4637,9 @@ msgstr "Ingen video att visa"
 msgid "No wireless networks found! Please refresh."
 msgstr "Inget trådlöst nätverk hittat! Vänligen uppdatera."
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4567,6 +4734,12 @@ msgstr "Nord"
 msgid "Norwegian"
 msgstr "Norska"
 
+msgid "Not after"
+msgstr "Inte efter"
+
+msgid "Not before"
+msgstr "Inte före"
+
 #
 #, python-format
 msgid ""
@@ -4580,6 +4753,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Hämtar inte feed poster"
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4622,6 +4798,9 @@ msgstr "OK, ta bort fler utökningar"
 msgid "OK, remove some extensions"
 msgstr "OK, ta bort några utökningar"
 
+msgid "ONID"
+msgstr "ONID"
+
 #
 msgid "OSD Settings"
 msgstr "OSD inställning"
@@ -4689,9 +4868,8 @@ msgstr "Öppna plugin meny"
 msgid "Optionally enter your name if you want to."
 msgstr "Valfritt ange ditt namn om du vill."
 
-#
-msgid "Orbital Position"
-msgstr "Orbital position"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4714,10 +4892,16 @@ msgstr "Skriv över konfigurationsfilerna vid mjukvaruuppgradering?"
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr "PCR PID"
+
 #
 msgid "PIDs"
 msgstr "PIDs"
 
+msgid "PMT PID"
+msgstr "PMT PID"
+
 #
 msgid "Package list update"
 msgstr "Paketlista uppdatering"
@@ -5164,10 +5348,6 @@ msgid "Poland"
 msgstr "Polen"
 
 #
-msgid "Polarity"
-msgstr "Polaritet"
-
-#
 msgid "Polarization"
 msgstr "Polarisation"
 
@@ -5203,6 +5383,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portugisiska"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Motor"
@@ -5419,6 +5602,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr "RSS visare"
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Radio"
@@ -5528,6 +5714,9 @@ msgstr "Inspelningar"
 msgid "Recordings always have priority"
 msgstr "Inspelningar har alltid prioritet"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5748,6 +5937,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr "Begränsa \"efter händelse\" till ett visst tidsintervall?"
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Återuppspela från senaste position"
@@ -5788,9 +5980,8 @@ msgstr "Hastigheter för snabbspolning bakåt"
 msgid "Right"
 msgstr "Höger"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr "Roll-off"
 
 #
 msgid "Rotor turning speed"
@@ -5800,6 +5991,9 @@ msgstr "Rotor rotationsfart"
 msgid "Running"
 msgstr "Körandes"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr "Russia"
@@ -5812,6 +6006,21 @@ msgstr "Ryska"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr "SD 25/50Hz Interlace läge"
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr "SD 25/50Hz Progressive läge"
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr "SD 30/60Hz Interlace läge"
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr "SD 30/60Hz Progressive läge"
+
+msgid "SID"
+msgstr "SID"
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr "SINGLE LAYER DVD"
@@ -5828,6 +6037,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "SSID:"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Lör"
@@ -6287,6 +6509,9 @@ msgstr ""
 "Service inte funnen!\n"
 "(SID inte funnen i PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Kanalsökning"
@@ -6419,6 +6644,9 @@ msgstr "Visa händelse-utveckling i kanallistan"
 msgid "Show in extension menu"
 msgstr "Visa i utökningsmenyn"
 
+msgid "Show info screen"
+msgstr "Visa infoskärm"
+
 #
 msgid "Show infobar on channel change"
 msgstr "Visa infobalk vid kanalbyte"
@@ -6431,6 +6659,9 @@ msgstr "Visa infobalk vid händelseändring"
 msgid "Show infobar on skip forward/backward"
 msgstr "Visa infobalk vid hopp framåt/bakåt"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Visa motorflyttningar"
@@ -6703,6 +6934,9 @@ msgstr "Standby fläkt %d Volt"
 msgid "Start Webinterface"
 msgstr "Starta Webgränssnitt"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Spela upp från början"
@@ -6822,6 +7056,9 @@ msgstr "Sön"
 msgid "Sunday"
 msgstr "Söndag"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Byt kanal"
@@ -6846,13 +7083,8 @@ msgstr "Byt till föregående underkanal"
 msgid "Switchable tuner types:"
 msgstr "Växlingbara tunertyper:"
 
-#
-msgid "Symbol Rate"
-msgstr "Symbolrate"
-
-#
-msgid "Symbolrate"
-msgstr "Symbolrate"
+msgid "Symbol rate"
+msgstr "Symbolhastighet"
 
 #
 msgid "System"
@@ -6866,10 +7098,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS fil för stor för ISO9660 level 1!"
 
+msgid "TSID"
+msgstr "TSID"
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV System"
 
+msgid "TXT PID"
+msgstr "TXT PID"
+
 #
 msgid "Table of content for collection"
 msgstr "Index över innehållet av samligen"
@@ -6902,6 +7143,9 @@ msgstr "Taiwan"
 msgid "Temperature and Fan control"
 msgstr "Temperatur och Fläkt kontroll"
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Marksänd"
@@ -7620,10 +7864,6 @@ msgid "Translation:"
 msgstr "Översättning:"
 
 #
-msgid "Transmission Mode"
-msgstr "Sändningsläge"
-
-#
 msgid "Transmission mode"
 msgstr "Sändningstyp"
 
@@ -7632,10 +7872,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Transponder Typ"
-
-#
 msgid "Travel & Events"
 msgstr "Resa & Äventyr"
 
@@ -7760,6 +7996,9 @@ msgstr "Ångra installation"
 msgid "Undo uninstall"
 msgstr "Ångra avinstallation"
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr "Okänd knapp"
@@ -7788,6 +8027,9 @@ msgstr "USA"
 msgid "Universal LNB"
 msgstr "Universal LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr "Okänd nätverksadapter."
 
@@ -7905,10 +8147,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Använd hackig spolning vid hastigheter över"
-
-#
 msgid "Use power measurement"
 msgstr "Använd strömmätning"
 
@@ -7989,13 +8227,22 @@ msgstr "VMGM (intro trailer)"
 msgid "Vali-XD skin"
 msgstr "Vali-XD skin"
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr "Vali.HD.nano skin"
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr "Kontrollera din Dreamboxs äkthet genom att köra Äkta Dreambox plugin!"
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr "Vertikal"
@@ -8012,6 +8259,9 @@ msgstr "Video fininställnings guide"
 msgid "Video Output"
 msgstr "Video Utsignal"
 
+msgid "Video PID"
+msgstr "Video PID"
+
 #
 msgid "Video Setup"
 msgstr "Video Inställning"
@@ -8256,6 +8506,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr "Webgränssnitt"
@@ -8433,6 +8686,11 @@ msgstr "Vad vill du söka efter?"
 msgid "What to do with submitted crashlogs?"
 msgstr "Vad ska ske med skickade crashlogs?"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8476,6 +8734,15 @@ msgstr "Trådlöst Nätverk"
 msgid "Wireless Network State"
 msgstr "Status Trådlöst nätverk"
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8702,6 +8969,12 @@ msgstr ""
 "Då 'Namn' bara är bara ett visningsvärde i Overview, 'Match in title' är vad "
 "som ska letas efter i EPG."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Du kan inte ta bort detta!"
@@ -8914,6 +9187,9 @@ msgstr "Ditt namn (valfritt):"
 msgid "Your network configuration has been activated."
 msgstr "Din nätverkskonfiguration har aktiverats."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr "Din nätverksmontering har aktiverats."
@@ -9141,6 +9417,12 @@ msgstr "tilldelade CAIds:"
 msgid "assigned Services/Provider:"
 msgstr "utpekade kanaler/operatörer:"
 
+msgid "at beginning"
+msgstr "i början"
+
+msgid "at end"
+msgstr "i slutet"
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9159,6 +9441,9 @@ msgstr "ljudspår"
 msgid "auto"
 msgstr "auto"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "tillgängliga"
@@ -9191,6 +9476,9 @@ msgstr "svartlista"
 msgid "blue"
 msgstr "blå"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9230,6 +9518,9 @@ msgstr "rensa spellista"
 msgid "complex"
 msgstr "komplex"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "konfigurationsmeny"
@@ -9261,6 +9552,12 @@ msgstr "kunde inte tas bort"
 msgid "create directory"
 msgstr "skapa bibliotek"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr "nuvarande installerad image: %s"
@@ -9273,6 +9570,9 @@ msgstr "daglig"
 msgid "day"
 msgstr "dag"
 
+msgid "default"
+msgstr "grundvärde"
+
 #
 msgid "delete"
 msgstr "ta bort"
@@ -9332,6 +9632,9 @@ msgstr "spela inte in"
 msgid "done!"
 msgstr "klar!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "ändra alternativ"
@@ -9612,6 +9915,9 @@ msgstr "minut"
 msgid "minutes"
 msgstr "minuter"
 
+msgid "missing parameter \"id\""
+msgstr "saknar värde \"id\""
+
 #
 msgid "month"
 msgstr "månad"
@@ -9808,9 +10114,6 @@ msgstr "röd"
 msgid "redesigned Kerni-HD1 skin"
 msgstr "omdesignat Kerni-HD1 skin"
 
-msgid "redirect notifications to Growl"
-msgstr "omdirigera notifieringar till Growl"
-
 #
 msgid "remove a nameserver entry"
 msgstr "ta bort en namnserver post"
@@ -10144,6 +10447,10 @@ msgstr "skifta tid, kapitel, ljud, textning info"
 msgid "tuner is not supported"
 msgstr "tuner stöds inte"
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr "kan inte hitta timer med id %i"
+
 #
 msgid "unavailable"
 msgstr "ej tillgänglig"
@@ -10214,6 +10521,9 @@ msgstr "veckolig"
 msgid "whitelist"
 msgstr "vitlista"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "arbetar"
@@ -10247,264 +10557,60 @@ msgid "zapped"
 msgstr "zapped"
 
 #
-#~ msgid ".NFI Download failed:"
-#~ msgstr ".NFI Nedladdning misslyckades:"
-
-#
-#~ msgid ""
-#~ ".NFI file passed md5sum signature check. You can safely flash this image!"
-#~ msgstr ""
-#~ ".NFI fil passerade md5sum signatur kontroll. Du kan använda denna image!"
+#~ msgid "Code rate high"
+#~ msgstr "Code rate hög"
 
 #
-#~ msgid "Cannot parse feed directory"
-#~ msgstr "Kan inte läsa feed bibliotek"
+#~ msgid "Code rate low"
+#~ msgstr "Code rate låg"
 
 #
-#~ msgid "Change dir."
-#~ msgstr "Byt bibl."
-
-#~ msgid "Change service pin"
-#~ msgstr "Ändra program pin"
-
-#~ msgid "Change service pins"
-#~ msgstr "Ändra program pin"
-
-#~ msgid "Change setup pin"
-#~ msgstr "Ändra installations pin"
+#~ msgid "Coderate HP"
+#~ msgstr "Coderate HP"
 
 #
-#~ msgid "Destination directory"
-#~ msgstr "Målbibliotek"
+#~ msgid "Coderate LP"
+#~ msgstr "Coderate LP"
 
 #
-#~ msgid "Details for extension: "
-#~ msgstr "Detaljer för utökning: "
+#~ msgid "Guard Interval"
+#~ msgstr "Guard intervall"
 
 #
-#~ msgid "Disable Subtitles"
-#~ msgstr "Avaktivera textning"
+#~ msgid "Guard interval mode"
+#~ msgstr "Guard intervalläge"
 
-#~ msgid "Download of USB flasher boot image failed: "
-#~ msgstr "Ladda ner USB flash boot image misslyckades: "
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hierarkisk information"
 
 #
-#~ msgid ""
-#~ "First we need to download the latest boot environment for the USB flasher."
-#~ msgstr "Först måste vi ladda ner senaste bootmiljön för USB flasher."
-
-#~ msgid ""
-#~ "If this is enabled an existing timer will also be considered recording an "
-#~ "event if it records at least 80%% of the it."
-#~ msgstr ""
-#~ "Om detta är aktiverat kommer befintlig timer att behandlas som en "
-#~ "inspelning om den spelar in minst 80%% av den."
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hierarkiskt läge"
 
 #
-#~ msgid "Image flash utility"
-#~ msgstr "Image flash redskap"
+#~ msgid "Orbital Position"
+#~ msgstr "Orbital position"
 
 #
-#~ msgid "Integrated Ethernet"
-#~ msgstr "Integrerat nätverk"
+#~ msgid "Polarity"
+#~ msgstr "Polaritet"
 
 #
-#~ msgid "Integrated Wireless"
-#~ msgstr "Inbyggt Trådlöst"
-
-#~ msgid "New pin"
-#~ msgstr "Ny pin"
-
-#
-#~ msgid "No useable USB stick found"
-#~ msgstr "Ingen användbar USB-sticka hittad"
-
-#
-#~ msgid "Page"
-#~ msgstr "Sida"
-
-#
-#~ msgid "Please choose .NFI image file from feed server to download"
-#~ msgstr "Vänligen välj .NFI image fil från feed server som ska laddas ner"
-
-#
-#~ msgid ""
-#~ "Please disconnect all USB devices from your Dreambox and (re-)attach the "
-#~ "target USB stick (minimum size is 64 MB) now!"
-#~ msgstr ""
-#~ "Vänligen koppla bort alla USB enheter från din Dreambox och (åter-)anslut "
-#~ "USB-stickan (minimumstorlek är 64MB) nu!"
-
-#~ msgid "Please enter the old pin code"
-#~ msgstr "Vänligen ange den gamla pin koden"
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
 
 #
-#~ msgid "Please select .NFI flash image file from medium"
-#~ msgstr "Vänligen välj .NFI flash image fil från media"
+#~ msgid "Symbol Rate"
+#~ msgstr "Symbolrate"
 
 #
-#~ msgid "Please select target directory or medium"
-#~ msgstr "Vänligen välj målbibliotek eller media"
+#~ msgid "Symbolrate"
+#~ msgstr "Symbolrate"
 
 #
-#~ msgid "Press OK to view full changelog"
-#~ msgstr "Tryck OK för att visa full förändringslog"
-
-#~ msgid "Reenter new pin"
-#~ msgstr "Ange ny pin igen"
-
-#
-#~ msgid "Remember service pin"
-#~ msgstr "Kom ihåg service pin"
-
-#
-#~ msgid "Remember service pin cancel"
-#~ msgstr "Avbryt kom ihåg service pin"
+#~ msgid "Transmission Mode"
+#~ msgstr "Sändningsläge"
 
 #
-#~ msgid "Remove the broken .NFI file?"
-#~ msgstr "Ta bort trasig .NFI fil?"
-
-#
-#~ msgid "Remove the incomplete .NFI file?"
-#~ msgstr "Ta bort ofullständig .NFI fil?"
-
-#
-#~ msgid ""
-#~ "Scan your network for wireless Access Points and connect to them using "
-#~ "your selected wireless device.\n"
-#~ msgstr ""
-#~ "Sök ditt nätverk efter trådlös Accesspunkt och anslut till det med din "
-#~ "valda trådlösa enhet.\n"
-
-#
-#~ msgid "Select audio mode"
-#~ msgstr "Välj ljudläge"
-
-#
-#~ msgid "Select files for backup. Currently selected:\n"
-#~ msgstr "Välj filer för backuptagning. Nuvarande valda:\n"
-
-#
-#~ msgid "Select image"
-#~ msgstr "Välj image"
-
-#
-#~ msgid "Selected source image"
-#~ msgstr "Välj käll image"
-
-#
-#~ msgid "Stereo"
-#~ msgstr "Stereo"
-
-#
-#~ msgid ""
-#~ "The USB stick is now bootable. Do you want to download the latest image "
-#~ "from the feed server and save it on the stick?"
-#~ msgstr ""
-#~ "USB-stickan är nu bootbar. Vill du ladda ner senaste image från feed "
-#~ "server och spara den på stickan?"
-
-#~ msgid ""
-#~ "The md5sum validation failed, the file may be corrupted! Are you sure "
-#~ "that you want to burn this image to flash memory? You are doing this at "
-#~ "your own risk!"
-#~ msgstr ""
-#~ "Validering av md5sun misslyckades, filen kan vara korrupt! Är du säker på "
-#~ "att du vill flasha denna image till flashminnet? Du utför detta på egen "
-#~ "risk!"
-
-#~ msgid ""
-#~ "The md5sum validation failed, the file may be downloaded incompletely or "
-#~ "be corrupted!"
-#~ msgstr ""
-#~ "Validering av md5sum misslyckades, filen kanske inte blev helt nedladdad "
-#~ "eller är korrupt!"
-
-#~ msgid "The pin code has been changed successfully."
-#~ msgstr "Bytet av pin koden utfördes."
-
-#~ msgid "The pin codes you entered are different."
-#~ msgstr "Pin koderna du angav är olika."
-
-#
-#~ msgid "This .NFI file does not contain a valid %s image!"
-#~ msgstr "Denna .NFI fil innehåller ingen giltig %s image!"
-
-#
-#~ msgid ""
-#~ "This .NFI file does not have a md5sum signature and is not guaranteed to "
-#~ "work. Do you really want to burn this image to flash memory?"
-#~ msgstr ""
-#~ "Denna .NFI har ingen md5sum signatur och är inte garanterad att den "
-#~ "fungerar. Vill du verkligen flasha denna image till flashminnet?"
-
-#
-#~ msgid ""
-#~ "This .NFI file has a valid md5 signature. Continue programming this image "
-#~ "to flash memory?"
-#~ msgstr ""
-#~ "Denna .NFI har giltig md5sum. Fortsätta programmera denna image till "
-#~ "flashminnet?"
-
-#~ msgid ""
-#~ "To update your Dreambox firmware, please follow these steps:\n"
-#~ "1) Turn off your box with the rear power switch and plug in the bootable "
-#~ "USB stick.\n"
-#~ "2) Turn mains back on and hold the DOWN button on the front panel pressed "
-#~ "for 10 seconds.\n"
-#~ "3) Wait for bootup and follow instructions of the wizard."
-#~ msgstr ""
-#~ "För att uppdatera din Dreambox firmware, vänligen utför följande steg:\n"
-#~ "1) Stäng av din box med strömbrytaren på baksidan och sätt in bootbar USB-"
-#~ "sticka.\n"
-#~ "2) Slå på strömbrytaren och håll NER pil på fronten intryckt i ungerfär "
-#~ "10 sekunder.\n"
-#~ "3) Vänta på uppstart och följ instruktionerna från guiden."
-
-#
-#~ msgid ""
-#~ "USB stick wizard finished. Your dreambox will now restart with your new "
-#~ "image!"
-#~ msgstr ""
-#~ "USB-sticke-guide klar. Din dreambox kommer nu starta om med din nya image!"
-
-#
-#~ msgid "Wireless"
-#~ msgstr "Trådlöst"
-
-#
-#~ msgid "Writing NFI image file to flash completed"
-#~ msgstr "Skrivning av NFI image fil till flash klart"
-
-#
-#~ msgid ""
-#~ "You need to set a pin code and hide it from your children.\n"
-#~ "\n"
-#~ "Do you want to set the pin now?"
-#~ msgstr ""
-#~ "Du måste ange en PIN kod och dölja det från dina barn.\n"
-#~ "\n"
-#~ "Vill du ange PIN kod nu?"
-
-#
-#~ msgid "choose destination directory"
-#~ msgstr "välj destinationsbibliotek"
-
-#
-#~ msgid "failed"
-#~ msgstr "misslyckades"
-
-#
-#~ msgid "select .NFI flash file"
-#~ msgstr "välj .NFI flash fil"
-
-#
-#~ msgid "select image from server"
-#~ msgstr "välj image från server"
-
-#~ msgid "service pin"
-#~ msgstr "kanal pin"
-
-#~ msgid "setup pin"
-#~ msgstr "installation pin"
+#~ msgid "Transponder Type"
+#~ msgstr "Transponder Typ"
index c889108..2d7022c 100755 (executable)
--- a/po/tr.po
+++ b/po/tr.po
@@ -3,7 +3,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: enigma2 Turkish Locale\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2010-04-30 20:58+0200\n"
 "Last-Translator: Zulfikar <zveyis@gmail.com>\n"
 "Language-Team: http://hobiagaci.com <z.veyisoglu@hobiagaci.com>\n"
@@ -201,6 +201,12 @@ msgstr "#ffffffff"
 msgid "%H:%M"
 msgstr "%H:%M"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -239,6 +245,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(ZAP)"
@@ -395,10 +405,10 @@ msgstr ""
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -419,6 +429,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -442,6 +455,9 @@ msgstr "Belirtilen buketteki tüm kanallar için grafik EPG"
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -909,6 +925,9 @@ msgstr "Sor"
 msgid "Aspect Ratio"
 msgstr "En boy oranı"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -923,6 +942,9 @@ msgstr "Ses"
 msgid "Audio Options..."
 msgstr "Ses Ayarları..."
 
+msgid "Audio PID"
+msgstr ""
+
 msgid "Audio Sync"
 msgstr "Ses senkronu"
 
@@ -987,6 +1009,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Otomatik"
@@ -1021,6 +1052,25 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr "Otoçözünürlük anahtarı"
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+"Otoçözünürlük eklentisi Scart/DVI-PC bağlantılarını desteklememektedir."
+
+msgid "Autoresolution settings"
+msgstr "Otoçözünürlük ayarları"
+
+msgid "Autoresolution videomode setup"
+msgstr "Otoçözünürlük video kipi ayarları"
+
 #
 msgid "Autos & Vehicles"
 msgstr "Otomobil & Araçlar"
@@ -1063,6 +1113,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Geri"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Arkaplan"
@@ -1157,6 +1213,11 @@ msgstr "Brazilya"
 msgid "Brightness"
 msgstr "Parlaklık"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1184,6 +1245,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Yol: "
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1445,21 +1517,11 @@ msgstr "Değişiklikleri kaydet ve kapat"
 msgid "Close title selection"
 msgstr "Başlık seçimini kapat"
 
-#
-msgid "Code rate high"
-msgstr "Yüksek kod oranı"
-
-#
-msgid "Code rate low"
-msgstr "Düşük kod oranı"
-
-#
-msgid "Coderate HP"
-msgstr "Yüksek güç (HP) kod oranı"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Düşük güç (LP) kod oranı"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1644,6 +1706,10 @@ msgstr "Resim içinde resim açılamıyor"
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "%s zamanlayıcısı ile çakışmadan dolayı kayıt yapılamaz"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr "Hata günlüğü ayarları"
@@ -1824,6 +1890,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr "DVD Dosya gezgini"
@@ -1908,10 +1977,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Gecikme"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Sil"
@@ -2097,6 +2175,12 @@ msgstr ""
 "Dosya sistemini kontrol etmek istiyor musunuz?\n"
 "Bu işlem çok uzun sürebilir!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2296,6 +2380,12 @@ msgstr "Dreambox DVD biçimi (HDTV uyumlu)"
 msgid "Dreambox software because updates are available."
 msgstr "Dreambox güncellemelerini yükleyin"
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr "Süre: "
@@ -2436,10 +2526,25 @@ msgstr "Etkinleştir"
 msgid "Enable /media"
 msgstr "/media yönetimine izin ver"
 
+msgid "Enable 1080p24 Mode"
+msgstr "1080p24 kipini etkinleştir"
+
+msgid "Enable 1080p25 Mode"
+msgstr "1080p25 kipini etkinleştir"
+
+msgid "Enable 1080p30 Mode"
+msgstr "1080p30 kipini etkinleştir"
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "aktif anten için 5V gerilimi etkinleştir"
 
+msgid "Enable 720p24 Mode"
+msgstr "720p24 kipini etkinleştir"
+
+msgid "Enable Autoresolution"
+msgstr "Otoçözünürlüğü etkinleştir"
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr "Temizlik sihirbazı etkinleştirilsin mi?"
@@ -2561,18 +2666,10 @@ msgstr ""
 "© 2006 - Stephan Reichholf"
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Hızlı sardırma hızı (FF)"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Geri sardırma hızı (RW)"
-
-#
 msgid "Enter main menu..."
 msgstr "Ana menüyü göster..."
 
@@ -2647,6 +2744,9 @@ msgstr ""
 msgid "Estonian"
 msgstr "Estçe"
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Program detayı"
@@ -2850,6 +2950,11 @@ msgstr "Ağ yeniden başlatıldı"
 msgid "Finnish"
 msgstr "Fince"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2869,6 +2974,12 @@ msgstr "Belirtilen görevler OK'a basmanızın ardından işleme alınacak!"
 msgid "Format"
 msgstr "Biçimlendir"
 
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified, %d conflicts encountered."
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -2879,10 +2990,6 @@ msgstr ""
 "%d zamanlayıcı eklendi ve %d düzenlendi."
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Adım adım ilerletmede çerçeve tekrar sayısı "
-
-#
 msgid "Frame size in full view"
 msgstr "Tam ekranda çerçeve boyutu"
 
@@ -2925,6 +3032,9 @@ msgstr "Frizyece"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2979,6 +3089,9 @@ msgstr "Genel PCM gecikmesi"
 msgid "General PCM delay (ms)"
 msgstr "Genel PCM gecikmesi (ms)"
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Tür"
@@ -3055,23 +3168,24 @@ msgid "Green boost"
 msgstr "Yeşil doygunluğu"
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Koruma Süresi"
-
-#
-msgid "Guard interval mode"
-msgstr "Koruma süre kipi"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr "Başlama/Bitiş bilgisini mevcutlardan al"
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr "HD videolar"
@@ -3098,6 +3212,9 @@ msgstr "Kullanılmadığında sabit diski bekleme kipine geçir"
 msgid "Help"
 msgstr "Yardım"
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "Gizlenmiş ağ SSID"
@@ -3106,13 +3223,8 @@ msgstr "Gizlenmiş ağ SSID"
 msgid "Hidden networkname"
 msgstr "Gizlenmiş ağ adı"
 
-#
-msgid "Hierarchy Information"
-msgstr "Hiyerarşi Bilgisi"
-
-#
-msgid "Hierarchy mode"
-msgstr "Hiyerarşi kipi"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3183,11 +3295,10 @@ msgstr "ISO yol adı"
 msgid "Icelandic"
 msgstr "İzlandaca"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3291,6 +3402,12 @@ msgstr "Bilgi"
 msgid "Init"
 msgstr "Sıfırla"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3391,6 +3508,9 @@ msgstr "Dahili Flaş"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3591,6 +3711,11 @@ msgstr "Dil seçimi"
 msgid "Last config"
 msgstr "Son ayar"
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "Son hız"
@@ -3648,6 +3773,9 @@ msgstr "Link:"
 msgid "Linked titles with a DVD menu"
 msgstr "DVD Menüsü ile bağlı başlıklar"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Depolama Aygıtları"
@@ -3784,6 +3912,9 @@ msgstr "Uydu alıcınızın sistem yazılımı yönetin"
 msgid "Manual Scan"
 msgstr "Elle arama"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Transponder bilgilerini elle gir"
@@ -4060,6 +4191,9 @@ msgstr "Film Listesi Menüsü"
 msgid "Multi EPG"
 msgstr "Çoklu EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr "Çoklu ortam"
@@ -4068,6 +4202,9 @@ msgstr "Çoklu ortam"
 msgid "Multiple service support"
 msgstr "Çoklu kanal desteği"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Çoklu uydu"
@@ -4137,6 +4274,9 @@ msgstr ""
 msgid "NFS share"
 msgstr "NFS paylaşım"
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "ŞİMDİ"
@@ -4166,6 +4306,9 @@ msgstr "İsim sunucusu (DNS) kurulumu"
 msgid "Nameserver settings"
 msgstr "İsim sunucusu (DNS) ayarları"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4321,6 +4464,9 @@ msgstr "Ağ gezgini"
 msgid "NetworkWizard"
 msgstr "Ağ yapılandırma sihirbazı"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr "Hiç"
@@ -4492,6 +4638,9 @@ msgstr ""
 "Kablosuz ağ bulunamadı! Kontrollerinizi yaptıktan sonra Lütfen yenile tuşuna "
 "basın."
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4586,6 +4735,12 @@ msgstr "Kuzey"
 msgid "Norwegian"
 msgstr "Norveççe"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4599,6 +4754,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr "Bilgiler youtube'dan alınamadı"
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4641,6 +4799,9 @@ msgstr "Tamam, başka bir eklenti kaldır"
 msgid "OK, remove some extensions"
 msgstr "Tamam, benzer eklentileri kaldır"
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "OSD Ayarları"
@@ -4708,9 +4869,8 @@ msgstr "Eklenti menüsünü aç"
 msgid "Optionally enter your name if you want to."
 msgstr "Adınızı göndermek istiyorsanız adınızı giriniz."
 
-#
-msgid "Orbital Position"
-msgstr "Uydu yörüngesi"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4733,10 +4893,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "PID"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Paket listesi güncelleniyor"
@@ -5189,10 +5355,6 @@ msgid "Poland"
 msgstr "Polonya"
 
 #
-msgid "Polarity"
-msgstr "Polarite"
-
-#
 msgid "Polarization"
 msgstr "Polarizasyon"
 
@@ -5228,6 +5390,9 @@ msgstr "Port D"
 msgid "Portuguese"
 msgstr "Portekizce"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Pozisyoner"
@@ -5443,6 +5608,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Raydo"
@@ -5553,6 +5721,9 @@ msgstr "Kayıt"
 msgid "Recordings always have priority"
 msgstr "Kayıt işlemine öncelik ver"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5773,6 +5944,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Kaldığı yerden devam et"
@@ -5812,9 +5986,8 @@ msgstr "Geri sarma hızları"
 msgid "Right"
 msgstr "Sağ"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5824,6 +5997,9 @@ msgstr "Motor dönüş hızı"
 msgid "Running"
 msgstr "Çalıştırılıyor"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr "Rusya"
@@ -5836,6 +6012,21 @@ msgstr "Rusça"
 msgid "S-Video"
 msgstr "S-Video"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 msgid "SINGLE LAYER DVD"
 msgstr "TEK KATMAN DVD"
 
@@ -5851,6 +6042,19 @@ msgstr "SNR:"
 msgid "SSID:"
 msgstr "Ağ adı (SSID):"
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Ctesi"
@@ -6310,6 +6514,9 @@ msgstr ""
 "Kanal bulunamadı!\n"
 "(SID, PAT içerisinde bulunamadı)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Kanal arama"
@@ -6444,6 +6651,9 @@ msgstr "Kanal seçim ekranında EPG sürelerini göster"
 msgid "Show in extension menu"
 msgstr "Eklentiler menüsünde göster"
 
+msgid "Show info screen"
+msgstr "Bilgi ekranını göster"
+
 #
 msgid "Show infobar on channel change"
 msgstr "Kanal değiştirildiğinde bilgi çubuğunu göster"
@@ -6456,6 +6666,9 @@ msgstr "EPG değişikliklerinde bilgi çubuğunu göster"
 msgid "Show infobar on skip forward/backward"
 msgstr "İleri/geri sardırmada bilgi çubuğunu göster"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Pozisyoner haraketini göster"
@@ -6729,6 +6942,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr "Web arayüzünü başlat"
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "En baştan başla"
@@ -6852,6 +7068,9 @@ msgstr "Pazar"
 msgid "Sunday"
 msgstr "Pazar"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Ana <-> PiP yer değiştir"
@@ -6875,13 +7094,8 @@ msgstr "Önceki alt servise geç"
 msgid "Switchable tuner types:"
 msgstr "Seçilebilir tuner tipleri:"
 
-#
-msgid "Symbol Rate"
-msgstr "Sembol Oranı"
-
-#
-msgid "Symbolrate"
-msgstr "Sembol oranı"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6896,10 +7110,19 @@ msgstr "ÇEVİRMEN HAKKINDA"
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS dosyası ISO9660 level 1 standartları için çok büyük!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV Sistemi"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Koleksiyonun içerik tablosu (TOC)"
@@ -6932,6 +7155,9 @@ msgstr "Tayvan"
 msgid "Temperature and Fan control"
 msgstr "Sıcaklık ve fan kontrolü"
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Karasal"
@@ -7620,10 +7846,6 @@ msgid "Translation:"
 msgstr "Çeviri:"
 
 #
-msgid "Transmission Mode"
-msgstr "İletim (Transmisyon) Modu"
-
-#
 msgid "Transmission mode"
 msgstr "İletim (transmisyon) modu"
 
@@ -7632,10 +7854,6 @@ msgid "Transponder"
 msgstr "Transponder"
 
 #
-msgid "Transponder Type"
-msgstr "Transponder tipi"
-
-#
 msgid "Travel & Events"
 msgstr "Gezi"
 
@@ -7762,6 +7980,9 @@ msgstr "Yükle(me)"
 msgid "Undo uninstall"
 msgstr "Kaldır(ma)"
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7790,6 +8011,9 @@ msgstr "Amerika"
 msgid "Universal LNB"
 msgstr "Üniversal LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7900,10 +8124,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Adım adım ilerletmeyi bu hızda kullan"
-
-#
 msgid "Use power measurement"
 msgstr "Güç kullanımını ölç"
 
@@ -7985,13 +8205,22 @@ msgstr "VMGM (tanıtım filmi)"
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr "Düşey (V)"
@@ -8008,6 +8237,9 @@ msgstr "Görüntü İnce Ayar Sihirbazı"
 msgid "Video Output"
 msgstr "Görüntü çıkışı"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Görüntü Kurulumu"
@@ -8254,6 +8486,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr "Web arayüzü"
@@ -8435,6 +8670,11 @@ msgstr "Neleri aramak istiyorsunuz?"
 msgid "What to do with submitted crashlogs?"
 msgstr "Gönderilen günlükler ne yapılsın?"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8478,6 +8718,15 @@ msgstr "Kablosuz Ağ"
 msgid "Wireless Network State"
 msgstr "Kablosuz ağ durumu"
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8702,6 +8951,12 @@ msgstr ""
 "'Anahtar kelime', EPG programlarında aranacak olan eşleştirme kelime/"
 "cümlesidir."
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Bunu silemezsiniz!"
@@ -8917,6 +9172,9 @@ msgstr "Adınız (opsiyonel):"
 msgid "Your network configuration has been activated."
 msgstr "Ağ yapılandırmanız etkinleştirildi."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr "Ağ diski bağlantınız etkinleştirildi."
@@ -9141,6 +9399,12 @@ msgstr "Atanmış CAId'ler:"
 msgid "assigned Services/Provider:"
 msgstr "Atanmış Kanal/Yayıncılar:"
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9159,6 +9423,9 @@ msgstr "ses izleri"
 msgid "auto"
 msgstr "otomatik"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "mevcut"
@@ -9191,6 +9458,9 @@ msgstr "kara liste"
 msgid "blue"
 msgstr "mavi"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9232,6 +9502,9 @@ msgstr "oynatma listesini temizle"
 msgid "complex"
 msgstr "karmaşık (kompleks)"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "ayar menüsü"
@@ -9263,6 +9536,12 @@ msgstr "kaldırılamadı"
 msgid "create directory"
 msgstr "klasör oluştur"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9275,6 +9554,9 @@ msgstr "günlük"
 msgid "day"
 msgstr "gün"
 
+msgid "default"
+msgstr "varsayılan"
+
 #
 msgid "delete"
 msgstr "sil"
@@ -9334,6 +9616,9 @@ msgstr "kaydetme"
 msgid "done!"
 msgstr "tamamlandı!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "alternatifleri düzenle"
@@ -9613,6 +9898,9 @@ msgstr "dakika"
 msgid "minutes"
 msgstr "dakika"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "ay"
@@ -9810,9 +10098,6 @@ msgstr "kırmızı"
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr "isim sunucu kaydını silin"
@@ -10147,6 +10432,10 @@ msgstr "zaman, bölüm, ses, altyazı bilgisini aç/kapa"
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr "kullanılamaz"
@@ -10215,6 +10504,9 @@ msgstr "haftalık"
 msgid "whitelist"
 msgstr "beyaz liste"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "çalışıyor"
@@ -10385,19 +10677,6 @@ msgstr "kanal değiştirildi"
 #~ msgid "Automatic SSID lookup"
 #~ msgstr "Otomatik SSID arama"
 
-#~ msgid "Autoresolution Switch"
-#~ msgstr "Otoçözünürlük anahtarı"
-
-#~ msgid "Autoresolution is not working in Scart/DVI-PC Mode"
-#~ msgstr ""
-#~ "Otoçözünürlük eklentisi Scart/DVI-PC bağlantılarını desteklememektedir."
-
-#~ msgid "Autoresolution settings"
-#~ msgstr "Otoçözünürlük ayarları"
-
-#~ msgid "Autoresolution videomode setup"
-#~ msgstr "Otoçözünürlük video kipi ayarları"
-
 #
 #~ msgid "Backup"
 #~ msgstr "Yedek al"
@@ -10466,6 +10745,22 @@ msgstr "kanal değiştirildi"
 #~ msgstr "Kaynak seç"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Yüksek kod oranı"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Düşük kod oranı"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Yüksek güç (HP) kod oranı"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Düşük güç (LP) kod oranı"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact flash kartı"
 
@@ -10640,21 +10935,6 @@ msgstr "kanal değiştirildi"
 #~ msgid "Edit IPKG source URL..."
 #~ msgstr "IPKG kaynak adresi..."
 
-#~ msgid "Enable 1080p24 Mode"
-#~ msgstr "1080p24 kipini etkinleştir"
-
-#~ msgid "Enable 1080p25 Mode"
-#~ msgstr "1080p25 kipini etkinleştir"
-
-#~ msgid "Enable 1080p30 Mode"
-#~ msgstr "1080p30 kipini etkinleştir"
-
-#~ msgid "Enable 720p24 Mode"
-#~ msgstr "720p24 kipini etkinleştir"
-
-#~ msgid "Enable Autoresolution"
-#~ msgstr "Otoçözünürlüğü etkinleştir"
-
 #
 #~ msgid "Enable LAN"
 #~ msgstr "LAN'ı Aç"
@@ -10695,6 +10975,14 @@ msgstr "kanal değiştirildi"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Hızlı sardırma hızı (FF)"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Geri sardırma hızı (RW)"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Kablosuz (WLAN) ağ adı/SSID girin:"
 
@@ -10737,6 +11025,10 @@ msgstr "kanal değiştirildi"
 #~ msgid "Font size"
 #~ msgstr "Yazıtipi boyutu"
 
+#
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Adım adım ilerletmede çerçeve tekrar sayısı "
+
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box IP adresi"
 
@@ -10757,6 +11049,22 @@ msgstr "kanal değiştirildi"
 #~ msgstr "Tür:"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Koruma Süresi"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Koruma süre kipi"
+
+#
+#~ msgid "Hierarchy Information"
+#~ msgstr "Hiyerarşi Bilgisi"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Hiyerarşi kipi"
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Bu sayfayı görebiliyorsanız, OK'a basınız."
 
@@ -10940,6 +11248,10 @@ msgstr "kanal değiştirildi"
 #~ msgstr "Çevrimiçi Güncelle"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Uydu yörüngesi"
+
+#
 #
 #
 #
@@ -11039,6 +11351,10 @@ msgstr "kanal değiştirildi"
 #~ msgstr "Eklenti yönetimi"
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Polarite"
+
+#
 #~ msgid "Port"
 #~ msgstr "Port"
 
@@ -11162,6 +11478,10 @@ msgstr "kanal değiştirildi"
 #~ msgstr "Ağ bilgisi getiriliyor. Lütfen bekleyin..."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
+#
 #~ msgid "SSL"
 #~ msgstr "SSL"
 
@@ -11252,9 +11572,6 @@ msgstr "kanal değiştirildi"
 #~ msgid "Setup for the AC3 Lip Sync Plugin"
 #~ msgstr "AC3 dudak senkron eklentisi"
 
-#~ msgid "Show info screen"
-#~ msgstr "Bilgi ekranını göster"
-
 #
 #~ msgid "Skin..."
 #~ msgstr "Arayüz"
@@ -11324,6 +11641,14 @@ msgstr "kanal değiştirildi"
 #~ msgstr "Kullanıcı tuş gecikmelerine geç"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Sembol Oranı"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Sembol oranı"
+
+#
 #~ msgid ""
 #~ "Thank you for using the wizard. Your Dreambox is now ready to use.\n"
 #~ "\n"
@@ -11482,6 +11807,14 @@ msgstr "kanal değiştirildi"
 #~ "yönlendirmeleri takip edin."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "İletim (Transmisyon) Modu"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Transponder tipi"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -11531,6 +11864,10 @@ msgstr "kanal değiştirildi"
 #~ msgstr "Hesaplanmış gecikmeyi kullan"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Adım adım ilerletmeyi bu hızda kullan"
+
+#
 #
 #
 #
@@ -11752,9 +12089,6 @@ msgstr "kanal değiştirildi"
 #~ msgid "color"
 #~ msgstr "renk"
 
-#~ msgid "default"
-#~ msgstr "varsayılan"
-
 #
 #~ msgid "enigma2 and network"
 #~ msgstr "enigma2 ve ağ"
index af214d4..9b4c78d 100755 (executable)
--- a/po/uk.po
+++ b/po/uk.po
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: tuxbox-enigma 0.0.1\n"
 "Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2011-01-27 12:42+0000\n"
+"POT-Creation-Date: 2011-04-20 10:39+0000\n"
 "PO-Revision-Date: 2008-09-28 14:03+0200\n"
 "Last-Translator: stepan_kv <stepan_kv@mail.ru>\n"
 "Language-Team: http://sat-ukraine.info/\n"
@@ -198,6 +198,12 @@ msgstr ""
 msgid "%H:%M"
 msgstr "%Г:%ХВ"
 
+#, python-format
+msgid ""
+"%d conflict(s) encountered when trying to add new timers:\n"
+"%s"
+msgstr ""
+
 #
 #, python-format
 msgid "%d jobs are running in the background!"
@@ -236,6 +242,10 @@ msgstr ""
 msgid "%s (%s)\n"
 msgstr "%s (%s)\n"
 
+#, python-format
+msgid "%s: %s at %s"
+msgstr ""
+
 #
 msgid "(ZAP)"
 msgstr "(Переключити)"
@@ -392,10 +402,10 @@ msgstr "??"
 msgid "A"
 msgstr "A"
 
-msgid "A BackToTheRoots-Skin .. or good old times."
+msgid "A BackToTheRoots-Skin .. but with Warp-8 speed."
 msgstr ""
 
-msgid "A BackToTheRoots-Skin ... or good old times."
+msgid "A BackToTheRoots-Skin .. or good old times."
 msgstr ""
 
 msgid "A basic ftp client"
@@ -416,6 +426,9 @@ msgstr ""
 msgid "A demo plugin for TPM usage."
 msgstr ""
 
+msgid "A dreambox simulation from SG-Atlantis displays."
+msgstr ""
+
 #
 msgid ""
 "A finished record timer wants to set your\n"
@@ -439,6 +452,9 @@ msgstr "Графічний EPG для всіх каналів цього спи
 msgid "A graphical EPG interface"
 msgstr ""
 
+msgid "A graphical EPG interface and EPG tools manager"
+msgstr ""
+
 msgid "A graphical EPG interface."
 msgstr ""
 
@@ -898,6 +914,9 @@ msgstr "запитувати користувача"
 msgid "Aspect Ratio"
 msgstr "Співвідношення сторін:"
 
+msgid "Aspect ratio"
+msgstr ""
+
 msgid "Assigning providers/services/caids to a CI module"
 msgstr ""
 
@@ -912,6 +931,9 @@ msgstr "Аудіо"
 msgid "Audio Options..."
 msgstr "вибір аудіо-доріжки..."
 
+msgid "Audio PID"
+msgstr ""
+
 #
 msgid "Audio Sync"
 msgstr ""
@@ -978,6 +1000,15 @@ msgid ""
 "criteria."
 msgstr ""
 
+msgid "AutoTimer was added successfully"
+msgstr ""
+
+msgid "AutoTimer was changed successfully"
+msgstr ""
+
+msgid "AutoTimer was removed"
+msgstr ""
+
 #
 msgid "Automatic"
 msgstr "Автоматично"
@@ -1012,6 +1043,24 @@ msgstr ""
 msgid "Automatically send crashlogs to Dream Multimedia"
 msgstr ""
 
+#, python-format
+msgid ""
+"Autoresolution Plugin Testmode:\n"
+"Is %s ok?"
+msgstr ""
+
+msgid "Autoresolution Switch"
+msgstr ""
+
+msgid "Autoresolution is not working in Scart/DVI-PC Mode"
+msgstr ""
+
+msgid "Autoresolution settings"
+msgstr ""
+
+msgid "Autoresolution videomode setup"
+msgstr ""
+
 #
 msgid "Autos & Vehicles"
 msgstr ""
@@ -1054,6 +1103,12 @@ msgstr "BER:"
 msgid "Back"
 msgstr "Назад"
 
+msgid "Back, lower USB Slot"
+msgstr ""
+
+msgid "Back, upper USB Slot"
+msgstr ""
+
 #
 msgid "Background"
 msgstr "Фон"
@@ -1148,6 +1203,11 @@ msgstr ""
 msgid "Brightness"
 msgstr "Яскравість"
 
+msgid ""
+"Browse ORF and SAT1 Teletext independent from channel. This need I-net "
+"conection."
+msgstr ""
+
 msgid "Browse for and connect to network shares"
 msgstr ""
 
@@ -1178,6 +1238,17 @@ msgstr ""
 msgid "Bus: "
 msgstr "Шина:"
 
+msgid ""
+"By enabling this events will not be matched if they don't occur on certain "
+"dates."
+msgstr ""
+
+msgid ""
+"By enabling this you will be notified about timer conflicts found during "
+"automated polling. There is no intelligence involved, so it might bother you "
+"about the same conflict over and over."
+msgstr ""
+
 #
 msgid ""
 "By pressing the OK Button on your remote control, the info bar is being "
@@ -1444,21 +1515,11 @@ msgstr ""
 msgid "Close title selection"
 msgstr ""
 
-#
-msgid "Code rate high"
-msgstr "Швидкість кодування висока"
-
-#
-msgid "Code rate low"
-msgstr "Швидкість кодування низька"
-
-#
-msgid "Coderate HP"
-msgstr "Швидкість кодування HP"
+msgid "Code rate HP"
+msgstr ""
 
-#
-msgid "Coderate LP"
-msgstr "Швидкість кодування LP"
+msgid "Code rate LP"
+msgstr ""
 
 #
 msgid "Collection name"
@@ -1643,6 +1704,10 @@ msgstr ""
 msgid "Couldn't record due to conflicting timer %s"
 msgstr "Неможливо записати через конфлікт таймера %s"
 
+#, python-format
+msgid "Couldn't record due to invalid service %s"
+msgstr ""
+
 #
 msgid "Crashlog settings"
 msgstr "Налаштування крешлогів"
@@ -1822,6 +1887,9 @@ msgstr "DVB-S"
 msgid "DVB-S2"
 msgstr "DVB-S2"
 
+msgid "DVD Drive"
+msgstr ""
+
 #
 msgid "DVD File Browser"
 msgstr ""
@@ -1907,10 +1975,19 @@ msgstr ""
 msgid "Define a startup service for your Dreambox."
 msgstr ""
 
+msgid "Deinterlacer mode for interlaced content"
+msgstr ""
+
+msgid "Deinterlacer mode for progressive content"
+msgstr ""
+
 #
 msgid "Delay"
 msgstr "Затримка"
 
+msgid "Delay x seconds after service started"
+msgstr ""
+
 #
 msgid "Delete"
 msgstr "Видалити"
@@ -2098,6 +2175,12 @@ msgstr ""
 "Ви дійсно хочете перевірити файлову систему?\n"
 "Це може зайняти багато часу!"
 
+#, python-format
+msgid ""
+"Do you really want to delete %s\n"
+"%s?"
+msgstr ""
+
 #
 #, python-format
 msgid "Do you really want to delete %s?"
@@ -2295,6 +2378,12 @@ msgstr "DVD дані в Dreambox-формат (HDTV-сумісний)"
 msgid "Dreambox software because updates are available."
 msgstr "ПЗ Dreambox, тому що оновлення доступні."
 
+msgid "Driver for Ralink RT8070/RT3070/RT3370 based wireless-n USB devices."
+msgstr ""
+
+msgid "Driver for Realtek r8712u based wireless-n USB devices."
+msgstr ""
+
 #
 msgid "Duration: "
 msgstr ""
@@ -2436,10 +2525,25 @@ msgstr "Ввімкнути"
 msgid "Enable /media"
 msgstr ""
 
+msgid "Enable 1080p24 Mode"
+msgstr ""
+
+msgid "Enable 1080p25 Mode"
+msgstr ""
+
+msgid "Enable 1080p30 Mode"
+msgstr ""
+
 #
 msgid "Enable 5V for active antenna"
 msgstr "Подати 5V для активної антени"
 
+msgid "Enable 720p24 Mode"
+msgstr ""
+
+msgid "Enable Autoresolution"
+msgstr ""
+
 #
 msgid "Enable Cleanup Wizard?"
 msgstr ""
@@ -2560,18 +2664,10 @@ msgid ""
 msgstr ""
 
 #
-msgid "Enter Fast Forward at speed"
-msgstr "Початкова швидкість перемотування вперед"
-
-#
 msgid "Enter IP to scan..."
 msgstr ""
 
 #
-msgid "Enter Rewind at speed"
-msgstr "Початкова швидкість перемотування назад"
-
-#
 msgid "Enter main menu..."
 msgstr "вхід до Головного Меню..."
 
@@ -2646,6 +2742,9 @@ msgstr ""
 msgid "Estonian"
 msgstr ""
 
+msgid "Ethernet network interface"
+msgstr ""
+
 #
 msgid "Eventview"
 msgstr "Перегдяд завдань"
@@ -2845,6 +2944,11 @@ msgstr "Перезавантаження вашої мережі заверше
 msgid "Finnish"
 msgstr "Фінська"
 
+msgid ""
+"First day to match events. No event that begins before this date will be "
+"matched."
+msgstr ""
+
 msgid "First generate your skin-style with the Ai.HD-Control plugin."
 msgstr ""
 
@@ -2864,16 +2968,18 @@ msgstr ""
 msgid "Format"
 msgstr "Форматування"
 
-#
 #, python-format
 msgid ""
 "Found a total of %d matching Events.\n"
-"%d Timer were added and %d modified."
+"%d Timer were added and %d modified, %d conflicts encountered."
 msgstr ""
 
 #
-msgid "Frame repeat count during non-smooth winding"
-msgstr "Кількість повторів кадру під час неплавного переходу"
+#, python-format
+msgid ""
+"Found a total of %d matching Events.\n"
+"%d Timer were added and %d modified."
+msgstr ""
 
 #
 msgid "Frame size in full view"
@@ -2918,6 +3024,9 @@ msgstr "Фрізійська"
 msgid "FritzCall shows incoming calls to your Fritz!Box on your Dreambox."
 msgstr ""
 
+msgid "Front USB Slot"
+msgstr ""
+
 msgid "Frontend for /tmp/mmi.socket"
 msgstr ""
 
@@ -2973,6 +3082,9 @@ msgstr "Загальна PCM затримка"
 msgid "General PCM delay (ms)"
 msgstr ""
 
+msgid "Generates and Shows TV Charts of all users having this plugin installed"
+msgstr ""
+
 #
 msgid "Genre"
 msgstr "Жанр"
@@ -3051,23 +3163,24 @@ msgid "Green boost"
 msgstr ""
 
 msgid ""
-"Growlee allows your Dreambox to send short messages using the growl "
-"protocol\n"
-"like Recording started notifications to a PC running a growl client"
+"Growlee allows your Dreambox to forward notifications like 'Record started' "
+"to a PC running a growl, snarl or syslog compatible client or directly to an "
+"iPhone using prowl."
 msgstr ""
 
-#
-msgid "Guard Interval"
-msgstr "Захисний Інтервал"
-
-#
-msgid "Guard interval mode"
-msgstr "Режим Захисного Інтервалу"
+msgid "Guard interval"
+msgstr ""
 
 #
 msgid "Guess existing timer based on begin/end"
 msgstr ""
 
+msgid "HD Interlace Mode"
+msgstr ""
+
+msgid "HD Progressive Mode"
+msgstr ""
+
 #
 msgid "HD videos"
 msgstr ""
@@ -3096,6 +3209,9 @@ msgstr "Режим очікування HDD після"
 msgid "Help"
 msgstr ""
 
+msgid "Hidden network"
+msgstr ""
+
 #
 msgid "Hidden network SSID"
 msgstr "Прихована мережа SSID"
@@ -3104,13 +3220,8 @@ msgstr "Прихована мережа SSID"
 msgid "Hidden networkname"
 msgstr ""
 
-#
-msgid "Hierarchy Information"
-msgstr "Ієрархічна Інформація"
-
-#
-msgid "Hierarchy mode"
-msgstr "Ієрархічний режим"
+msgid "Hierarchy info"
+msgstr ""
 
 #
 msgid "High bitrate support"
@@ -3181,11 +3292,10 @@ msgstr "ISO шлях"
 msgid "Icelandic"
 msgstr "Ісландська"
 
-#
 #, python-format
 msgid ""
 "If this is enabled an existing timer will also be considered recording an "
-"event if it records at least 80% of the it."
+"event if it records at least 80%% of the it."
 msgstr ""
 
 #
@@ -3290,6 +3400,12 @@ msgstr "Інформація"
 msgid "Init"
 msgstr "Ініціалізувати"
 
+msgid "Initial Fast Forward speed"
+msgstr ""
+
+msgid "Initial Rewind speed"
+msgstr ""
+
 #
 msgid "Initial location in new timers"
 msgstr ""
@@ -3391,6 +3507,9 @@ msgstr "Внутрішня Флеш"
 msgid "Internal LAN adapter."
 msgstr ""
 
+msgid "Internal USB Slot"
+msgstr ""
+
 msgid "Internal firmware updater"
 msgstr ""
 
@@ -3588,6 +3707,11 @@ msgstr "Вибір мови"
 msgid "Last config"
 msgstr ""
 
+msgid ""
+"Last day to match events. Events have to begin before this date to be "
+"matched."
+msgstr ""
+
 #
 msgid "Last speed"
 msgstr "остання швидкість"
@@ -3645,6 +3769,9 @@ msgstr "З'єднання:"
 msgid "Linked titles with a DVD menu"
 msgstr "Зв'язані заголовки DVD-Меню"
 
+msgid "List available networks"
+msgstr ""
+
 #
 msgid "List of Storage Devices"
 msgstr "Список пристроїв"
@@ -3781,6 +3908,9 @@ msgstr "Управління ПЗ ресівера"
 msgid "Manual Scan"
 msgstr "Ручний пошук"
 
+msgid "Manual configuration"
+msgstr ""
+
 #
 msgid "Manual transponder"
 msgstr "Вибірковий транспондер"
@@ -4068,6 +4198,9 @@ msgstr "Меню списку фільмів"
 msgid "Multi EPG"
 msgstr "Multi-EPG"
 
+msgid "Multi-EPG bouquet selection"
+msgstr ""
+
 #
 msgid "Multimedia"
 msgstr "Мультимедія"
@@ -4076,6 +4209,9 @@ msgstr "Мультимедія"
 msgid "Multiple service support"
 msgstr "Підтримка мультисервісів"
 
+msgid "Multiplex"
+msgstr ""
+
 #
 msgid "Multisat"
 msgstr "Декілька супутників"
@@ -4145,6 +4281,9 @@ msgstr "Запис NFI іміджу завершено. Натисніть Жо
 msgid "NFS share"
 msgstr ""
 
+msgid "NIM"
+msgstr ""
+
 #
 msgid "NOW"
 msgstr "ЗАРАЗ"
@@ -4174,6 +4313,9 @@ msgstr "Налаштування DNS"
 msgid "Nameserver settings"
 msgstr "Параметри  DNS"
 
+msgid "Namespace"
+msgstr ""
+
 msgid "Nemesis BlackBox Skin"
 msgstr ""
 
@@ -4329,6 +4471,9 @@ msgstr ""
 msgid "NetworkWizard"
 msgstr "Майстер налаштувань мережі"
 
+msgid "Networkname (SSID)"
+msgstr ""
+
 #
 msgid "Never"
 msgstr ""
@@ -4501,6 +4646,9 @@ msgstr ""
 msgid "No wireless networks found! Please refresh."
 msgstr ""
 
+msgid "No wireless networks found! Searching..."
+msgstr ""
+
 #
 msgid ""
 "No working local network adapter found.\n"
@@ -4595,6 +4743,12 @@ msgstr "Північ"
 msgid "Norwegian"
 msgstr "Норвежська"
 
+msgid "Not after"
+msgstr ""
+
+msgid "Not before"
+msgstr ""
+
 #
 #, python-format
 msgid ""
@@ -4608,6 +4762,9 @@ msgstr ""
 msgid "Not fetching feed entries"
 msgstr ""
 
+msgid "Not-Associated"
+msgstr ""
+
 #
 msgid ""
 "Nothing to scan!\n"
@@ -4651,6 +4808,9 @@ msgstr "ОК, видалити інші компоненти"
 msgid "OK, remove some extensions"
 msgstr "ОК, видалити деякі компоненти"
 
+msgid "ONID"
+msgstr ""
+
 #
 msgid "OSD Settings"
 msgstr "Налаштування OSD"
@@ -4720,9 +4880,8 @@ msgstr ""
 msgid "Optionally enter your name if you want to."
 msgstr "При необхідності введіть Ваше ім'я, якщо хочете."
 
-#
-msgid "Orbital Position"
-msgstr "Орбітальна позиція"
+msgid "Orbital position"
+msgstr ""
 
 #
 msgid "Outer Bound (+/-)"
@@ -4745,10 +4904,16 @@ msgstr ""
 msgid "PAL"
 msgstr "PAL"
 
+msgid "PCR PID"
+msgstr ""
+
 #
 msgid "PIDs"
 msgstr "Піди"
 
+msgid "PMT PID"
+msgstr ""
+
 #
 msgid "Package list update"
 msgstr "Оновлення списку пакетів"
@@ -5191,10 +5356,6 @@ msgid "Poland"
 msgstr ""
 
 #
-msgid "Polarity"
-msgstr "Полярність"
-
-#
 msgid "Polarization"
 msgstr "Поляризація"
 
@@ -5230,6 +5391,9 @@ msgstr "Порт D"
 msgid "Portuguese"
 msgstr "Португальська"
 
+msgid "Position of finished Timers in Timerlist"
+msgstr ""
+
 #
 msgid "Positioner"
 msgstr "Позиціонер"
@@ -5445,6 +5609,9 @@ msgstr "RGB"
 msgid "RSS viewer"
 msgstr ""
 
+msgid "RT8070/RT3070/RT3370 USB wireless-n driver"
+msgstr ""
+
 #
 msgid "Radio"
 msgstr "Радіо"
@@ -5555,6 +5722,9 @@ msgstr "Записи"
 msgid "Recordings always have priority"
 msgstr "Запис завжди має перевагу"
 
+msgid "Redirect notifications to Growl, Snarl, Prowl or Syslog"
+msgstr ""
+
 msgid "Reenter new PIN"
 msgstr ""
 
@@ -5778,6 +5948,9 @@ msgstr ""
 msgid "Restrict \"after event\" to a certain timespan?"
 msgstr ""
 
+msgid "Restrict to events on certain dates"
+msgstr ""
+
 #
 msgid "Resume from last position"
 msgstr "Продовжити з останньої позиції"
@@ -5818,9 +5991,8 @@ msgstr "Швидкість перемотування назад"
 msgid "Right"
 msgstr "Вправо"
 
-#
-msgid "Rolloff"
-msgstr "Rolloff"
+msgid "Roll-off"
+msgstr ""
 
 #
 msgid "Rotor turning speed"
@@ -5830,6 +6002,9 @@ msgstr "Швидкість обертання ротора"
 msgid "Running"
 msgstr "В дії"
 
+msgid "Running in testmode"
+msgstr ""
+
 #
 msgid "Russia"
 msgstr ""
@@ -5842,6 +6017,21 @@ msgstr "Російська"
 msgid "S-Video"
 msgstr "S-Відео"
 
+msgid "SD 25/50HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 25/50HZ Progressive Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Interlace Mode"
+msgstr ""
+
+msgid "SD 30/60HZ Progressive Mode"
+msgstr ""
+
+msgid "SID"
+msgstr ""
+
 #
 msgid "SINGLE LAYER DVD"
 msgstr ""
@@ -5858,6 +6048,19 @@ msgstr ""
 msgid "SSID:"
 msgstr ""
 
+msgid ""
+"SVDRP is a protocol developed for the VDR software to control a set-top box "
+"remotely.\n"
+"This plugin only supports a subset of SVDRP and starts automatically using "
+"default settings.\n"
+"\n"
+"You probably don't need this plugin and should use the regular Web Interface "
+"for Enigma2 instead."
+msgstr ""
+
+msgid "SVDRP server for Enigma2"
+msgstr ""
+
 #
 msgid "Sat"
 msgstr "Суб"
@@ -6318,6 +6521,9 @@ msgstr ""
 "Канал не знайдено!\n"
 "(SID не знайдено в PAT)"
 
+msgid "Service reference"
+msgstr ""
+
 #
 msgid "Service scan"
 msgstr "Пошук каналів"
@@ -6452,6 +6658,9 @@ msgstr ""
 msgid "Show in extension menu"
 msgstr ""
 
+msgid "Show info screen"
+msgstr ""
+
 #
 msgid "Show infobar on channel change"
 msgstr "Показувати інфопанель при зміні каналу"
@@ -6464,6 +6673,9 @@ msgstr "Показувати інфопанель під час зміни пе
 msgid "Show infobar on skip forward/backward"
 msgstr "Показувати інфопанель під час перемотки"
 
+msgid "Show notification on conflicts"
+msgstr ""
+
 #
 msgid "Show positioner movement"
 msgstr "Показувати рух позиціонера"
@@ -6737,6 +6949,9 @@ msgstr ""
 msgid "Start Webinterface"
 msgstr ""
 
+msgid "Start easy your multimedia plugins with the PVR-button."
+msgstr ""
+
 #
 msgid "Start from the beginning"
 msgstr "Почати з початку"
@@ -6860,6 +7075,9 @@ msgstr "Нед"
 msgid "Sunday"
 msgstr "Неділя"
 
+msgid "Support \"Fast Scan\"?"
+msgstr ""
+
 #
 msgid "Swap Services"
 msgstr "Заміна каналів"
@@ -6884,13 +7102,8 @@ msgstr "перемкнути на попередній підсервіс"
 msgid "Switchable tuner types:"
 msgstr ""
 
-#
-msgid "Symbol Rate"
-msgstr "Символьна швидкість"
-
-#
-msgid "Symbolrate"
-msgstr "Символ. швидкість"
+msgid "Symbol rate"
+msgstr ""
 
 #
 msgid "System"
@@ -6905,10 +7118,19 @@ msgstr ""
 msgid "TS file is too large for ISO9660 level 1!"
 msgstr "TS файл занадто великий для ISO9660 level 1!"
 
+msgid "TSID"
+msgstr ""
+
+msgid "TV Charts of all users"
+msgstr ""
+
 #
 msgid "TV System"
 msgstr "TV Система"
 
+msgid "TXT PID"
+msgstr ""
+
 #
 msgid "Table of content for collection"
 msgstr "Вміст колекції"
@@ -6941,6 +7163,9 @@ msgstr ""
 msgid "Temperature and Fan control"
 msgstr ""
 
+msgid "Temperature-dependent fan control."
+msgstr ""
+
 #
 msgid "Terrestrial"
 msgstr "Наземний"
@@ -7613,10 +7838,6 @@ msgid "Translation:"
 msgstr "Переклад:"
 
 #
-msgid "Transmission Mode"
-msgstr "Режим передавання"
-
-#
 msgid "Transmission mode"
 msgstr "Режим передавання"
 
@@ -7625,10 +7846,6 @@ msgid "Transponder"
 msgstr "Транспондер"
 
 #
-msgid "Transponder Type"
-msgstr "Тип Транспондера"
-
-#
 msgid "Travel & Events"
 msgstr ""
 
@@ -7760,6 +7977,9 @@ msgstr ""
 msgid "Undo uninstall"
 msgstr ""
 
+msgid "Unencrypted"
+msgstr ""
+
 #
 msgid "UnhandledKey"
 msgstr ""
@@ -7788,6 +8008,9 @@ msgstr ""
 msgid "Universal LNB"
 msgstr "Універсальна LNB"
 
+msgid "Unknown"
+msgstr ""
+
 msgid "Unknown network adapter."
 msgstr ""
 
@@ -7902,10 +8125,6 @@ msgid "Use and control multiple Dreamboxes with different RCs."
 msgstr ""
 
 #
-msgid "Use non-smooth winding at speeds above"
-msgstr "Неплавне перемотування на швидкостях вище"
-
-#
 msgid "Use power measurement"
 msgstr "Використовувати вимірювання потужності"
 
@@ -7988,13 +8207,22 @@ msgstr "VMGM (вступний трейлер)"
 msgid "Vali-XD skin"
 msgstr ""
 
+msgid "Vali.HD.atlantis skin"
+msgstr ""
+
 msgid "Vali.HD.nano skin"
 msgstr ""
 
+msgid "Vali.HD.warp skin"
+msgstr ""
+
 msgid ""
 "Verify your Dreambox authenticity by running the genuine dreambox plugin!"
 msgstr ""
 
+msgid "Verifying your internet connection..."
+msgstr ""
+
 #
 msgid "Vertical"
 msgstr "Вертикально"
@@ -8011,6 +8239,9 @@ msgstr "Майстер налаштування зображення"
 msgid "Video Output"
 msgstr "Відео вихід"
 
+msgid "Video PID"
+msgstr ""
+
 #
 msgid "Video Setup"
 msgstr "Налаштування відео"
@@ -8256,6 +8487,9 @@ msgstr ""
 msgid "Weatherforecast on your Dreambox"
 msgstr ""
 
+msgid "Web-Bouquet-Editor for PC"
+msgstr ""
+
 #
 msgid "Webinterface"
 msgstr ""
@@ -8406,6 +8640,11 @@ msgstr "Що хочете сканувати?"
 msgid "What to do with submitted crashlogs?"
 msgstr "Що робити з надісланими крешлогами?"
 
+msgid ""
+"When supporting \"Fast Scan\" the service type is ignored. You don't need to "
+"enable this unless your Image supports \"Fast Scan\" and you are using it."
+msgstr ""
+
 #
 msgid ""
 "When this option is enabled the AutoTimer won't match events where another "
@@ -8447,6 +8686,15 @@ msgstr "Безпровідна мережа"
 msgid "Wireless Network State"
 msgstr ""
 
+msgid "Wireless network connection setup"
+msgstr ""
+
+msgid "Wireless network connection setup."
+msgstr ""
+
+msgid "Wireless network state"
+msgstr ""
+
 msgid ""
 "With AntiScrollbar you can cover up annoying ticker lines (e.g. in news "
 "channels)."
@@ -8668,6 +8916,12 @@ msgid ""
 "in title' is what is looked for in the EPG."
 msgstr ""
 
+msgid ""
+"You can use the EasyInfo for manage your EPG plugins from info button. You "
+"have also a new now-next event viewer. Easy-PG, the own graphical EPG bowser "
+"is also included."
+msgstr ""
+
 #
 msgid "You cannot delete this!"
 msgstr "Ви не можете це видалити!"
@@ -8855,6 +9109,9 @@ msgstr "Ваше ім'я (необов'язково):"
 msgid "Your network configuration has been activated."
 msgstr "Конфігурація вашої мережі активована."
 
+msgid "Your network is not working. Please try again."
+msgstr ""
+
 #
 msgid "Your network mount has been activated."
 msgstr ""
@@ -9074,6 +9331,12 @@ msgstr ""
 msgid "assigned Services/Provider:"
 msgstr ""
 
+msgid "at beginning"
+msgstr ""
+
+msgid "at end"
+msgstr ""
+
 #
 #, python-format
 msgid "audio track (%s) format"
@@ -9092,6 +9355,9 @@ msgstr "звукова доріжка"
 msgid "auto"
 msgstr "авто"
 
+msgid "autotimers need a match attribute"
+msgstr ""
+
 #
 msgid "available"
 msgstr "доступно"
@@ -9124,6 +9390,9 @@ msgstr "чорний список"
 msgid "blue"
 msgstr "синій"
 
+msgid "bob"
+msgstr ""
+
 #
 #, python-format
 msgid "burn audio track (%s)"
@@ -9165,6 +9434,9 @@ msgstr "очистити плейлист"
 msgid "complex"
 msgstr "комплексний"
 
+msgid "config changed."
+msgstr ""
+
 #
 msgid "config menu"
 msgstr "меню конфігурації"
@@ -9196,6 +9468,12 @@ msgstr "не може бути видалено"
 msgid "create directory"
 msgstr "створити директорію"
 
+msgid "creates virtual series folders from episodes"
+msgstr ""
+
+msgid "creates virtual series folders from sets of recorded episodes"
+msgstr ""
+
 #, python-format
 msgid "currently installed image: %s"
 msgstr ""
@@ -9208,6 +9486,9 @@ msgstr "щодня"
 msgid "day"
 msgstr "день"
 
+msgid "default"
+msgstr ""
+
 #
 msgid "delete"
 msgstr "видалити"
@@ -9267,6 +9548,9 @@ msgstr "не записувати"
 msgid "done!"
 msgstr "виконано!"
 
+msgid "driver for Realtek USB wireless devices"
+msgstr ""
+
 #
 msgid "edit alternatives"
 msgstr "редагувати вибрані канали"
@@ -9547,6 +9831,9 @@ msgstr "хвилина"
 msgid "minutes"
 msgstr "хвилин"
 
+msgid "missing parameter \"id\""
+msgstr ""
+
 #
 msgid "month"
 msgstr "місяць"
@@ -9745,9 +10032,6 @@ msgstr "червоний"
 msgid "redesigned Kerni-HD1 skin"
 msgstr ""
 
-msgid "redirect notifications to Growl"
-msgstr ""
-
 #
 msgid "remove a nameserver entry"
 msgstr "видалити DNS запис"
@@ -10084,6 +10368,10 @@ msgstr "основна інформація"
 msgid "tuner is not supported"
 msgstr ""
 
+#, python-format
+msgid "unable to find timer with id %i"
+msgstr ""
+
 #
 msgid "unavailable"
 msgstr ""
@@ -10154,6 +10442,9 @@ msgstr "щотижня"
 msgid "whitelist"
 msgstr "білий список"
 
+msgid "wireless network interface"
+msgstr ""
+
 #
 msgid "working"
 msgstr "працює"
@@ -10314,6 +10605,22 @@ msgstr "Переключений"
 #~ msgstr "Виберіть джерело"
 
 #
+#~ msgid "Code rate high"
+#~ msgstr "Швидкість кодування висока"
+
+#
+#~ msgid "Code rate low"
+#~ msgstr "Швидкість кодування низька"
+
+#
+#~ msgid "Coderate HP"
+#~ msgstr "Швидкість кодування HP"
+
+#
+#~ msgid "Coderate LP"
+#~ msgstr "Швидкість кодування LP"
+
+#
 #~ msgid "Compact flash card"
 #~ msgstr "Compact Flash карта"
 
@@ -10470,6 +10777,14 @@ msgstr "Переключений"
 #~ "© 2006 - Stephan Reichholf"
 
 #
+#~ msgid "Enter Fast Forward at speed"
+#~ msgstr "Початкова швидкість перемотування вперед"
+
+#
+#~ msgid "Enter Rewind at speed"
+#~ msgstr "Початкова швидкість перемотування назад"
+
+#
 #~ msgid "Enter WLAN network name/SSID:"
 #~ msgstr "Введіть ім'я мережі WLAN / SSID:"
 
@@ -10495,6 +10810,10 @@ msgstr "Переключений"
 #~ msgstr "Розмір шрифта"
 
 #
+#~ msgid "Frame repeat count during non-smooth winding"
+#~ msgstr "Кількість повторів кадру під час неплавного переходу"
+
+#
 #~ msgid "Fritz!Box FON IP address"
 #~ msgstr "Fritz!Box FON IP адрес"
 
@@ -10515,10 +10834,26 @@ msgstr "Переключений"
 #~ msgstr "Загальна PCM затримка"
 
 #
+#~ msgid "Guard Interval"
+#~ msgstr "Захисний Інтервал"
+
+#
+#~ msgid "Guard interval mode"
+#~ msgstr "Режим Захисного Інтервалу"
+
+#
 #~ msgid "Here is a small overview of the available icon states."
 #~ msgstr "Невеликий огляд доступних іконок статусу."
 
 #
+#~ msgid "Hierarchy Information"
+#~ msgstr "Ієрархічна Інформація"
+
+#
+#~ msgid "Hierarchy mode"
+#~ msgstr "Ієрархічний режим"
+
+#
 #~ msgid "If you can see this page, please press OK."
 #~ msgstr "Якщо ви бачите цю сторінку, натисніть OK."
 
@@ -10628,6 +10963,10 @@ msgstr "Переключений"
 #~ msgstr "Онлайн-Оновлення"
 
 #
+#~ msgid "Orbital Position"
+#~ msgstr "Орбітальна позиція"
+
+#
 #~ msgid "Other..."
 #~ msgstr "Інше..."
 
@@ -10680,6 +11019,10 @@ msgstr "Переключений"
 #~ msgstr "Інформація процесів менеджера додатків..."
 
 #
+#~ msgid "Polarity"
+#~ msgstr "Полярність"
+
+#
 #~ msgid "Press OK to view full changelog"
 #~ msgstr "Натисніть OK для перегляду всіх змін"
 
@@ -10767,6 +11110,10 @@ msgstr "Переключений"
 #~ "параметри."
 
 #
+#~ msgid "Rolloff"
+#~ msgstr "Rolloff"
+
+#
 #~ msgid ""
 #~ "Scan your network for wireless Access Points and connect to them using "
 #~ "your selected wireless device.\n"
@@ -10857,6 +11204,14 @@ msgstr "Переключений"
 #~ msgstr "Стерео"
 
 #
+#~ msgid "Symbol Rate"
+#~ msgstr "Символьна швидкість"
+
+#
+#~ msgid "Symbolrate"
+#~ msgstr "Символ. швидкість"
+
+#
 #~ msgid ""
 #~ "Thank you for using the wizard. Your box is now ready to use.\n"
 #~ "Please press OK to start using you Dreambox."
@@ -10957,6 +11312,14 @@ msgstr "Переключений"
 #~ "3) Дочекайтесь завантаження і дотримуйтесь інструкцій помічника."
 
 #
+#~ msgid "Transmission Mode"
+#~ msgstr "Режим передавання"
+
+#
+#~ msgid "Transponder Type"
+#~ msgstr "Тип Транспондера"
+
+#
 #~ msgid "USB"
 #~ msgstr "USB"
 
@@ -10992,6 +11355,10 @@ msgstr "Переключений"
 #~ msgstr "Оновлення завершено. Бажаєте перезавантажити Dreambox?"
 
 #
+#~ msgid "Use non-smooth winding at speeds above"
+#~ msgstr "Неплавне перемотування на швидкостях вище"
+
+#
 #~ msgid "VCR Switch"
 #~ msgstr "Переключення VCR"