├── .github └── workflows │ ├── buildbot.yml │ ├── enigma2-plugins.yml │ ├── pylint.yml │ └── ruff.yml ├── .gitignore ├── .project ├── .pydevproject ├── .pylintrc ├── .settings ├── .jsdtscope ├── org.eclipse.wst.jsdt.ui.superType.container └── org.eclipse.wst.jsdt.ui.superType.name ├── .sonarcloud.properties ├── 3dsettings ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_3dsettings.xml ├── po │ ├── 3DSettings.pot │ ├── Makefile.am │ ├── de.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ └── tr.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── CI ├── PEP8.sh ├── build.sh ├── chmod.sh └── dos2unix.sh ├── COPYING ├── Makefile.am ├── README ├── README.md ├── Rules-cpp.mak ├── Rules-po.mak ├── Rules_noxml-po.mak ├── Series2Folder ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_series2folder.xml ├── po │ ├── Makefile.am │ ├── Series2Folder.pot │ ├── ar.po │ ├── bg.po │ ├── ca.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── et.po │ ├── fa.po │ ├── fi.po │ ├── fr.po │ ├── fy.po │ ├── he.po │ ├── hr.po │ ├── hu.po │ ├── is.po │ ├── it.po │ ├── lt.po │ ├── lv.po │ ├── nb.po │ ├── nl.po │ ├── no.po │ ├── pl.po │ ├── pt.po │ ├── pt_BR.po │ ├── ro.po │ ├── ru.po │ ├── sk.po │ ├── sl.po │ ├── sr.po │ ├── sv.po │ ├── th.po │ ├── tr.po │ └── uk.po └── src │ ├── FileScreens.py │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── advancedmovieselection ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_advancedmovieselection.xml ├── po │ ├── AdvancedMovieSelection.pot │ ├── Makefile.am │ ├── de.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── About.py │ ├── AdvancedKeyboard.py │ ├── AdvancedMovieSelection.conf │ ├── AdvancedMovieSelectionEventView.py │ ├── AdvancedMovieSelectionSetup.py │ ├── ClientSetup.py │ ├── DownloadMovies.py │ ├── FileBrowser.py │ ├── LICENSE │ ├── Makefile.am │ ├── MessageBoxEx.py │ ├── MoveCopy.py │ ├── MovieList.py │ ├── MoviePlayer.py │ ├── MoviePreview.py │ ├── MovieSearch.py │ ├── MovieSelection.py │ ├── QuickButton.py │ ├── RecordPaths.py │ ├── Rename.py │ ├── SearchTMDb.py │ ├── SearchTVDb.py │ ├── Seekbar.py │ ├── SelectionListScreen.py │ ├── Source │ ├── AboutParser.py │ ├── AccessRestriction.py │ ├── AutoNetwork.py │ ├── Config.py │ ├── CueSheetSupport.py │ ├── Debug.py │ ├── EpgListExtension.py │ ├── EventInformationTable.py │ ├── Globals.py │ ├── Hotplug.py │ ├── ISOInfo.py │ ├── LocaleInit.py │ ├── Makefile.am │ ├── MovieConfig.py │ ├── MovieDB │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── tmdb.py │ │ ├── tmdb3 │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ ├── cache.py │ │ │ ├── cache_engine.py │ │ │ ├── cache_file.py │ │ │ ├── cache_null.py │ │ │ ├── locales.py │ │ │ ├── pager.py │ │ │ ├── request.py │ │ │ ├── tmdb_api.py │ │ │ ├── tmdb_auth.py │ │ │ ├── tmdb_exceptions.py │ │ │ └── util.py │ │ └── tvdb.py │ ├── MovieDatabase.py │ ├── MovieLibrary.py │ ├── MovieScanner.py │ ├── PicLoader.py │ ├── RecordTimerEvent.py │ ├── Remote │ │ ├── Client.py │ │ ├── Makefile.am │ │ ├── MessageServer.py │ │ └── __init__.py │ ├── ServiceDescriptor.py │ ├── ServiceProvider.py │ ├── ServiceUtils.py │ ├── StopWatch.py │ ├── Trashcan.py │ ├── __init__.py │ └── ping.py │ ├── TagEditor.py │ ├── Version.py │ ├── Wastebasket.py │ ├── __init__.py │ ├── buttons │ ├── Makefile.am │ ├── key_bouquet+.png │ ├── key_bouquet-.png │ ├── key_info.png │ ├── key_menu.png │ ├── key_ok.png │ ├── key_pvr.png │ ├── key_radio.png │ └── key_text.png │ ├── changes_de.txt │ ├── changes_en.txt │ ├── changes_nl.txt │ ├── eRecordPaths.py │ ├── images │ ├── Makefile.am │ ├── audio.png │ ├── back.png │ ├── background.png │ ├── black_movieicon.png │ ├── blue_movieicon.png │ ├── bookmark.png │ ├── database.png │ ├── database_reload.png │ ├── directory.png │ ├── dvd_finished.png │ ├── dvd_watching.png │ ├── gp3.png │ ├── green_movieicon.png │ ├── hotplug.png │ ├── link.png │ ├── location.png │ ├── movie.png │ ├── movie_de_new.png │ ├── movie_en_new.png │ ├── movie_new.png │ ├── movielibrary.png │ ├── movielibrary_reload.png │ ├── nocover_de.png │ ├── nocover_en.png │ ├── position_arrow.png │ ├── position_pointer.png │ ├── red_movieicon.png │ ├── sel.png │ ├── sep_lcd_oled.png │ ├── sep_tft.png │ ├── seperator.png │ ├── sepmovie.png │ ├── sepmovie_1160.png │ ├── starsbar_empty.png │ ├── starsbar_filled.png │ ├── thetvdb_logo.png │ ├── tmdb.png │ ├── tmdb_logo.png │ └── yellow_movieicon.png │ ├── keymap.xml │ ├── maintainer.info │ ├── md5hash │ ├── movietags │ ├── plugin.py │ └── skin │ ├── Makefile.am │ └── skin.xml ├── advhdmi ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_advhdmi.xml ├── po │ ├── AdvHdmi.pot │ ├── Makefile.am │ ├── de.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── AdvHdmiCecIF.py │ ├── AdvHdmiCecSetup.py │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ └── plugin.py ├── aihdcontroler ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_aihdcontrol.jpg │ └── plugin_aihdcontrol.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── comp │ ├── AiHD.tar.gz │ ├── Makefile.am │ ├── valiRefString.py │ ├── vhdConvClockToText.py │ ├── vhdConvSmartInfo.py │ ├── vhdRendChNumber.py │ ├── vhdRendMaxTemp.py │ ├── vhdRendMovieDirSize.py │ ├── vhdRendNextEvent.py │ ├── vhdRendVideoSize.py │ └── vhdRendVolumeText.py │ ├── data │ ├── Makefile.am │ ├── channelselector-full.xml │ ├── channelselector-pig.xml │ ├── channelselector-simple.xml │ ├── channelselector-vert.xml │ ├── head.xml │ ├── main.xml │ ├── oled-full.xml │ ├── oled-simple.xml │ ├── skin-beyonddreams.xml │ ├── skin-bluesofdream.xml │ ├── skin-dc.xml │ ├── skin-dmm.xml │ ├── skin-liga.xml │ ├── skin-shadow.xml │ └── skin-whiteline.xml │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── antiscrollbar ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── antiscrollbar.jpg │ └── plugin_antiscrollbar.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── ardmediathek ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_ardmediathek.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── ard.py │ ├── img │ ├── Makefile.am │ ├── az.png │ ├── endecken.png │ ├── home.png │ ├── key_blue.png │ ├── key_blue_hd.png │ ├── key_exit.png │ ├── key_exit_hd.png │ ├── key_green.png │ ├── key_green_hd.png │ ├── key_menu.png │ ├── key_menu_hd.png │ ├── key_ok.png │ ├── key_ok_hd.png │ ├── key_red.png │ ├── key_red_hd.png │ ├── key_yellow.png │ ├── key_yellow_hd.png │ ├── live.png │ ├── nextpage.png │ ├── nocover.png │ ├── programm.png │ ├── sel_1200.png │ ├── sel_800.png │ ├── sender.png │ └── suche.png │ ├── keymap.xml │ ├── logo.png │ ├── maintainer.info │ ├── plugin.py │ ├── skin_FHD.xml │ └── skin_HD.xml ├── aspectratioswitch ├── CONTROL │ ├── control │ ├── postinst │ └── postrm ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── aspectratioswitch.jpg │ └── plugin_aspectratioswitch.xml ├── po │ ├── AspectRatioSwitch.pot │ ├── Makefile.am │ ├── de.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ └── ru.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── keymap-bouquet.xml │ ├── keymap-help.xml │ ├── keymap-radio.xml │ ├── keymap-video.xml │ ├── maintainer.info │ └── plugin.py ├── audiorestart ├── CONTROL │ └── control ├── Makefile.am ├── img │ ├── Makefile.am │ ├── button-blue.png │ ├── button-green.png │ ├── button-red.png │ └── button-yellow.png ├── meta │ ├── Makefile.am │ ├── audiorestart_de.jpg │ ├── audiorestart_en.jpg │ └── plugin_audiorestart.xml ├── po │ ├── AudioRestart.pot │ ├── Makefile.am │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ └── ru.po └── src │ ├── AudioRestart.png │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── audiosync ├── .project ├── CONTROL │ └── control ├── Makefile.am ├── img │ ├── AudioSyncBG.png │ ├── AudioSyncBarBGVert.png │ ├── AudioSyncBarVert.png │ ├── Makefile.am │ ├── OptionButtonOff.png │ ├── OptionButtonOn.png │ ├── button-blue.png │ ├── button-green.png │ ├── button-red.png │ ├── button-yellow.png │ ├── key-blue.png │ ├── key-green.png │ ├── key-red.png │ └── key-yellow.png ├── meta │ ├── Makefile.am │ ├── audiosync_de.jpg │ ├── audiosync_en.jpg │ └── plugin_audiosync.xml ├── po │ ├── AudioSync.pot │ ├── Makefile.am │ ├── ar.po │ ├── cs.po │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── et.po │ ├── fa.po │ ├── fi.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── ru.po │ ├── sr.po │ ├── sv.po │ └── tr.po └── src │ ├── AC3delay.py │ ├── AC3main.py │ ├── AC3setup.py │ ├── AC3utils.py │ ├── AudioSync.png │ ├── HelpableNumberActionMap.py │ ├── LICENSE │ ├── Makefile.am │ ├── MovableScreen.py │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ └── plugin.py ├── automaticcleanup ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── automaticcleanup.jpg │ └── plugin_automaticcleanup.xml ├── po │ ├── AutomaticCleanup.pot │ ├── Makefile.am │ ├── de.po │ ├── fa.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── automatictimerlistcleanup ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── automatictimerlistcleanup.jpg │ └── plugin_automatictimerlistcleanup.xml ├── po │ ├── AutomaticTimerlistCleanup.pot │ ├── Makefile.am │ ├── de.po │ ├── en_GB.po │ ├── fa.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ └── tr.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── automaticvolumeadjustment ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_automaticvolumeadjustment.jpg │ └── plugin_automaticvolumeadjustment.xml ├── po │ ├── AutomaticVolumeAdjustment.pot │ ├── Makefile.am │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fi.po │ ├── fr.po │ ├── hu.po │ ├── lt.po │ ├── nl.po │ └── tr.po └── src │ ├── AutomaticVolumeAdjustment.py │ ├── AutomaticVolumeAdjustmentConfig.py │ ├── AutomaticVolumeAdjustmentSetup.py │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── autoresolution ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── autoresolution.jpg │ └── plugin_autoresolution.xml ├── po │ ├── AutoResolution.pot │ ├── Makefile.am │ ├── cs.po │ ├── de.po │ ├── el.po │ ├── en.po │ ├── en_GB.po │ ├── et.po │ ├── fa.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── ru.po │ ├── tr.po │ └── uk.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── autotimer ├── CONTROL │ └── control ├── Makefile.am ├── etc │ ├── Makefile.am │ └── autotimer.xml ├── meta │ ├── Makefile.am │ ├── autotimer_de.jpg │ ├── autotimer_en.jpg │ └── plugin_autotimer.xml ├── po │ ├── AutoTimer.pot │ ├── Makefile.am │ ├── ar.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── et.po │ ├── fa.po │ ├── fi.po │ ├── fr.po │ ├── fy.po │ ├── hu.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── pl.po │ ├── pt.po │ ├── ru.po │ ├── sr.po │ ├── tr.po │ ├── uk.po │ └── zh_CN.po └── src │ ├── AutoPoller.py │ ├── AutoTimer.py │ ├── AutoTimerComponent.py │ ├── AutoTimerConfiguration.py │ ├── AutoTimerEditor.py │ ├── AutoTimerImporter.py │ ├── AutoTimerList.py │ ├── AutoTimerOverview.py │ ├── AutoTimerPreview.py │ ├── AutoTimerResource.py │ ├── AutoTimerSettings.py │ ├── AutoTimerWizard.py │ ├── LICENSE │ ├── Makefile.am │ ├── WebChilds │ ├── Makefile.am │ ├── UploadResource.py │ └── __init__.py │ ├── WebComponents │ ├── Makefile.am │ ├── Sources │ │ ├── AutoTimerEditor.py │ │ ├── Makefile.am │ │ └── __init__.py │ └── __init__.py │ ├── WebScreens │ ├── AutoTimerEditorWebScreens.py │ ├── Makefile.am │ └── __init__.py │ ├── __init__.py │ ├── autotimerwizard.xml │ ├── faq.xml │ ├── maintainer.info │ ├── mphelp.xml │ ├── plugin.png │ ├── plugin.py │ ├── setup.xml │ ├── web-data │ ├── Makefile.am │ ├── add.png │ ├── anytimec.css │ ├── anytimec.js │ ├── autotimereditor.js │ ├── calendar.png │ ├── calendar_hover.png │ ├── clock.png │ ├── clock_hover.png │ ├── dreambox_autotimereditor.png │ ├── index.html │ ├── jquery.js │ ├── remove.png │ ├── style.css │ ├── tplAbout.htm │ ├── tplAutoTimerEdit.htm │ ├── tplAutoTimerList.htm │ ├── tplAutoTimerMenu.htm │ ├── tplAutoTimerPreview.htm │ └── tplTimerList.htm │ └── web │ ├── Makefile.am │ ├── backup.xml │ └── restore.xml ├── babelzapper ├── CONTROL │ ├── control │ └── postrm ├── Makefile.am ├── etc │ ├── Makefile.am │ ├── babelzapper.zbb │ ├── colormenu.zbb │ ├── colorzapp.zbb │ ├── epg.zbb │ ├── macros.zbb │ ├── manynum.zbb │ ├── menu.zbb │ ├── numbermenu.zbb │ ├── pip.zbb │ ├── pvr.zbb │ ├── quickjump.zbb │ ├── recplay.zbb │ └── zapp.zbb ├── meta │ ├── Makefile.am │ └── plugin_babelzapper.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── babel.png │ ├── babelzapper.png │ ├── maintainer.info │ ├── plugin.py │ └── readme.txt ├── birthdayreminder ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_birthdayreminder.xml ├── po │ ├── BirthdayReminder.pot │ ├── Makefile.am │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── pl.po │ └── pt.po └── src │ ├── BirthdayNetworking.py │ ├── BirthdayReminder.py │ ├── BirthdayTimer.py │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.png │ ├── plugin.py │ └── setup.xml ├── bitrateviewer ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── bitrateviewer.jpg │ └── plugin_bitrateviewer.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── bitratecalc │ ├── Makefile.am │ ├── bitratecalc.cpp │ └── bitratecalc.h │ ├── maintainer.info │ └── plugin.py ├── bmediacenter ├── CONTROL │ └── control ├── Makefile.am ├── po │ ├── BMediaCenter.pot │ ├── Makefile.am │ ├── de.po │ └── fr.po └── src │ ├── GlobalFunctions.py │ ├── MC_AudioPlayer.py │ ├── MC_PictureViewer.py │ ├── MC_Settings.py │ ├── MC_VLCPlayer.py │ ├── MC_VideoPlayer.py │ ├── Makefile.am │ ├── __init__.py │ ├── icons │ ├── BlinkingPoint-fs8.png │ ├── Makefile.am │ ├── ico_mp_play.png │ ├── key_blue.png │ ├── key_exit.png │ ├── key_green.png │ ├── key_info.png │ ├── key_left_right.png │ ├── key_menu.png │ ├── key_ok.png │ ├── key_red.png │ ├── key_text.png │ ├── key_yellow.png │ ├── left.png │ ├── pause_enabled.png │ ├── pic_frame.png │ ├── play_enabled.png │ ├── repeatallgreen.png │ ├── repeatoffgreen.png │ ├── repeatonegreen.png │ ├── right.png │ ├── screenadjust.mvi │ └── stop_enabled.png │ ├── keymap.xml │ ├── plugin.png │ ├── plugin.py │ ├── radio │ ├── 4U.Classic.Rock.pls │ ├── BlackBeats.FM.pls │ ├── FFH_BRANDNEU.m3u │ ├── FFH_DIE_80ER.m3u │ ├── FFH_EURODANCE.m3u │ ├── FFH_JUST_90s.m3u │ ├── FFH_LEIDER_GEIL.m3u │ ├── FFH_LOUNGE.m3u │ ├── FFH_PARTY.m3u │ ├── FFH_ROCK.m3u │ ├── FFH_SCHLAGERKULT.m3u │ ├── FFH_SOUNDTRACK.m3u │ ├── FFH_WEIHNACHTSRADIO.m3u │ ├── FFH_iTUNES_TOP_40.m3u │ ├── Generation.Disco.Funk.pls │ ├── GlobalBeats.FM-White.Channel.pls │ ├── HIT.RADIO.FFH.m3u │ ├── ILove.Top.100.Charts.m3u │ ├── Klassikradio.pls │ ├── Makefile.am │ ├── OnkelzRockRadio.pls │ ├── Ostseewelle.80er.Hits.m3u │ ├── Ostseewelle.90er.Hits.m3u │ ├── Ostseewelle.Brandneue.Hits.m3u │ ├── Ostseewelle.Chillout.Hits.m3u │ ├── Ostseewelle.Dance.Black.Hits.m3u │ ├── Ostseewelle.Deutsche.Hits.m3u │ ├── Ostseewelle.Live-Stream.m3u │ ├── Ostseewelle.Rock.Hits.m3u │ ├── Ostseewelle.Schlager.Hits.m3u │ ├── Ostseewelle.Weihnachts.Hits.m3u │ ├── PR.Black.Beats.m3u │ ├── PR.Livestream.m3u │ ├── PR.Nightwax.m3u │ ├── PR.Oldschool.m3u │ ├── PR.The.Club.m3u │ ├── PR.iTunes.m3u │ ├── RADIO.21.pls │ ├── Radio.Fly.Foot.Selecta.pls │ ├── Radio.Pecs.International.II.pls │ ├── Radio.Swiss.Classic.pls │ ├── RocknRoll-Philosophy.pls │ ├── SWR3.Live.Stream.m3u │ ├── Technomusic.com.pls │ ├── TrueHipHop.Radio.pls │ ├── YouFM.2.m3u │ ├── YouFM.Club.m3u │ ├── YouFM.Justmusic.m3u │ ├── YouFM.Sounds.m3u │ ├── breakz.fm.Listen.m3u │ ├── deepmix.pls │ ├── egoFM.pls │ ├── iLove.Bravo.Party.m3u │ ├── iLove.Bravo.Tube.Stars.m3u │ ├── iLove.Dance.m3u │ ├── iLove.Ex.Mas.m3u │ ├── iLove.Groovenight.m3u │ ├── iLove.Mashup.m3u │ ├── iLove.Nitroxdeep.m3u │ ├── iLove.The.Battle.m3u │ ├── iLove.UrbanClubBeats.m3u │ └── iLover.Nitro.Xedm.m3u │ ├── saver │ ├── 1.jpg │ ├── 10.jpg │ ├── 11.jpg │ ├── 12.jpg │ ├── 13.jpg │ ├── 14.jpg │ ├── 15.jpg │ ├── 16.jpg │ ├── 17.jpg │ ├── 18.jpg │ ├── 19.jpg │ ├── 2.jpg │ ├── 20.jpg │ ├── 3.jpg │ ├── 4.jpg │ ├── 5.jpg │ ├── 6.jpg │ ├── 7.jpg │ ├── 8.jpg │ ├── 9.jpg │ └── Makefile.am │ ├── setup.xml │ └── skins │ ├── Makefile.am │ └── defaultHD │ ├── Makefile.am │ ├── images │ ├── BG_file.png │ ├── BMediaCenter.png │ ├── Bg_moviedetails.png │ ├── Browser.png │ ├── Makefile.am │ ├── MenuIconDVD.png │ ├── MenuIconDVDsw.png │ ├── MenuIconMusic.png │ ├── MenuIconMusicsw.png │ ├── MenuIconPicture.png │ ├── MenuIconPicturesw.png │ ├── MenuIconRadio.png │ ├── MenuIconRadiosw.png │ ├── MenuIconSettings.png │ ├── MenuIconSettingssw.png │ ├── MenuIconVLC.png │ ├── MenuIconVLCsw.png │ ├── MenuIconVideo.png │ ├── MenuIconVideosw.png │ ├── background.png │ ├── dock.png │ ├── dock_ap.png │ ├── dock_aplyric.png │ ├── dock_applaylist.png │ ├── dock_apsettings.png │ ├── dock_dvd.png │ ├── dock_picture.png │ ├── dock_picturesettings.png │ ├── dock_settings.png │ ├── dock_video.png │ ├── dock_vlc.png │ ├── dock_webradio.png │ ├── folder.png │ ├── folder_path.png │ ├── no_cover.png │ └── no_coverArt.png │ └── skin.xml ├── bonjour ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── bonjour.jpg │ └── plugin_bonjour.xml └── src │ ├── Bonjour.py │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── cdinfo ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── cdinfo.jpg │ └── plugin_cdinfo.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── channelselectionshorttitle ├── CONTROL │ └── control ├── Makefile.am └── src │ ├── ChannelSelectionShortTitle.py │ ├── Makefile.am │ └── README ├── configure.ac ├── curlytx ├── .gitignore ├── CONTROL │ └── control ├── ChangeLog ├── LICENSE ├── Makefile.am ├── README.rst ├── build.sh ├── meta │ ├── Makefile.am │ └── plugin_curlytx.xml ├── po │ ├── CurlyTx.pot │ ├── Makefile.am │ ├── compile.sh │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ ├── messages.pot │ ├── nl.po │ └── update.sh ├── src │ ├── .gitignore │ ├── AtomFeed.py │ ├── CurlyTx.py │ ├── CurlyTxSettings.py │ ├── Makefile.am │ ├── __init__.py │ ├── config.py │ ├── maintainer.info │ └── plugin.py └── test │ ├── broken.atom │ ├── broken2.atom │ └── pageurl.atom ├── dreamexplorer ├── CONTROL │ ├── control │ └── preinst ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── dreamexplorer.jpg │ └── plugin_dreamexplorer.xml ├── po │ ├── DreamExplorer.pot │ ├── Makefile.am │ ├── ar.po │ ├── cs.po │ ├── de.po │ ├── fi.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ ├── pl.po │ └── ru.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── dreamexplorer.png │ ├── maintainer.info │ ├── myFileList.py │ ├── myNumericalTextInput.py │ ├── plugin.py │ ├── pyc2xml │ └── res │ ├── Makefile.am │ ├── back.png │ ├── blue.png │ ├── dir.png │ ├── green.png │ ├── info.png │ ├── menu.png │ ├── movie.png │ ├── music.mvi │ ├── music.png │ ├── package.png │ ├── picture.png │ ├── red.png │ ├── script.png │ └── yellow.png ├── dreamirc ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── dreamirc.jpg │ └── plugin_dreamirc.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── dreamIRCSetup.py │ ├── dreamIRCTools.py │ ├── e2account.py │ ├── e2chat.py │ ├── e2support.py │ ├── interfaces.py │ ├── ircsupport.py │ ├── keymap.xml │ ├── locals.py │ ├── plugin.py │ └── protocols │ ├── Makefile.am │ ├── __init__.py │ └── irc.py ├── dreammediathek ├── CONTROL │ └── control ├── Makefile.am └── src │ ├── LICENSE │ ├── Makefile.am │ ├── MoviePlayer.py │ ├── ServiceXML.py │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.py │ └── webtv_stations.xml ├── dvdbackup ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── dvdbackup_de.jpg │ └── plugin_dvdbackup.xml ├── po │ ├── DVDBackup.pot │ ├── Makefile.am │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fr.po │ ├── it.po │ ├── lt │ ├── nl.po │ └── tr.po └── src │ ├── DVDBackup.png │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── dyndns ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── dyndns.jpg │ └── plugin_dyndns.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── icon.png │ ├── maintainer.info │ └── plugin.py ├── easyinfo ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── easyinfo.jpg │ └── plugin_easyinfo.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── autotimer.png │ ├── bg.png │ ├── channelinfo.png │ ├── cooltv.png │ ├── easypg.png │ ├── easysel.png │ ├── epgrefresh.png │ ├── epgsearch.png │ ├── eventinfo.png │ ├── graphepg.png │ ├── imdbinfo.png │ ├── key-blue.png │ ├── key-green.png │ ├── key-info.png │ ├── key-red.png │ ├── key-yellow.png │ ├── keymap.xml │ ├── lines.png │ ├── maintainer.info │ ├── merlinepg.png │ ├── multiepg.png │ ├── plugin.py │ ├── primetime.png │ ├── singleepg.png │ ├── sleep.png │ ├── sysinfo.png │ └── timers.png ├── easymedia ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── easymedia.jpg │ └── plugin_easymedia.xml ├── po │ ├── EasyMedia.pot │ ├── Makefile.am │ ├── cs.po │ ├── de.po │ ├── en_GB.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── icons │ ├── Makefile.am │ ├── bg.png │ ├── bookmarks.png │ ├── default.png │ ├── dvd.png │ ├── files.png │ ├── idream.png │ ├── internetradio.png │ ├── key-0.png │ ├── key-1.png │ ├── key-2.png │ ├── key-3.png │ ├── key-4.png │ ├── kodi.png │ ├── movies.png │ ├── music.png │ ├── mytube.png │ ├── myvideo.png │ ├── pictures.png │ ├── radio.png │ ├── shoutcast.png │ ├── timers.png │ ├── videodb.png │ ├── vlc.png │ ├── weather.png │ └── zdf.png │ ├── keymap.xml │ ├── maintainer.info │ └── plugin.py ├── ecasa ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_ecasa.xml └── src │ ├── EcasaGui.py │ ├── EcasaSetup.py │ ├── FlickrApi.py │ ├── LICENSE │ ├── Makefile.am │ ├── PicasaApi.py │ ├── PictureApi.py │ ├── __init__.py │ ├── highlighted.png │ ├── keymap.xml │ ├── maintainer.info │ └── plugin.py ├── eibox ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── eibox.jpg │ └── plugin_eibox.xml ├── po │ ├── EIBox.pot │ ├── Makefile.am │ ├── de.po │ ├── en_GB.po │ ├── it.po │ └── nl.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── README │ ├── __init__.py │ ├── design.sample.xml │ ├── images │ ├── Makefile.am │ ├── blinds_down.png │ ├── blinds_up.png │ ├── default_bg.png │ ├── door_closed.png │ ├── door_open.png │ ├── fan_off.png │ ├── fan_on.png │ ├── gotoBottom.png │ ├── gotoLeft.png │ ├── gotoLower.png │ ├── gotoRight.png │ ├── gotoTop.png │ ├── gotoUpper.png │ ├── light_off.png │ ├── light_on.png │ ├── outlet_off.png │ ├── outlet_on.png │ ├── pump_off.png │ ├── pump_on.png │ ├── screen_down.png │ └── screen_up.png │ ├── maintainer.info │ └── plugin.py ├── elektro ├── CONTROL │ ├── control │ └── postinst ├── Makefile.am ├── maintainer.info ├── meta │ ├── Makefile.am │ ├── elektro.jpg │ └── plugin_elektro.xml ├── po │ ├── Elektro.pot │ ├── Makefile.am │ ├── de.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── Makefile.am │ ├── PluginComponent.py.patch │ ├── __init__.py │ ├── elektro.png │ ├── ping.py │ ├── plugin.pot │ ├── plugin.py │ ├── readme-de.txt │ ├── readme-it.txt │ └── readme.txt ├── emailclient ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── emailclient_de.jpg │ ├── emailclient_en.jpg │ └── plugin_emailclient.xml ├── po │ ├── EmailClient.pot │ ├── Makefile.am │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ ├── sv.po │ └── tr.po └── src │ ├── EmailConfig.py │ ├── LICENSE │ ├── Makefile.am │ ├── TagStrip.py │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.png │ ├── plugin.py │ ├── protocol.py │ └── setup.xml ├── emission ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_emission.xml └── src │ ├── EmissionBandwidth.py │ ├── EmissionDetailview.py │ ├── EmissionOverview.py │ ├── EmissionSetup.py │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── eparted ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_eparted.xml ├── po │ ├── Makefile.am │ ├── de.po │ ├── eParted.pot │ ├── fr.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ └── tr.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── eparted.png │ ├── eparted.py │ ├── locale.py │ ├── maintainer.info │ └── plugin.py ├── epgbackup ├── CONTROL │ ├── control │ ├── postinst │ └── prerm ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_epgbackup.xml ├── po │ ├── EPGBackup.pot │ ├── Makefile.am │ ├── de.po │ └── en.po └── src │ ├── EPGBackup.sh │ ├── EPGBackupConfig.py │ ├── EPGBackupSupport.py │ ├── EPGBackupTools.py │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── localehelp │ ├── Makefile.am │ └── mphelp.xml │ ├── maintainer.info │ ├── mphelp.xml │ └── plugin.py ├── epgexport ├── CONTROL │ └── control ├── Makefile.am ├── po │ ├── EPGExport.pot │ ├── Makefile.am │ ├── de.po │ ├── it.po │ ├── nl.po │ └── pl.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── epgexport.png │ ├── plugin.py │ ├── skin_HD.xml │ └── skin_fHD.xml ├── epgrefresh ├── CONTROL │ └── control ├── Makefile.am ├── etc │ ├── Makefile.am │ └── epgrefresh.xml ├── meta │ ├── Makefile.am │ ├── epgrefresh_de.jpg │ ├── epgrefresh_en.jpg │ └── plugin_epgrefresh.xml ├── po │ ├── EPGRefresh.pot │ ├── Makefile.am │ ├── ar.po │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── et.po │ ├── fa.po │ ├── fi.po │ ├── fy.po │ ├── hu.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── pl.po │ ├── pt.po │ ├── sr.po │ ├── sv.po │ └── tr.po └── src │ ├── EPGRefresh.png │ ├── EPGRefresh.py │ ├── EPGRefreshChannelEditor.py │ ├── EPGRefreshConfiguration.py │ ├── EPGRefreshResource.py │ ├── EPGRefreshService.py │ ├── EPGRefreshTimer.py │ ├── LICENSE │ ├── MainPictureAdapter.py │ ├── Makefile.am │ ├── OrderedSet.py │ ├── PipAdapter.py │ ├── RecordAdapter.py │ ├── __init__.py │ ├── localehelp │ ├── Makefile.am │ ├── de │ │ ├── Makefile.am │ │ └── mphelp.xml │ ├── fi │ │ ├── Makefile.am │ │ └── mphelp.xml │ ├── it │ │ ├── Makefile.am │ │ └── mphelp.xml │ └── pt │ │ ├── Makefile.am │ │ └── mphelp.xml │ ├── mphelp.xml │ ├── plugin.py │ └── webinterface │ ├── EPGRefresh.py │ └── Makefile.am ├── epgsearch ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── epgsearch_de.jpg │ ├── epgsearch_en.jpg │ └── plugin_epgsearch.xml ├── po │ ├── EPGSearch.pot │ ├── Makefile.am │ ├── ar.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── et.po │ ├── fa.po │ ├── fi.po │ ├── fr.po │ ├── hu.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── pl.po │ ├── pt.po │ ├── ru.po │ ├── sr.po │ ├── sv.po │ ├── tr.po │ ├── uk.po │ └── zh_CN.po └── src │ ├── EPGSearch.py │ ├── EPGSearchSetup.py │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.py │ └── setup.xml ├── epgsearchpli ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── epgsearch_de.jpg │ ├── epgsearch_en.jpg │ └── plugin_epgsearch.xml ├── po │ ├── EPGSearch.pot │ ├── Makefile.am │ ├── cs.po │ ├── de.po │ ├── es.po │ ├── fa.po │ ├── fi.po │ ├── it.po │ ├── lt.po │ ├── lv.po │ ├── nl.po │ ├── ru.po │ ├── sl.po │ ├── sr.po │ ├── sv.po │ └── tr.po └── src │ ├── EPGSearch.py │ ├── EPGSearchSetup.py │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── epg.png │ ├── icons │ ├── Makefile.am │ ├── epgclock.png │ ├── epgclock_add.png │ ├── epgclock_post.png │ ├── epgclock_pre.png │ ├── epgclock_prepost.png │ ├── remote_epgclock.png │ ├── remote_epgclock_add.png │ ├── remote_epgclock_post.png │ ├── remote_epgclock_pre.png │ ├── remote_epgclock_prepost.png │ ├── remote_repepgclock.png │ ├── remote_repepgclock_add.png │ ├── remote_repepgclock_post.png │ ├── remote_repepgclock_pre.png │ ├── remote_repepgclock_prepost.png │ ├── remote_repzapclock.png │ ├── remote_repzapclock_add.png │ ├── remote_repzapclock_post.png │ ├── remote_repzapclock_pre.png │ ├── remote_repzapclock_prepost.png │ ├── remote_zapclock.png │ ├── remote_zapclock_add.png │ ├── remote_zapclock_post.png │ ├── remote_zapclock_pre.png │ ├── remote_zapclock_prepost.png │ ├── repepgclock.png │ ├── repepgclock_add.png │ ├── repepgclock_post.png │ ├── repepgclock_pre.png │ ├── repepgclock_prepost.png │ ├── repzapclock.png │ ├── repzapclock_add.png │ ├── repzapclock_post.png │ ├── repzapclock_pre.png │ ├── repzapclock_prepost.png │ ├── repzaprecclock.png │ ├── repzaprecclock_add.png │ ├── repzaprecclock_post.png │ ├── repzaprecclock_pre.png │ ├── repzaprecclock_prepost.png │ ├── zapclock.png │ ├── zapclock_add.png │ ├── zapclock_post.png │ ├── zapclock_pre.png │ ├── zapclock_prepost.png │ ├── zaprecclock.png │ ├── zaprecclock_add.png │ ├── zaprecclock_post.png │ ├── zaprecclock_pre.png │ └── zaprecclock_prepost.png │ ├── maintainer.info │ ├── picon_default.png │ └── plugin.py ├── esame ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_esame.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── data │ ├── Makefile.am │ ├── blue0.png │ ├── blue1.png │ ├── blue2.png │ ├── blue3.png │ ├── focus.png │ ├── green0.png │ ├── green1.png │ ├── green2.png │ ├── green3.png │ ├── red0.png │ ├── red1.png │ ├── red2.png │ └── red3.png │ ├── plugin.py │ └── stonefield.py ├── eurotictv ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_eurotictv.xml ├── po │ ├── Makefile.am │ ├── de.po │ ├── eUroticTV.pot │ ├── en.po │ ├── en_GB.po │ ├── fr.po │ ├── it.po │ └── nl.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── eurotic.jpg │ ├── plugin.png │ └── plugin.py ├── eventlist ├── CONTROL │ └── control ├── Makefile.am └── src │ ├── EventList.py │ ├── EventListDisplay.py │ ├── Makefile.am │ └── README ├── eventposition ├── CONTROL │ └── control ├── Makefile.am └── src │ ├── EventPosition.py │ ├── Makefile.am │ └── README ├── fancontrol2 ├── CONTROL │ ├── control │ ├── postinst │ └── prerm ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── fancontrol2.jpg │ └── plugin_fancontrol2.xml ├── po │ ├── FanControl2.pot │ ├── Makefile.am │ ├── cs.po │ ├── de.po │ ├── en_GB.po │ ├── es.po │ ├── fa.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── pl.po │ └── ru.po └── src │ ├── FC2webSite.py │ ├── LICENSE │ ├── Makefile.am │ ├── Sensors.py │ ├── __init__.py │ ├── data │ ├── FC2Chart.png │ ├── FC2Info.png │ ├── FC2Setup.png │ ├── FC2dreambox.png │ ├── FC2hdd.png │ ├── FC2on.png │ ├── FC2record.png │ ├── Makefile.am │ └── diagram.class.org │ ├── globals.py │ ├── leesmij.txt │ ├── maintainer.info │ ├── plugin.png │ ├── plugin.pot │ ├── plugin.py │ ├── readme.txt │ ├── readmede.txt │ ├── readmees.txt │ ├── readmefr.txt │ ├── readmeit.txt │ └── readmepl.txt ├── filebrowser ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── filebrowser.jpg │ └── plugin_filebrowser.xml ├── po │ ├── Filebrowser.pot │ ├── Makefile.am │ ├── de.po │ ├── en.po │ └── nl.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ ├── plugin.png │ ├── plugin.py │ └── setup.xml ├── flashexpander ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_flashexpander.xml ├── po │ ├── Flashexpander.pot │ ├── Makefile.am │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ └── ru.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── flashexpander.png │ ├── flashexpander.py │ ├── locale.py │ ├── maintainer.info │ └── plugin.py ├── fritzcall ├── CONTROL │ └── control ├── Makefile.am ├── po │ ├── FritzCall.pot │ ├── Makefile.am │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── it.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── FritzCallFBF.py │ ├── FritzConnection.py │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── avon.dat │ ├── callbycall_world.xml │ ├── images │ ├── MODERN │ │ ├── Makefile.am │ │ ├── callin.png │ │ ├── callinfailed.png │ │ ├── callout.png │ │ └── callrejected.png │ ├── Makefile.am │ ├── aktiv.png │ ├── callin.png │ ├── callinfailed.png │ ├── callout.png │ ├── callrejected.png │ ├── fritz.png │ ├── inaktiv.png │ ├── no-face-error-fhd.png │ ├── no-face-error-hd.png │ ├── no-face-error-sd.png │ ├── no-face-error-uhd.png │ ├── no-face-fhd.png │ ├── no-face-hd.png │ ├── no-face-sd.png │ ├── no-face-uhd.png │ └── website.png │ ├── maintainer.info │ ├── nrzuname.py │ ├── plugin.png │ ├── plugin.py │ └── reverselookup.xml ├── fstabeditor ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_fstabEditor.xml │ └── plugin_fstabeditor.jpg └── src │ ├── Makefile.am │ ├── __init__.py │ ├── blue.png │ ├── dirSelect.py │ ├── exit.png │ ├── fstabEditor.png │ ├── green.png │ ├── maintainer.info │ ├── ok.png │ ├── plugin.py │ ├── red.png │ └── yellow.png ├── ftpbrowser ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── ftpbrowser_de.jpg │ ├── ftpbrowser_en.jpg │ └── plugin_ftpbrowser.xml ├── po │ ├── FTPBrowser.pot │ ├── Makefile.am │ ├── cs.po │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── FTPBrowser.py │ ├── FTPQueueManager.py │ ├── FTPServerManager.py │ ├── LICENSE │ ├── Makefile.am │ ├── VariableProgressSource.py │ ├── __init__.py │ ├── images │ ├── Makefile.am │ ├── down.png │ └── up.png │ ├── keymap.xml │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── genmetaindex.py ├── genuinedreambox ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── genuinedreambox.jpg │ └── plugin_genuinedreambox.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── genuine.png │ ├── maintainer.info │ └── plugin.py ├── googlemaps ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── googlemaps.jpg │ └── plugin_googlemaps.xml └── src │ ├── 404.png │ ├── 404_transparent.png │ ├── KMLlib.py │ ├── LICENSE │ ├── Makefile.am │ ├── README │ ├── Racetracks.kml │ ├── Sightseeing.kml │ ├── WebPixmap.py │ ├── __init__.py │ ├── globalmaptiles.py │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── growlee ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── growlee.jpg │ └── plugin_growlee.xml └── src │ ├── GNTP.py │ ├── GrowlTalk.py │ ├── GrowleeConnection.py │ ├── LICENSE │ ├── Makefile.am │ ├── Prowl.py │ ├── SNP.py │ ├── Syslog.py │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── httpproxy ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── httpproxy.jpg │ └── plugin_httpproxy.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── imdb ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── imdb_de.jpg │ ├── imdb_en.jpg │ └── plugin_imdb.xml ├── po │ ├── IMDb.pot │ ├── Makefile.am │ ├── ar.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── et.po │ ├── fa.po │ ├── fi.po │ ├── fr.po │ ├── hu.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── pl.po │ ├── pt.po │ ├── ru.po │ ├── sr.po │ ├── sv.po │ ├── tr.po │ └── zh_CN.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── imdb.png │ ├── keymap.xml │ ├── maintainer.info │ ├── no_poster.png │ ├── plugin.py │ ├── setup.xml │ ├── starsbar_empty.png │ └── starsbar_filled.png ├── infobartunerstate ├── CONTROL │ ├── control │ ├── postinst │ └── postrm ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_infobartunerstate.jpg │ └── plugin_infobartunerstate.xml ├── po │ ├── InfoBarTunerState.pot │ ├── Makefile.am │ ├── de.po │ ├── en_GB.po │ ├── it.po │ ├── lt.po │ └── tr.po └── src │ ├── IBTSConfiguration.py │ ├── InfoBarTunerState.py │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── background.png │ ├── finished.png │ ├── info.png │ ├── maintainer.info │ ├── netstat.py │ ├── plugin.png │ ├── plugin.py │ ├── progress.png │ ├── record.png │ ├── skin_FHD.xml │ ├── skin_HD.xml │ ├── stopped.png │ └── stream.png ├── kiddytimer ├── .project ├── CONTROL │ └── control ├── Makefile.am ├── img │ ├── Makefile.am │ ├── Smiley-Background.png │ ├── Smiley-Slider.png │ ├── Timer0000.png │ ├── Timer0050.png │ ├── Timer0100.png │ ├── Timer0150.png │ ├── Timer0200.png │ ├── Timer0250.png │ ├── Timer0300.png │ ├── Timer0350.png │ ├── Timer0400.png │ ├── Timer0450.png │ ├── Timer0500.png │ ├── Timer0550.png │ ├── Timer0600.png │ ├── Timer0650.png │ ├── Timer0700.png │ ├── Timer0750.png │ ├── Timer0800.png │ ├── Timer0850.png │ ├── Timer0900.png │ ├── Timer0950.png │ ├── Timer1000.png │ ├── Transparent.png │ ├── button-blue.png │ ├── button-green.png │ ├── button-red.png │ └── button-yellow.png ├── meta │ ├── Makefile.am │ ├── kiddytimer_de.jpg │ ├── kiddytimer_en.jpg │ └── plugin_kiddytimer.xml ├── po │ ├── KiddyTimer.pot │ ├── Makefile.am │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── HelpableNumberActionMap.py │ ├── KTMultiPixmap.py │ ├── KTglob.py │ ├── KTmain.py │ ├── KTpositioner.py │ ├── KTsetup.py │ ├── KiddyTimer.png │ ├── LICENSE │ ├── Makefile.am │ ├── MovableScreen.py │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ └── plugin.py ├── lastfm ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── lastfm.jpg │ └── plugin_lastfm.xml ├── po │ ├── LastFM.pot │ ├── Makefile.am │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── lt.po │ └── nl.po └── src │ ├── LICENSE │ ├── LastFM.py │ ├── LastFMConfig.py │ ├── Makefile.am │ ├── StreamPlayer.py │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.png │ ├── plugin.py │ └── scrobbler.py ├── letterbox ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_letterbox.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── logomanager ├── CONTROL │ └── control ├── Makefile.am ├── logodir_hdd │ ├── Makefile.am │ └── moon_radio.mvi ├── meta │ ├── Makefile.am │ ├── logomanager.jpg │ └── plugin_logomanager.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── m4 ├── ax_pthread.m4 ├── ax_python_devel.m4 └── tuxbox.m4 ├── mediadownloader ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_mediadownloader.xml ├── po │ ├── Makefile.am │ ├── MediaDownloader.pot │ ├── cs.po │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── FTPProgressDownloader.py │ ├── HTTPProgressDownloader.py │ ├── LICENSE │ ├── Makefile.am │ ├── MediaDownloader.py │ ├── VariableProgressSource.py │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── mediathekviewweb ├── CONTROL │ └── control ├── Makefile.am └── src │ ├── Makefile.am │ ├── __init__.py │ ├── img │ ├── Makefile.am │ ├── home.png │ ├── key_blue.png │ ├── key_blue_hd.png │ ├── key_exit.png │ ├── key_exit_hd.png │ ├── key_green.png │ ├── key_green_hd.png │ ├── key_menu.png │ ├── key_menu_hd.png │ ├── key_ok.png │ ├── key_ok_hd.png │ ├── key_red.png │ ├── key_red_hd.png │ ├── key_yellow.png │ ├── key_yellow_hd.png │ ├── nextpage.png │ ├── nocover.png │ ├── sel_1200.png │ ├── sel_800.png │ ├── sender.png │ └── suche.png │ ├── logo.png │ ├── mediathekviewweb.py │ ├── plugin.py │ ├── skin_FHD.xml │ └── skin_HD.xml ├── menusort ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_menusort.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── merlinepg ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── merlinepg.jpg │ └── plugin_merlinepg.xml └── src │ ├── Makefile.am │ ├── ShowMe.py │ ├── __init__.py │ ├── buttons.png │ ├── channels.png │ ├── epg.png │ ├── green.png │ ├── help.jpg │ ├── maintainer.info │ ├── mpgbgSD-fs8.png │ ├── plugin.py │ ├── primetime.png │ └── red.png ├── merlinepgcenter ├── CONTROL │ └── control ├── Makefile.am ├── images │ ├── AutoTimerLarge.png │ ├── AutoTimerSmall.png │ ├── EventProgress.png │ ├── EventProgress_0.png │ ├── EventProgress_1.png │ ├── EventProgress_2.png │ ├── EventProgress_3.png │ ├── EventProgress_4.png │ ├── HD │ │ ├── Makefile.am │ │ ├── blue.png │ │ ├── button_background.png │ │ ├── green.png │ │ ├── mute.png │ │ ├── recording.png │ │ ├── red.png │ │ ├── tab_background.png │ │ ├── tab_marker_1.png │ │ ├── tab_marker_2.png │ │ ├── tab_marker_3.png │ │ ├── tab_marker_4.png │ │ ├── tab_marker_5.png │ │ ├── tab_marker_6.png │ │ ├── volume.png │ │ └── yellow.png │ ├── HD_BORDER │ │ ├── Makefile.am │ │ ├── blue.png │ │ ├── button_background.png │ │ ├── green.png │ │ ├── mute.png │ │ ├── recording.png │ │ ├── red.png │ │ ├── tab_background.png │ │ ├── tab_marker_1.png │ │ ├── tab_marker_2.png │ │ ├── tab_marker_3.png │ │ ├── tab_marker_4.png │ │ ├── tab_marker_5.png │ │ ├── tab_marker_6.png │ │ ├── volume.png │ │ └── yellow.png │ ├── HD_Elgato │ │ ├── Makefile.am │ │ ├── back1.png │ │ ├── blue.png │ │ ├── epg_center_sel.png │ │ ├── epg_center_sel_1200.png │ │ ├── green.png │ │ ├── mute.png │ │ ├── rec.png │ │ ├── red.png │ │ ├── sep1200.png │ │ ├── sep840.png │ │ ├── separator_h.png │ │ ├── separator_v.png │ │ ├── tab_background.png │ │ ├── tab_marker_1.png │ │ ├── tab_marker_2.png │ │ ├── tab_marker_3.png │ │ ├── tab_marker_4.png │ │ ├── tab_marker_5.png │ │ ├── tab_marker_6.png │ │ ├── volume.png │ │ └── yellow.png │ ├── Makefile.am │ ├── PiconMissing.png │ ├── PiconMissing_small.png │ ├── Progress.png │ ├── Progress_1.png │ ├── Progress_2.png │ ├── Progress_3.png │ ├── Progress_4.png │ ├── SD │ │ ├── Makefile.am │ │ ├── blue.png │ │ ├── button_background.png │ │ ├── green.png │ │ ├── mute.png │ │ ├── recording.png │ │ ├── red.png │ │ ├── tab_background.png │ │ ├── tab_marker_1.png │ │ ├── tab_marker_2.png │ │ ├── tab_marker_3.png │ │ ├── tab_marker_4.png │ │ ├── tab_marker_5.png │ │ ├── tab_marker_6.png │ │ ├── volume.png │ │ └── yellow.png │ ├── XD │ │ ├── Makefile.am │ │ ├── blue.png │ │ ├── button_background.png │ │ ├── green.png │ │ ├── mute.png │ │ ├── recording.png │ │ ├── red.png │ │ ├── tab_background.png │ │ ├── tab_marker_1.png │ │ ├── tab_marker_2.png │ │ ├── tab_marker_3.png │ │ ├── tab_marker_4.png │ │ ├── tab_marker_5.png │ │ ├── tab_marker_6.png │ │ ├── volume.png │ │ └── yellow.png │ ├── XD_BORDER │ │ ├── Makefile.am │ │ ├── blue.png │ │ ├── button_background.png │ │ ├── green.png │ │ ├── mute.png │ │ ├── recording.png │ │ ├── red.png │ │ ├── tab_background.png │ │ ├── tab_marker_1.png │ │ ├── tab_marker_2.png │ │ ├── tab_marker_3.png │ │ ├── tab_marker_4.png │ │ ├── tab_marker_5.png │ │ ├── tab_marker_6.png │ │ ├── volume.png │ │ └── yellow.png │ ├── separator_h.png │ ├── separator_v.png │ ├── timer.png │ ├── timer_add.png │ ├── timer_event.png │ ├── timer_post.png │ ├── timer_pre.png │ ├── timer_repeated.png │ ├── zap.png │ ├── zap_add.png │ ├── zap_event.png │ ├── zap_post.png │ ├── zap_pre.png │ └── zap_repeated.png ├── manual │ └── de │ │ └── MerlinEPGCenter_Anleitung_v1.0.odt ├── meta │ ├── Makefile.am │ ├── merlinepgcenter.jpg │ └── plugin_merlinepgcenter.xml ├── po │ ├── Makefile.am │ ├── MerlinEPGCenter.pot │ ├── de.po │ ├── en_GB.po │ ├── it.po │ ├── nl.po │ └── pl.po ├── skins │ ├── HD_Elgato.xml │ ├── HD_border.xml │ ├── HD_default.xml │ ├── Makefile.am │ ├── SD_default.xml │ ├── XD_border.xml │ └── XD_default.xml └── src │ ├── ConfigTabs.py │ ├── EpgActions.py │ ├── EpgCenterList.py │ ├── EpgTabs.py │ ├── HelperFunctions.py │ ├── LICENSE │ ├── Makefile.am │ ├── MerlinEPGCenter.py │ ├── SkinFinder.py │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── merlinmusicplayer ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── merlinmusicplayer.jpg │ └── plugin_merlinmusicplayer.xml ├── po │ ├── Makefile.am │ ├── MerlinMusicPlayer.pot │ ├── de.po │ ├── lt.po │ └── ru.po └── src │ ├── Makefile.am │ ├── MerlinMusicPlayer.png │ ├── __init__.py │ ├── iDream.png │ ├── images │ ├── Makefile.am │ ├── MerlinMusicPlayer.png │ ├── cd.png │ ├── cover.png │ ├── dvr.png │ ├── dvr_pau.png │ ├── dvr_pl.png │ ├── dvr_rep.png │ ├── dvr_rep1.png │ ├── dvr_rep2.png │ ├── dvr_shuf.png │ ├── dvr_shuf1.png │ ├── dvr_shuf2.png │ ├── key_menu.png │ ├── merlin2.png │ ├── mmp3p.png │ ├── mmp3pHD.png │ ├── mmpborderHD.png │ ├── mplist.png │ ├── mplogo.png │ ├── no_coverArt.png │ ├── overlay.png │ ├── overlay2.png │ ├── placeholder1.png │ └── progressbar.png │ ├── plugin.py │ └── skin │ ├── Makefile.am │ ├── fhd │ ├── Makefile.am │ ├── MerlinMusicPlayerFileList.xml │ ├── MerlinMusicPlayerLyrics.xml │ ├── MerlinMusicPlayerScreen.xml │ ├── MerlinMusicPlayerScreenSaver.xml │ ├── MerlinMusicPlayerSetup.xml │ ├── MerlinMusicPlayerSongList.xml │ ├── MerlinMusicPlayerTV.xml │ ├── SelectPath.xml │ ├── iDreamAddToDatabase.xml │ └── iDreamMerlin.xml │ ├── hd │ ├── Makefile.am │ ├── MerlinMusicPlayerFileList.xml │ ├── MerlinMusicPlayerLyrics.xml │ ├── MerlinMusicPlayerScreen.xml │ ├── MerlinMusicPlayerScreenSaver.xml │ ├── MerlinMusicPlayerSetup.xml │ ├── MerlinMusicPlayerSongList.xml │ ├── SelectPath.xml │ ├── iDreamAddToDatabase.xml │ └── iDreamMerlin.xml │ └── sd │ ├── Makefile.am │ ├── MerlinMusicPlayerFileList.xml │ ├── MerlinMusicPlayerLyrics.xml │ ├── MerlinMusicPlayerScreen.xml │ ├── MerlinMusicPlayerScreenSaver.xml │ ├── MerlinMusicPlayerSetup.xml │ ├── MerlinMusicPlayerSongList.xml │ ├── SelectPath.xml │ ├── iDreamAddToDatabase.xml │ └── iDreamMerlin.xml ├── meteoitalia ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── meteoitalia.jpg │ └── plugin_meteoitalia.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── backg.png │ ├── maintainer.info │ ├── meteoitalia.png │ └── plugin.py ├── mosaic ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── mosaic.jpg │ └── plugin_mosaic.xml ├── po │ ├── Makefile.am │ ├── Mosaic.pot │ ├── de.po │ ├── en_GB.po │ ├── es.po │ ├── fa.po │ ├── fy.po │ ├── hu.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ ├── sv.po │ └── tr.po └── src │ ├── LICENSE.txt │ ├── Makefile.am │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ └── plugin.py ├── moviecut ├── CONTROL │ └── control ├── Makefile.am ├── Readme-MovieCut.txt ├── meta │ ├── Makefile.am │ ├── moviecut.jpg │ └── plugin_moviecut.xml ├── po │ ├── Makefile.am │ ├── MovieCut.pot │ ├── ar.po │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── et.po │ ├── fa.po │ ├── fi.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── pl.po │ └── sv.po ├── src_cc │ ├── .gitignore │ ├── Makefile.am │ └── mcut.cc └── src_py │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── movieepg ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_movieepg.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── MovieEpgSetup.py │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── movielistpreview ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── movielistpreview_de.jpg │ └── plugin_movielistpreview.xml ├── po │ ├── Makefile.am │ ├── MovielistPreview.pot │ ├── de.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── movieretitle ├── CONTROL │ └── control ├── Makefile.am ├── Readme-MovieRetitle-1.2.txt ├── meta │ ├── Makefile.am │ ├── movieretitle.jpg │ └── plugin_movieretitle.xml ├── po │ ├── Makefile.am │ ├── MovieRetitle.pot │ ├── de.po │ ├── en_GB.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── moviesearch ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_moviesearch.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── movieselectionquickbutton ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_movieselectionquickbutton.xml ├── po │ ├── Makefile.am │ ├── MovieSelectionQuickButton.pot │ ├── de.po │ ├── fa.po │ ├── it.po │ └── lt.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── movietagger ├── CONTROL │ ├── conffiles │ └── control ├── Makefile.am ├── etc │ ├── Makefile.am │ └── movietags ├── meta │ ├── Makefile.am │ ├── movietagger.jpg │ └── plugin_movietagger.xml ├── po │ ├── Makefile.am │ ├── MovieTagger.pot │ ├── de.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── mphelp ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_mphelp.xml ├── po │ ├── MPHelp.pot │ ├── Makefile.am │ ├── da.po │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fi.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── ru.po │ └── zh_CN.po └── src │ ├── LICENSE │ ├── MPHelp.py │ ├── Makefile.am │ ├── XMLHelp.py │ ├── __init__.py │ ├── faq.xml │ ├── maintainer.info │ ├── mphelp.xml │ └── plugin.py ├── multirc ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── multirc.jpg │ └── plugin_multirc.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── mytube ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── mytube_de.jpg │ ├── mytube_en.jpg │ └── plugin_mytube.xml ├── po │ ├── Makefile.am │ ├── MyTube.pot │ ├── ar.po │ ├── ca.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── en.po │ ├── es.po │ ├── fi.po │ ├── fr.po │ ├── fy.po │ ├── hr.po │ ├── hu.po │ ├── is.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── no.po │ ├── pl.po │ ├── pt.po │ ├── ru.po │ ├── sr.po │ ├── sv.po │ └── tr.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── MyTubeSearch.py │ ├── MyTubeService.py │ ├── ThreadQueue.py │ ├── __init__.py │ ├── list_bg.png │ ├── list_sel.png │ ├── maintainer.info │ ├── mytubemain_bg.png │ ├── plugin.png │ ├── plugin.py │ ├── starsbar_empty.png │ ├── starsbar_filled.png │ └── suggestions_bg.png ├── namezap ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_namezap.xml ├── po │ ├── Makefile.am │ ├── NameZap.pot │ ├── de.po │ ├── fa.po │ ├── it.po │ ├── nl.po │ └── tr.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── NamezapSetup.py │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── ncidclient ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── ncidclient.jpg │ └── plugin_ncidclient.xml ├── po │ ├── Makefile.am │ ├── NcidClient.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── avon.dat │ ├── callbycall_world.xml │ ├── maintainer.info │ ├── plugin.py │ ├── reverselookup.py │ └── reverselookup.xml ├── netcaster ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── netcaster_de.jpg │ ├── netcaster_en.jpg │ └── plugin_netcaster.xml └── src │ ├── Makefile.am │ ├── bin │ ├── LICENSE │ ├── Makefile.am │ ├── NETcastInterface.py │ ├── NETcaster.png │ ├── StreamInterface.py │ ├── StreamPlayer.py │ ├── __init__.py │ ├── interface │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── favorites.py │ │ └── shoutcast.py │ ├── maintainer.info │ ├── plugin.py │ └── readme.txt │ └── etc │ ├── Makefile.am │ └── NETcaster.conf ├── networkbrowser ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── networkbrowser_de.jpg │ ├── networkbrowser_en.jpg │ └── plugin_networkbrowser.xml ├── po │ ├── Makefile.am │ ├── NetworkBrowser.pot │ ├── ar.po │ ├── ca.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── et.po │ ├── fa.po │ ├── fi.po │ ├── fr.po │ ├── hr.po │ ├── hu.po │ ├── is.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── no.po │ ├── pl.po │ ├── pt.po │ ├── ru.po │ ├── sr.po │ ├── sv.po │ ├── tr.po │ ├── uk.po │ └── zh_CN.po └── src │ ├── AutoMount.py │ ├── LICENSE │ ├── Makefile.am │ ├── MountEdit.py │ ├── MountManager.py │ ├── MountView.py │ ├── NetworkBrowser.py │ ├── UserDialog.py │ ├── UserManager.py │ ├── __init__.py │ ├── icons │ ├── LICENSE │ ├── Makefile.am │ ├── cancel.png │ ├── error.png │ ├── host.png │ ├── i-nfs.png │ ├── i-smb.png │ ├── ok.png │ ├── update.png │ └── verticalLine.png │ ├── ipscan.py │ ├── lib │ ├── Makefile.am │ ├── errors.h │ ├── list.c │ ├── list.h │ ├── main.c │ ├── nbtscan.c │ ├── nbtscan.h │ ├── range.c │ ├── range.h │ ├── showmount.c │ ├── showmount.h │ ├── smb.h │ ├── smbinfo.c │ ├── smbinfo.h │ ├── statusq.c │ ├── statusq.h │ └── time_compat.h │ ├── maintainer.info │ └── plugin.py ├── networkbrowserpli ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── networkbrowser_de.jpg │ ├── networkbrowser_en.jpg │ └── plugin_networkbrowser.xml ├── po │ ├── Makefile.am │ ├── NetworkBrowser.pot │ ├── ar.po │ ├── ca.po │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── el.po │ ├── en.po │ ├── es.po │ ├── fa.po │ ├── fi.po │ ├── fr.po │ ├── hr.po │ ├── hu.po │ ├── is.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── no.po │ ├── pl.po │ ├── pt.po │ ├── ru.po │ ├── sl.po │ ├── sr.po │ ├── sv.po │ └── tr.po └── src │ ├── AutoMount.py │ ├── LICENSE │ ├── Makefile.am │ ├── MountEdit.py │ ├── MountManager.py │ ├── MountView.py │ ├── NetworkBrowser.py │ ├── UserDialog.py │ ├── UserManager.py │ ├── __init__.py │ ├── icons │ ├── LICENSE │ ├── Makefile.am │ ├── cancel.png │ ├── error.png │ ├── host.png │ ├── i-nfs.png │ ├── i-smb.png │ ├── ok.png │ ├── update.png │ └── verticalLine.png │ ├── lib │ ├── Makefile.am │ ├── errors.h │ ├── list.c │ ├── list.h │ ├── main.c │ ├── nbtscan.c │ ├── nbtscan.h │ ├── range.c │ ├── range.h │ ├── showmount.c │ ├── showmount.h │ ├── smb.h │ ├── smbinfo.c │ ├── smbinfo.h │ ├── statusq.c │ ├── statusq.h │ └── time_compat.h │ ├── maintainer.info │ └── plugin.py ├── netzkino ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_netzkino.xml └── src │ ├── Changelog.txt │ ├── Makefile.am │ ├── __init__.py │ ├── keymap.xml │ ├── logo.png │ ├── maintainer.info │ ├── netzkino.py │ ├── plugin.py │ ├── skin_FHD.xml │ └── skin_HD.xml ├── ofdb ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── ofdb.jpg │ └── plugin_ofdb.xml ├── po │ ├── Makefile.am │ ├── OFDb.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── no_poster.png │ ├── ofdb.png │ ├── plugin.py │ ├── starsbar_empty.png │ └── starsbar_filled.png ├── orfat ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── orfat.jpg │ └── plugin_orfat.xml └── src │ ├── 0.png │ ├── 1.png │ ├── 10.png │ ├── 2.png │ ├── 3.png │ ├── 4.png │ ├── 5.png │ ├── 6.png │ ├── 7.png │ ├── 8.png │ ├── 9.png │ ├── LICENSE.txt │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── orf.png │ └── plugin.py ├── orfteletext ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── orfteletext.jpg │ └── plugin_orfteletext.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── nodata.png │ └── plugin.py ├── partnerbox ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── partnerbox_de.jpg │ ├── partnerbox_en.jpg │ └── plugin_partnerbox.xml ├── po │ ├── Makefile.am │ ├── Partnerbox.pot │ ├── cs.po │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── hu.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── ru.po │ ├── sr.po │ └── sv.po └── src │ ├── ExPlayer.png │ ├── ExPlayerFHD.png │ ├── Makefile.am │ ├── PartnerboxEPGList.py │ ├── PartnerboxEPGSelection.py │ ├── PartnerboxFunctions.py │ ├── PartnerboxSetup.py │ ├── RemoteTimerEntry.py │ ├── Services.py │ ├── Setup_Partnerbox.png │ ├── __init__.py │ ├── buttons │ ├── Makefile.am │ ├── blue.png │ ├── blueFHD.png │ ├── green.png │ ├── greenFHD.png │ ├── red.png │ ├── redFHD.png │ ├── yellow.png │ └── yellowFHD.png │ ├── icons │ ├── Makefile.am │ ├── remote_epgclock.png │ ├── remote_epgclock_add.png │ ├── remote_epgclock_post.png │ ├── remote_epgclock_pre.png │ ├── remote_epgclock_prepost.png │ ├── remote_repepgclock.png │ ├── remote_repepgclock_add.png │ ├── remote_repepgclock_post.png │ ├── remote_repepgclock_pre.png │ ├── remote_repepgclock_prepost.png │ ├── remote_repzapclock.png │ ├── remote_repzapclock_add.png │ ├── remote_repzapclock_post.png │ ├── remote_repzapclock_pre.png │ ├── remote_repzapclock_prepost.png │ ├── remote_zapclock.png │ ├── remote_zapclock_add.png │ ├── remote_zapclock_post.png │ ├── remote_zapclock_pre.png │ └── remote_zapclock_prepost.png │ ├── maintainer.info │ ├── plugin.py │ ├── skin_FHD.xml │ └── skin_HD.xml ├── partnerbox2 ├── CONTROL │ └── control ├── Makefile.am ├── po │ ├── Makefile.am │ ├── Partnerbox.pot │ ├── cs.po │ ├── de.po │ ├── hu.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── ru.po │ ├── sr.po │ └── sv.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── logo.png │ ├── plugin.py │ └── setup.xml ├── passwordchanger └── CONTROL │ └── control ├── permanentclock ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_permanentclock.xml ├── po │ ├── Makefile.am │ ├── PermanentClock.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── fa.po │ ├── fy.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── pl.po │ ├── sr.po │ ├── sv.po │ └── tr.po └── src │ ├── LICENSE.txt │ ├── Makefile.am │ ├── PermanentClockTime.py │ ├── PermanentClockWatches.py │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ ├── plugin.py │ └── trad │ ├── Makefile.am │ ├── trad1.png │ ├── trad2.png │ ├── trad3.png │ ├── trad4.png │ ├── trad5.png │ ├── trad6.png │ └── trad7.png ├── permanenttimeshift ├── CONTROL │ └── control ├── Makefile.am ├── images │ ├── Makefile.am │ ├── slider.png │ ├── slider_back.png │ └── timeline-now.png ├── meta │ ├── Makefile.am │ └── plugin_permanenttimeshift.xml ├── po │ ├── Makefile.am │ ├── PermanentTimeshift.pot │ ├── de.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ ├── pl.po │ ├── ru.po │ └── sk.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── createapscfiles │ ├── .gitignore │ ├── Makefile.am │ └── createapscfiles.cc │ ├── eitsave │ ├── Makefile.am │ └── eitsave.cpp │ ├── keymap.xml │ ├── maintainer.info │ └── plugin.py ├── pipservicerelation ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_pipservicerelation.xml └── src │ ├── Makefile.am │ ├── PiPServiceRelation.png │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── pipzap ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_pipzap.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── PipzapSetup.py │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ ├── mphelp.xml │ └── plugin.py ├── pluginhider ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_pluginhider.xml ├── po │ ├── Makefile.am │ ├── PluginHider.pot │ ├── de.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── PluginHiderSetup.py │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ └── plugin.py ├── pluginsort ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_pluginsort.xml ├── po │ ├── Makefile.am │ ├── de.po │ ├── el.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── mphelp.xml │ └── plugin.py ├── podcast ├── CONTROL │ └── control ├── Makefile.am ├── etc │ ├── Makefile.am │ └── podcasts.xml ├── meta │ ├── Makefile.am │ ├── plugin_podcast.xml │ └── podcast.jpg ├── po │ ├── Makefile.am │ ├── Podcast.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── et.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── LICENSE.txt │ ├── Makefile.am │ ├── __init__.py │ ├── help │ ├── help_de │ ├── help_en │ └── help_it │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── porncenter ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_porncenter.xml │ └── porncenter.jpg ├── po │ ├── Makefile.am │ ├── PornCenter.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── Additions │ ├── Makefile.am │ ├── MyDirtyIpods.png │ ├── MyDirtyIpods.py │ ├── NaughtyAmerica.png │ ├── NaughtyAmerica.py │ ├── Plugin.py │ ├── Podcast.py │ ├── Pornabees.png │ ├── Pornabees.py │ ├── SuicideGirls.png │ ├── SuicideGirls.py │ ├── __init__.py │ ├── bangyoulater.png │ ├── bangyoulater.py │ ├── mXVideos.png │ ├── mXVideos.py │ ├── mp4porn.png │ ├── mp4porn.py │ ├── pornrabbit.png │ ├── pornrabbit.py │ ├── videarn.png │ ├── videarn.py │ ├── xPodClips.png │ ├── xPodClips.py │ ├── xxx4pods.png │ └── xxx4pods.py │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── nopreview.png │ ├── plugin.png │ └── plugin.py ├── pushservice ├── CONTROL │ ├── control │ ├── postinst │ └── postrm ├── Makefile.am ├── etc │ ├── Makefile.am │ └── pushservice.xml ├── meta │ ├── Makefile.am │ ├── plugin_pushservice.jpg │ └── plugin_pushservice.xml ├── po │ ├── Makefile.am │ ├── PushService.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── it.po │ └── nl.po └── src │ ├── ConfigFile.py │ ├── ConfigScreen.py │ ├── Controller │ ├── ActiveTimers.py │ ├── CrashLog.py │ ├── DeactivatedTimers.py │ ├── FreeSpace.py │ ├── IPKGUpdateNotification.py │ ├── Makefile.am │ ├── RecordNotification.py │ ├── RecordSummary.py │ └── __init__.py │ ├── ControllerBase.py │ ├── LICENSE │ ├── Makefile.am │ ├── ModuleBase.py │ ├── Modules.py │ ├── PushService.py │ ├── PushServiceBase.py │ ├── ServiceBase.py │ ├── Services │ ├── GNTP.py │ ├── Makefile.am │ ├── PopUp.py │ ├── SMTP.py │ ├── __init__.py │ ├── gntp │ │ ├── Makefile.am │ │ ├── __init__.py │ │ ├── cli.py │ │ ├── config.py │ │ └── notifier.py │ └── mail │ │ ├── Makefile.am │ │ ├── __init__.py │ │ └── mail.py │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ ├── plugin.py │ └── skin.xml ├── pyproject.toml ├── quickbutton ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_quickbutton.xml │ ├── quickbutton_de.jpg │ └── quickbutton_en.jpg ├── po │ ├── Makefile.am │ ├── Quickbutton.pot │ ├── cs.po │ ├── de.po │ ├── en_GB.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ ├── plugin.py │ └── setup_quickbutton.png ├── reconstructapsc ├── CONTROL │ └── control ├── Makefile.am ├── Readme-ReconstructApSc.txt ├── meta │ ├── Makefile.am │ ├── plugin_reconstructapsc.xml │ └── reconstructapsc.jpg └── src_py │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── reftopiconname ├── CONTROL │ └── control ├── Makefile.am └── src │ ├── Makefile.am │ ├── README │ └── RefToPiconName.py ├── remotetimer ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_remotetimer.xml │ ├── remotetimer_de.jpg │ └── remotetimer_en.jpg └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.py │ └── remotetimer.png ├── remotetimer2 ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_remotetimer.xml │ ├── remotetimer_de.jpg │ └── remotetimer_en.jpg └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.py │ └── remotetimer.png ├── rsdownloader ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_rsdownloader.xml │ ├── rsdownloader_de.jpg │ └── rsdownloader_en.jpg ├── po │ ├── Makefile.am │ ├── RSDownloader.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── LICENSE.txt │ ├── Makefile.am │ ├── __init__.py │ ├── container │ ├── Makefile.am │ ├── MultipartPostHandler.py │ ├── __init__.py │ ├── decrypt.pyc │ ├── decrypt.pyo │ └── key │ ├── maintainer.info │ ├── plugin.py │ └── rs.png ├── satloader ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_satloader.xml │ └── satloader.jpg ├── po │ ├── Makefile.am │ ├── Satloader.pot │ ├── de.po │ ├── it.po │ ├── lt.po │ └── tr.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── button_blue_sm.png │ ├── button_green_sm.png │ ├── button_red_sm.png │ ├── button_yellow_sm.png │ ├── key_info.png │ ├── maintainer.info │ ├── plugin.py │ └── satloader.png ├── schiffe ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_schiffe.xml └── src │ ├── Makefile.am │ ├── Schiffe.png │ ├── __init__.py │ ├── pic │ ├── Makefile.am │ ├── Schiffe.jpg │ ├── rocket.png │ └── ship.jpg │ └── plugin.py ├── seekbar ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_seekbar.xml │ └── seekbar_de.jpg ├── po │ ├── Makefile.am │ ├── Seekbar.pot │ ├── de.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── serienfilm ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_serienfilm.xml │ └── serienfilm.jpg ├── po │ ├── Makefile.am │ ├── SerienFilm.pot │ ├── de.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── Import.py │ ├── LICENSE │ ├── Makefile.am │ ├── MovieInfo.py │ ├── MovieList.py │ ├── MovieSelection.py │ ├── SerienFilm.png │ ├── SerienFilm.py │ ├── ServiceTime.py │ ├── __init__.py │ ├── icons │ ├── Makefile.am │ ├── folder_20.png │ ├── folder_red.png │ └── folderup_20.png │ ├── maintainer.info │ └── plugin.py ├── seriesplugin ├── CONTROL │ ├── conffiles │ ├── control │ ├── postinst │ └── postrm ├── Makefile.am ├── etc │ ├── Makefile.am │ ├── seriesplugin_pattern_directories.json │ └── seriesplugin_patterns.json ├── meta │ ├── Makefile.am │ └── plugin_seriesplugin.xml ├── po │ ├── Makefile.am │ ├── SeriesPlugin.pot │ ├── de.po │ └── it.po └── src │ ├── Cacher.py │ ├── ChannelEditor.py │ ├── Channels.py │ ├── DirectoryPatterns.py │ ├── FilePatterns.py │ ├── IdentifierBase.py │ ├── Identifiers │ ├── Makefile.am │ ├── SerienServer.py │ └── __init__.py │ ├── Images │ ├── Makefile.am │ ├── blue_round.png │ ├── green_round.png │ ├── minus.png │ ├── plus.png │ ├── red_round.png │ └── yellow_round.png │ ├── LICENSE │ ├── Logger.py │ ├── Logos │ ├── Fernsehserien.png │ ├── Makefile.am │ └── Wunschliste.png │ ├── Makefile.am │ ├── ModuleBase.py │ ├── Modules.py │ ├── SeriesPlugin.py │ ├── SeriesPluginBare.py │ ├── SeriesPluginConfiguration.py │ ├── SeriesPluginIndependent.py │ ├── SeriesPluginInfoScreen.py │ ├── SeriesPluginRenamer.py │ ├── SeriesPluginTimer.py │ ├── ShowLogScreen.py │ ├── Skins │ ├── ChannelEditor.xml │ ├── InfoScreenFULLHD.xml │ ├── InfoScreenHD.xml │ ├── InfoScreenSD.xml │ ├── InfoScreenXD.xml │ ├── Makefile.am │ └── Setup.xml │ ├── ThreadQueue.py │ ├── TimeoutServerProxy.py │ ├── WebChannels.py │ ├── XMLFile.py │ ├── XMLTVBase.py │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.png │ ├── plugin.py │ ├── spChannelContextMenu.py │ └── spEPGSelection.py ├── setpasswd ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_setpasswd.xml │ ├── setpasswd_de.jpg │ └── setpasswd_en.jpg ├── po │ ├── Makefile.am │ ├── SetPasswd.pot │ ├── de.po │ ├── en_GB.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── pl.po │ ├── sr.po │ └── tr.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ └── plugin.py ├── shoutcast ├── CONTROL │ ├── conffiles │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_shoutcast.xml │ └── shoutcast.jpg ├── po │ ├── Makefile.am │ ├── SHOUTcast.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ └── pl.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── favorites │ ├── maintainer.info │ ├── plugin.png │ ├── plugin.py │ └── shoutcast-logo1-fs8.png ├── showclock ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_showclock.xml │ └── showclock.jpg ├── po │ ├── Makefile.am │ ├── ShowClock.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fa.po │ ├── fi.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ └── tr.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── keymap.xml │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── simplerss ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_simplerss.xml │ └── simplerss.jpg ├── po │ ├── Makefile.am │ ├── SimpleRSS.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── feeds.xml │ ├── icons │ ├── Makefile.am │ ├── key_blue_HD.png │ ├── key_blue_fHD.png │ ├── key_green_HD.png │ ├── key_green_fHD.png │ ├── key_menu_HD.png │ ├── key_menu_fHD.png │ ├── key_red_HD.png │ ├── key_red_fHD.png │ ├── key_yellow_HD.png │ ├── key_yellow_fHD.png │ ├── latest_news.png │ ├── line_HD.png │ ├── line_fHD.png │ ├── no_logo.png │ ├── no_pic.png │ ├── picbg.png │ ├── rss_HD.png │ ├── rss_fHD.png │ ├── streamicon_HD.png │ ├── streamicon_fHD.png │ ├── ticker_bg_HD.png │ ├── ticker_bg_fHD.png │ ├── ticker_fg_HD.png │ └── ticker_fg_fHD.png │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── srfmediathek ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_srfmediathek.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── img │ ├── Makefile.am │ ├── az.png │ ├── endecken.png │ ├── home.png │ ├── key_blue.png │ ├── key_blue_hd.png │ ├── key_exit.png │ ├── key_exit_hd.png │ ├── key_green.png │ ├── key_green_hd.png │ ├── key_menu.png │ ├── key_menu_hd.png │ ├── key_ok.png │ ├── key_ok_hd.png │ ├── key_red.png │ ├── key_red_hd.png │ ├── key_yellow.png │ ├── key_yellow_hd.png │ ├── mostClick.png │ ├── nextpage.png │ ├── nocover.png │ ├── programm.png │ ├── sel_1200.png │ ├── sel_800.png │ └── suche.png │ ├── logo.png │ ├── maintainer.info │ ├── plugin.py │ ├── skin_FHD.xml │ ├── skin_HD.xml │ └── srf.py ├── startupservice ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_startupservice.xml ├── po │ ├── Makefile.am │ ├── StartUpService.pot │ ├── de.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── startuptostandby ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_startuptostandby.xml └── src │ ├── Makefile.am │ ├── StartupToStandbyConfiguration.py │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── subsdownloader2 ├── CONTROL │ ├── control │ ├── postinst │ └── prerm ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_subsdownloader2.jpg │ └── plugin_subsdownloader2.xml └── src │ ├── Makefile.am │ ├── SourceCode │ ├── GetFPS.py │ ├── GetFPS_MI.py │ ├── Makefile.am │ ├── MediaInfoDLL.py │ ├── NapiProjekt.py │ ├── Napisy24_pl.py │ ├── __init__.py │ ├── anysub2srt.py │ ├── archives_extractor.py │ ├── chardet_OutpuyTranslation.py │ ├── myFileList.py │ ├── periscope │ │ ├── Makefile.am │ │ ├── SubtitleDatabase.py │ │ ├── __init__.py │ │ └── services │ │ │ ├── BierDopje │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ └── services.py │ │ │ ├── Makefile.am │ │ │ ├── OpenSubtitle │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ └── services.py │ │ │ ├── Subtitulos │ │ │ ├── Makefile.am │ │ │ ├── __init__.py │ │ │ └── services.py │ │ │ └── __init__.py │ ├── xbmc_subtitles │ │ ├── Makefile.am │ │ ├── XBMC_search.py │ │ ├── __init__.py │ │ ├── services │ │ │ ├── Itasa │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ └── service.py │ │ │ ├── Makefile.am │ │ │ ├── Napisyme │ │ │ │ ├── Makefile.am │ │ │ │ ├── __init__.py │ │ │ │ └── service.py │ │ │ └── __init__.py │ │ └── utilities.py │ └── xmlrpclib.py │ ├── __init__.py │ ├── about.nfo │ ├── keybind.nfo │ ├── keymap.xml │ ├── pic │ ├── BierDopje.jpg │ ├── DMnapi.jpg │ ├── Itasa.jpg │ ├── Makefile.am │ ├── NapiProjekt.jpg │ ├── Napisy24.jpg │ ├── OpenSubtitle.jpg │ ├── Subtitulos.jpg │ ├── TheSubDB.jpg │ ├── buttons │ │ ├── HD │ │ │ ├── Makefile.am │ │ │ ├── key_0.png │ │ │ ├── key_blue.png │ │ │ ├── key_green.png │ │ │ ├── key_help.png │ │ │ ├── key_info.png │ │ │ ├── key_last.png │ │ │ ├── key_menu.png │ │ │ ├── key_next.png │ │ │ ├── key_red.png │ │ │ ├── key_text.png │ │ │ └── key_yellow.png │ │ └── Makefile.am │ ├── none1.jpg │ └── res │ │ ├── Makefile.am │ │ ├── Thumbs.db │ │ ├── back.png │ │ ├── blue.png │ │ ├── dir.png │ │ ├── green.png │ │ ├── info.png │ │ ├── menu.png │ │ ├── movie.png │ │ ├── music.mvi │ │ ├── music.png │ │ ├── package.png │ │ ├── picture.png │ │ ├── red.png │ │ ├── script.png │ │ └── yellow.png │ ├── plugin.py │ ├── pluginOnlineContent.py │ └── subsdownloader.png ├── sudoku ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_sudoku.xml └── src │ ├── Makefile.am │ ├── Readme.txt │ ├── __init__.py │ ├── pic │ ├── Makefile.am │ ├── rocket.png │ ├── sudoku.jpg │ └── sudokuHD.jpg │ ├── plugin.py │ └── sudoku.png ├── svdrp ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_svdrp.xml └── src │ ├── LICENSE │ ├── Makefile.am │ ├── SVDRP.py │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── tageditor ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_tageditor.xml │ ├── tageditor_de.jpg │ └── tageditor_en.jpg ├── po │ ├── Makefile.am │ ├── TagEditor.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── teletext ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_teletext.xml ├── po │ ├── Makefile.am │ ├── TeleText.pot │ ├── de.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ └── pl.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── key_gt.png │ ├── key_lt.png │ ├── keymap.xml │ ├── lcd_off.png │ ├── lcd_on.png │ ├── maintainer.info │ ├── plugin.py │ └── teletext.png ├── tetris ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_tetris.xml └── src │ ├── Makefile.am │ ├── Tetris.py │ ├── __init__.py │ ├── keymap.xml │ ├── pic │ ├── Makefile.am │ └── tetris.jpg │ ├── plugin.py │ └── tetris.png ├── toolkit ├── CONTROL │ └── control ├── Makefile.am └── src │ ├── LICENSE │ ├── Makefile.am │ ├── NTIVirtualKeyBoard.py │ ├── NotifiablePluginBrowser.py │ ├── SimpleThread.py │ ├── TagStrip.py │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── trafficinfo ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_trafficinfo.xml │ └── trafficinfo.jpg └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── tvcharts ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_tvcharts.xml │ └── tvcharts.jpg └── src │ ├── LICENSE │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── unwetterinfo ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_unwetterzentrale.xml │ └── unwetterinfo.jpg └── src │ ├── Makefile.am │ ├── W_gelb.gif │ ├── W_gruen.gif │ ├── W_orange.gif │ ├── W_rot.gif │ ├── W_violett.gif │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.py │ ├── uwz.png │ ├── uwzat.png │ └── wetterreport.jpg ├── updatepot.sh ├── valixdcontrol ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_vxdcontrol.xml │ └── vxdcontrol.jpg └── src │ ├── Makefile.am │ ├── __init__.py │ ├── comp │ ├── Makefile.am │ ├── magic_buttons.tar.gz │ ├── round_buttons.tar.gz │ ├── spetial_icons.tar.gz │ ├── suomi_patch │ ├── vConvClockToText.py │ ├── vConvSmartInfo.py │ ├── vRendChNumber.py │ ├── vRendMaxTemp.py │ ├── vRendMovieDirSize.py │ ├── vRendVideoSize.py │ └── vRendVolumeText.py │ ├── data │ ├── Makefile.am │ ├── channelselector-full-hor.xml │ ├── channelselector-full-vert.xml │ ├── channelselector-full.xml │ ├── channelselector-pig.xml │ ├── channelselector-simple.xml │ ├── head.xml │ ├── main.xml │ ├── menu-center.xml │ ├── menu-right.xml │ ├── oled-7025.xml │ ├── oled-800.xml │ ├── oled-8000.xml │ ├── oled-VerySymple.xml │ ├── skin-atlantis-picon.xml │ ├── skin-atlantis.xml │ ├── skin-avalon-picon.xml │ ├── skin-avalon.xml │ ├── skin-base-picon.xml │ ├── skin-base.xml │ ├── skin-beyonddreams-picon.xml │ ├── skin-beyonddreams.xml │ ├── skin-blues-picon.xml │ ├── skin-blues.xml │ ├── skin-glas-picon.xml │ ├── skin-glas.xml │ ├── skin-metalpad-picon.xml │ ├── skin-metalpad.xml │ ├── skin-shadow-picon.xml │ ├── skin-shadow.xml │ ├── skin-shadow2-picon.xml │ ├── skin-shadow2.xml │ ├── skin-validator-picon.xml │ ├── skin-validator.xml │ ├── skin-vision-picon.xml │ └── skin-vision.xml │ ├── maintainer.info │ ├── plugin.png │ └── plugin.py ├── videocolorspace ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_videocolorspace.xml ├── po │ ├── Makefile.am │ ├── VideoColorSpace.pot │ ├── de.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── VideoColorSpace.py │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── vierg ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_vierg.xml └── src │ ├── Makefile.am │ ├── __init__.py │ ├── layout.png │ ├── plugin.py │ └── vierg.png ├── virtualzap ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_virtualzap.xml │ └── virtualzap.jpg ├── po │ ├── Makefile.am │ ├── VirtualZap.pot │ ├── de.po │ ├── fa.po │ ├── it.po │ └── lt.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── hd.png │ ├── keymap.xml │ ├── maintainer.info │ ├── plugin.png │ ├── plugin.py │ └── sd.png ├── vlcplayer ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_vlcplayer.xml │ ├── vlcplayer_de.jpg │ └── vlcplayer_en.jpg ├── po │ ├── Makefile.am │ ├── VlcPlayer.pot │ ├── cs.po │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── es.po │ ├── fa.po │ ├── fr.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── no.po │ ├── ru.po │ ├── sr.po │ ├── sv.po │ └── tr.po └── src │ ├── Makefile.am │ ├── VlcFileList.py │ ├── VlcMediaList.py │ ├── VlcPlayList.py │ ├── VlcPlayer.py │ ├── VlcServer.py │ ├── VlcServerConfig.py │ ├── VlcServerList.py │ ├── __init__.py │ ├── locale │ ├── VlcPlayer.pot │ ├── it │ │ └── VlcPlayer.po │ └── tr │ │ └── VlcPlayer.po │ ├── maintainer.info │ ├── playlist.png │ ├── plugin.png │ ├── plugin.py │ ├── vlc.png │ └── vlc_default.png ├── vps ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_vps.xml │ └── vps.jpg ├── po │ ├── Makefile.am │ ├── cs.po │ ├── de.po │ ├── fi.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ └── vps.pot ├── src_cc │ ├── .gitignore │ ├── Makefile.am │ ├── vps.cpp │ └── vps.h └── src_py │ ├── LICENSE │ ├── Makefile.am │ ├── Modifications.py │ ├── Vps.py │ ├── VpsWebScreens.py │ ├── Vps_check.py │ ├── Vps_setup.py │ ├── WebComponents │ ├── Makefile.am │ ├── Sources │ │ ├── Makefile.am │ │ ├── Vps.py │ │ └── __init__.py │ └── __init__.py │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.py │ ├── web-data │ ├── Makefile.am │ └── index.html │ └── web │ ├── Makefile.am │ ├── timeradd.xml │ ├── timeraddbyeventid.xml │ ├── timerchange.xml │ └── timerlist.xml ├── weathercomponent ├── CONTROL │ └── control ├── Makefile.am └── src │ ├── Components │ ├── Converter │ │ └── MSNWeather.py │ ├── Renderer │ │ └── MSNWeatherPixmap.py │ ├── Sources │ │ └── MSNWeather.py │ └── WeatherMSN.py │ ├── Makefile.am │ └── README ├── weathercomponenthandler ├── CONTROL │ └── control ├── Makefile.am └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── weatherplugin ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_weatherplugin.xml │ └── weatherplugin.jpg ├── po │ ├── Makefile.am │ ├── WeatherPlugin.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fa.po │ ├── fi.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── pl.po │ ├── pt.po │ ├── ru.po │ ├── tr.po │ └── uk.po └── src │ ├── MSNWeather.py │ ├── Makefile.am │ ├── __init__.py │ ├── icons │ ├── Makefile.am │ ├── chance_of_rain.gif │ ├── chance_of_snow.gif │ ├── chance_of_storm.gif │ ├── chance_of_tstorm.gif │ ├── cloudy.gif │ ├── dust.gif │ ├── flurries.gif │ ├── fog.gif │ ├── haze.gif │ ├── icy.gif │ ├── mist.gif │ ├── mostly_cloudy.gif │ ├── mostly_sunny.gif │ ├── partly_cloudy.gif │ ├── rain.gif │ ├── sleet.gif │ ├── smoke.gif │ ├── snow.gif │ ├── storm.gif │ ├── sunny.gif │ ├── thunderstorm.gif │ └── www.google.com │ ├── maintainer.info │ ├── plugin.py │ ├── setup.py │ └── weather.png ├── webadmin ├── CONTROL │ ├── control │ ├── postinst │ └── postrm ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_webadmin.xml │ └── webadmin.jpg └── src │ ├── LICENSE │ ├── Makefile.am │ ├── WebChilds │ ├── Makefile.am │ ├── PKG.py │ ├── Script.py │ ├── UploadPkg.py │ ├── UploadText.py │ └── __init__.py │ ├── WebComponents │ ├── Makefile.am │ ├── Sources │ │ ├── Makefile.am │ │ ├── PkgConfList.py │ │ ├── PkgList.py │ │ ├── WebScriptList.py │ │ └── __init__.py │ └── __init__.py │ ├── WebScreens │ ├── Makefile.am │ ├── WebAdminScreen.py │ └── __init__.py │ ├── __init__.py │ ├── maintainer.info │ ├── mobile │ ├── Makefile.am │ ├── index.html.xml │ └── pkglist.html.xml │ ├── plugin.py │ ├── web-data │ ├── Makefile.am │ ├── admin.js │ ├── handler.js │ ├── helpers.js │ ├── img │ │ ├── Makefile.am │ │ └── update.png │ ├── index.html │ ├── jta26.jar │ ├── provider.js │ └── tpl │ │ ├── Makefile.am │ │ ├── style.admin.css │ │ ├── tplNavPkgs.htm │ │ ├── tplPkgList.htm │ │ ├── tplPkgSettings.htm │ │ ├── tplScriptList.htm │ │ └── tplTerminal.htm │ └── web │ ├── Makefile.am │ ├── fake.xml │ ├── feedonline.xml │ ├── getmemory.xml │ ├── pkgconflist.xml │ ├── pkglist.xml │ └── scriptlist.xml ├── webbouqueteditor ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_webbouqueteditor.xml │ └── webbouqueteditor.jpg └── src │ ├── LICENSE │ ├── Makefile.am │ ├── WebChilds │ ├── Makefile.am │ ├── WebUploadResource.py │ └── __init__.py │ ├── WebComponents │ ├── Makefile.am │ ├── Sources │ │ ├── BouquetEditor.py │ │ ├── Makefile.am │ │ ├── ProtectionSettings.py │ │ ├── SatellitesList.py │ │ ├── ServiceList.py │ │ └── __init__.py │ └── __init__.py │ ├── WebScreens │ ├── AdditionalWebScreens.py │ ├── BouquetEditorWebScreens.py │ ├── Makefile.am │ └── __init__.py │ ├── __init__.py │ ├── maintainer.info │ ├── plugin.py │ ├── web-data │ ├── Makefile.am │ ├── ajax-loader.gif │ ├── alternativelist.htm │ ├── bouqueteditor.js │ ├── bouquetlist.htm │ ├── dreambox_bouqueteditor.png │ ├── index.html │ ├── objects.js │ ├── providerlist.htm │ ├── providerservicelist.htm │ ├── servicelist.htm │ ├── style.css │ └── tools.js │ └── web │ ├── Makefile.am │ ├── addbouquet.xml │ ├── addmarkertobouquet.xml │ ├── addprovidertobouquetlist.xml │ ├── addservicetoalternative.xml │ ├── addservicetobouquet.xml │ ├── backup.xml │ ├── getprotectionsettings.xml │ ├── getservices.xml │ ├── movebouquet.xml │ ├── moveservice.xml │ ├── removealternativeservices.xml │ ├── removebouquet.xml │ ├── removeservice.xml │ ├── renameservice.xml │ ├── restore.xml │ ├── satelliteslist.xml │ └── togglelock.xml ├── webcamviewer ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_webcamviewer.xml │ ├── webcamviewer_de.jpg │ └── webcamviewer_en.jpg └── src │ ├── FTPDownloader.py │ ├── LICENSE │ ├── Makefile.am │ ├── PictureScreen.py │ ├── WebcamTravel.py │ ├── WebcamViewConfig.py │ ├── __init__.py │ ├── maintainer.info │ ├── pictureviewer.png │ ├── plugin.py │ ├── webcam.xml │ └── webcamviewer.png ├── webinterface ├── .project ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_webinterface.xml │ └── webinterface.jpg ├── po │ ├── Makefile.am │ ├── WebInterface.pot │ ├── cs.po │ ├── da.po │ ├── de.po │ ├── es.po │ ├── fy.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── no.po │ ├── pl.po │ ├── sr.po │ ├── sv.po │ └── tr.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── WebChilds │ ├── External │ │ ├── Example.py │ │ ├── Makefile.am │ │ └── __init__.py │ ├── FileStreamer.py │ ├── IPKG.py │ ├── Makefile.am │ ├── PlayService.py │ ├── RedirecToCurrentStream.py │ ├── Screengrab.py │ ├── Screenpage.py │ ├── ServiceListSave.py │ ├── Toplevel.py │ ├── Uploader.py │ └── __init__.py │ ├── WebComponents │ ├── Converter │ │ ├── HddInfo.py │ │ ├── Makefile.am │ │ ├── NetworkInterfaceInfo.py │ │ ├── SimpleResult.py │ │ ├── SleepTimer.py │ │ ├── TPMChallenge.py │ │ ├── VolumeInfo.py │ │ └── __init__.py │ ├── Makefile.am │ ├── Sources │ │ ├── AT.py │ │ ├── About.py │ │ ├── AudioTracks.py │ │ ├── Backup.py │ │ ├── CurrentService.py │ │ ├── EPG.py │ │ ├── External.py │ │ ├── Frontend.py │ │ ├── Hdd.py │ │ ├── LocationsAndTags.py │ │ ├── MP.py │ │ ├── Makefile.am │ │ ├── Message.py │ │ ├── Movie.py │ │ ├── Network.py │ │ ├── ParentControl.py │ │ ├── PowerState.py │ │ ├── ReadPluginList.py │ │ ├── RemoteControl.py │ │ ├── RequestData.py │ │ ├── ServiceListRecursive.py │ │ ├── ServiceListReload.py │ │ ├── ServicePlayable.py │ │ ├── Settings.py │ │ ├── SleepTimer.py │ │ ├── Strings.py │ │ ├── SubServices.py │ │ ├── SwitchService.py │ │ ├── TPMChallenge.py │ │ ├── Timer.py │ │ ├── Volume.py │ │ ├── WAPfunctions.py │ │ ├── WebSession.py │ │ └── __init__.py │ └── __init__.py │ ├── WebIfConfig.py │ ├── WebScreens.py │ ├── __init__.py │ ├── m │ ├── Makefile.am │ ├── bouquets.html.xml │ ├── epg.html.xml │ ├── index.html.xml │ ├── message.html.xml │ ├── movies.html.xml │ ├── power.html.xml │ ├── services.html.xml │ ├── timeraddbyeventid.html.xml │ ├── timeredit.html.xml │ ├── timers.html.xml │ ├── timerservices.html.xml │ └── zap.html.xml │ ├── maintainer.info │ ├── mobile │ ├── Makefile.am │ ├── bouquets.html.xml │ ├── epg.html.xml │ ├── index.html.xml │ ├── power.html.xml │ ├── services.html.xml │ ├── subservices.html.xml │ ├── timeradd.xml │ ├── timerchange.html.xml │ ├── timerdelete.html.xml │ ├── timeredit.html.xml │ ├── timerlist.html.xml │ └── wapremote.html.xml │ ├── plugin.png │ ├── plugin.py │ ├── web-data │ ├── IEFixes.htc │ ├── Makefile.am │ ├── PIE.htc │ ├── core.js │ ├── css │ │ ├── Makefile.am │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── Makefile.am │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ ├── fontawesome-webfont.woff │ │ ├── fontawesome-webfont.woff2 │ │ ├── fonts.css │ │ ├── roboto-bold-webfont.eot │ │ ├── roboto-bold-webfont.svg │ │ ├── roboto-bold-webfont.ttf │ │ ├── roboto-bold-webfont.woff │ │ ├── roboto-regular-webfont.eot │ │ ├── roboto-regular-webfont.svg │ │ ├── roboto-regular-webfont.ttf │ │ └── roboto-regular-webfont.woff │ ├── gfx │ │ ├── Makefile.am │ │ ├── ajaxload.gif │ │ ├── ajaxload_banner.gif │ │ ├── button.png │ │ ├── dvr-buttons-small-fs8.png │ │ ├── play.png │ │ ├── record.png │ │ └── remotecontrol_static.jpg │ ├── handler.js │ ├── helpers.js │ ├── img │ │ ├── Makefile.am │ │ ├── arrow_down.png │ │ ├── arrow_up.png │ │ ├── book_open.png │ │ ├── clock.png │ │ ├── clock_delete.png │ │ ├── clock_edit.png │ │ ├── clock_play.png │ │ ├── clock_red.png │ │ ├── control_end_blue.png │ │ ├── control_pause_blue.png │ │ ├── control_play_blue.png │ │ ├── control_start_blue.png │ │ ├── control_stop_blue.png │ │ ├── cross.png │ │ ├── delete.png │ │ ├── dreamboxweb.png │ │ ├── dreamboxweb_black.png │ │ ├── dreamboxweb_light.png │ │ ├── dreamboxweb_modern.png │ │ ├── dreamboxweb_white.png │ │ ├── dreamboxwebtv.png │ │ ├── edit.png │ │ ├── epg.png │ │ ├── favicon.ico │ │ ├── feed.png │ │ ├── film_save.png │ │ ├── folder.png │ │ ├── folder_add.png │ │ ├── imdb.png │ │ ├── led_off.png │ │ ├── led_on.png │ │ ├── minus.png │ │ ├── monitor.png │ │ ├── nok.png │ │ ├── off.png │ │ ├── ok.png │ │ ├── on.png │ │ ├── page.png │ │ ├── page_add.png │ │ ├── plus.png │ │ ├── rc.png │ │ ├── rcold.png │ │ ├── record.png │ │ ├── save.png │ │ ├── screen.png │ │ ├── search.png │ │ ├── signal.png │ │ ├── signal_off.png │ │ ├── sound.png │ │ ├── sound_add.png │ │ ├── sound_delete.png │ │ ├── sound_mute.png │ │ ├── speak_off.png │ │ ├── speak_on.png │ │ ├── stream.png │ │ ├── text_align_center.png │ │ ├── text_columns.png │ │ ├── timer.png │ │ ├── timer_edit.png │ │ ├── toggle_collapse.png │ │ ├── toggle_collapse_small.png │ │ ├── toggle_expand.png │ │ ├── toggle_expand_small.png │ │ ├── transmit.png │ │ ├── transmit_blue.png │ │ ├── transmit_grey.png │ │ ├── world.png │ │ └── zap.png │ ├── lib │ │ ├── Makefile.am │ │ ├── datepicker │ │ │ ├── Makefile.am │ │ │ ├── datepicker.css │ │ │ ├── datepicker.js │ │ │ └── media │ │ │ │ ├── Makefile.am │ │ │ │ ├── backstripes.gif │ │ │ │ ├── bg_header.jpg │ │ │ │ ├── bullet1.gif │ │ │ │ ├── bullet2.gif │ │ │ │ ├── cal-grey.gif │ │ │ │ ├── cal.gif │ │ │ │ └── gradient-e5e5e5-ffffff.gif │ │ ├── fxHeader_0.6.js │ │ ├── hashlistener2.js │ │ ├── jquery-1.7.1.min.js │ │ ├── lang │ │ │ ├── Makefile.am │ │ │ ├── ar.js │ │ │ ├── cs.js │ │ │ ├── da.js │ │ │ ├── de.js │ │ │ ├── en.js │ │ │ ├── eo.js │ │ │ ├── es.js │ │ │ ├── et.js │ │ │ ├── fi.js │ │ │ ├── fr.js │ │ │ ├── he.js │ │ │ ├── hu.js │ │ │ ├── id.js │ │ │ ├── it.js │ │ │ ├── kr.js │ │ │ ├── lt.js │ │ │ ├── lv.js │ │ │ ├── nl.js │ │ │ ├── no.js │ │ │ ├── pl.js │ │ │ ├── pt-br.js │ │ │ ├── pt.js │ │ │ ├── ru.js │ │ │ ├── se.js │ │ │ ├── si.js │ │ │ └── tr.js │ │ ├── libs.packed.js │ │ ├── libs_minified.js │ │ ├── prototype.js │ │ └── trimpath-template-1.0.38.js │ ├── m │ │ ├── Makefile.am │ │ ├── css │ │ │ ├── Makefile.am │ │ │ ├── jquery.mobile.structure-1.1.1.min.css │ │ │ ├── mobiscroll-2.0.1.custom.min.css │ │ │ └── themes │ │ │ │ ├── Makefile.am │ │ │ │ ├── dream.css │ │ │ │ ├── dream.min.css │ │ │ │ └── images │ │ │ │ ├── Makefile.am │ │ │ │ ├── ajax-loader.gif │ │ │ │ ├── icons-18-black.png │ │ │ │ ├── icons-18-white.png │ │ │ │ ├── icons-36-black.png │ │ │ │ └── icons-36-white.png │ │ └── script │ │ │ ├── Makefile.am │ │ │ ├── jquery.mobile-1.1.1.min.js │ │ │ └── mobiscroll-2.0.1.custom.min.js │ ├── provider.js │ ├── statics.js │ ├── tpl │ │ ├── Makefile.am │ │ └── default │ │ │ ├── Makefile.am │ │ │ ├── default.appcache │ │ │ ├── index.html │ │ │ ├── multiepg.css │ │ │ ├── streaminterface │ │ │ ├── Makefile.am │ │ │ ├── index.html │ │ │ ├── style.css │ │ │ ├── tplBouquetList.htm │ │ │ ├── tplCurrent.htm │ │ │ └── tplServiceList.htm │ │ │ ├── style.css │ │ │ ├── style.min.css │ │ │ ├── style_light.min.css │ │ │ ├── style_merlin_dark.min.css │ │ │ ├── style_modern.css │ │ │ ├── style_modern.min.css │ │ │ ├── tplAbout.htm │ │ │ ├── tplBouquetList.htm │ │ │ ├── tplBouquetsAndServices.htm │ │ │ ├── tplCurrent.htm │ │ │ ├── tplDebug.htm │ │ │ ├── tplDeviceInfo.htm │ │ │ ├── tplEpgList.htm │ │ │ ├── tplGrab.htm │ │ │ ├── tplMediaPlayer.htm │ │ │ ├── tplMovieList.htm │ │ │ ├── tplMovieLocations.htm │ │ │ ├── tplMovieTags.htm │ │ │ ├── tplMultiEpg.htm │ │ │ ├── tplMultiEpgDetail.htm │ │ │ ├── tplNavBoxControl.htm │ │ │ ├── tplNavExtras.htm │ │ │ ├── tplNavExtrasExternals.htm │ │ │ ├── tplNavRadio.htm │ │ │ ├── tplNavTimer.htm │ │ │ ├── tplNavTv.htm │ │ │ ├── tplPower.htm │ │ │ ├── tplSendMessage.htm │ │ │ ├── tplServiceList.htm │ │ │ ├── tplServiceListEPGItem.htm │ │ │ ├── tplSettings.htm │ │ │ ├── tplSignalPanel.htm │ │ │ ├── tplSubServices.htm │ │ │ ├── tplTimerEdit.htm │ │ │ ├── tplTimerList.htm │ │ │ ├── tplTools.htm │ │ │ ├── tplVolume.htm │ │ │ ├── tplWebRemote.htm │ │ │ └── tplWebRemoteOld.htm │ ├── userprefs.js │ └── vlcplayer.js │ ├── web │ ├── Makefile.am │ ├── about.xml │ ├── addlocation.xml │ ├── autotimerlist.xml │ ├── backup.xml │ ├── currenttime.xml │ ├── deviceinfo.xml │ ├── downmix.xml │ ├── epgbouquet.xml │ ├── epgmulti.xml │ ├── epgnext.xml │ ├── epgnow.xml │ ├── epgnownext.xml │ ├── epgsearch.rss.xml │ ├── epgsearch.xml │ ├── epgservice.xml │ ├── epgservicenext.xml │ ├── epgservicenow.xml │ ├── epgsimilar.xml │ ├── external.xml │ ├── getallservices.xml │ ├── getaudiotracks.xml │ ├── getcurrent.xml │ ├── getcurrlocation.xml │ ├── getlocations.xml │ ├── getpid.xml │ ├── getservices.xml │ ├── gettags.xml │ ├── mediaplayeradd.xml │ ├── mediaplayercmd.xml │ ├── mediaplayercurrent.xml │ ├── mediaplayerlist.xml │ ├── mediaplayerload.xml │ ├── mediaplayerplay.xml │ ├── mediaplayerremove.xml │ ├── mediaplayerwrite.xml │ ├── message.xml │ ├── messageanswer.xml │ ├── moviedelete.xml │ ├── movielist.html.xml │ ├── movielist.m3u.xml │ ├── movielist.rss.xml │ ├── movielist.xml │ ├── moviemove.xml │ ├── movietags.xml │ ├── parentcontrollist.xml │ ├── pluginlistread.xml │ ├── powerstate.xml │ ├── recordnow.xml │ ├── remotecontrol.xml │ ├── removelocation.xml │ ├── restarttwisted.xml │ ├── restore.xml │ ├── selectaudiotrack.xml │ ├── servicelistplayable.xml │ ├── servicelistreload.xml │ ├── serviceplayable.xml │ ├── services.m3u.xml │ ├── session.xml │ ├── settings.xml │ ├── signal.xml │ ├── sleeptimer.xml │ ├── stream.m3u.xml │ ├── stream.xml │ ├── streamcurrent.m3u.xml │ ├── streamsubservices.xml │ ├── strings.js.xml │ ├── subservices.xml │ ├── timeradd.xml │ ├── timeraddbyeventid.xml │ ├── timerchange.xml │ ├── timercleanup.xml │ ├── timerdelete.xml │ ├── timerlist.xml │ ├── timerlistwrite.xml │ ├── tpm.xml │ ├── ts.m3u.xml │ ├── tvbrowser.xml │ ├── updates.html.xml │ ├── vol.xml │ └── zap.xml │ └── webif.py ├── werbezapper ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_werbezapper.xml │ └── werbezapper.jpg ├── po │ ├── Makefile.am │ ├── WerbeZapper.pot │ ├── de.po │ ├── en_GB.po │ ├── es.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── sr.po │ └── tr.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── WerbeZapper.py │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── widgets └── src │ ├── LICENSE │ ├── Widget.py │ ├── __init__.py │ ├── keymap.xml │ ├── plugin.py │ ├── skin.xml │ └── widgets │ ├── __init__.py │ ├── bigclock │ ├── __init__.py │ ├── widget.py │ └── widget_skin.xml │ ├── counter │ ├── __init__.py │ ├── widget.py │ └── widget_skin.xml │ ├── frontendstatus │ ├── __init__.py │ ├── widget.py │ └── widget_skin.xml │ ├── imageswitch │ ├── WebPixmap.py │ ├── __init__.py │ ├── widget.py │ └── widget_skin.xml │ ├── serviceinfo │ ├── __init__.py │ ├── widget.py │ └── widget_skin.xml │ └── testwidget │ ├── __init__.py │ ├── widget.py │ └── widget_skin.xml ├── xml2po.py ├── youtubeplayer ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_youtubeplayer.xml │ ├── youtubeplayer_de.jpg │ └── youtubeplayer_en.jpg └── src │ ├── ConfigTextWithSuggestions.py │ ├── DirectYouTubePlayer.py │ ├── GoogleSuggestions.py │ ├── Makefile.am │ ├── Nemesis.GlassLine_Mod │ ├── Makefile.am │ └── skin.xml │ ├── SkinLoader.py │ ├── YouTubeAddPlayList.py │ ├── YouTubeContextMenu.py │ ├── YouTubeInterface.py │ ├── YouTubeList.py │ ├── YouTubePlayList.py │ ├── YouTubePlayer.py │ ├── YouTubeSearchDialog.py │ ├── YouTubeStdFeedSelection.py │ ├── YouTubeUserConfig.py │ ├── YouTubeUserList.py │ ├── __init__.py │ ├── keymap.xml │ ├── locale │ ├── de │ │ └── YouTubePlayer.po │ ├── it │ │ └── YouTubePlayer.po │ ├── messages.pot │ ├── nl │ │ └── YouTubePlayer.po │ └── tr │ │ └── YouTubePlayer.po │ ├── maintainer.info │ ├── plugin.png │ ├── plugin.py │ ├── skin.xml │ ├── starsbar_empty.png │ ├── starsbar_filled.png │ ├── user.png │ └── user_default.png ├── yttrailer ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_yttrailer.xml ├── po │ ├── Makefile.am │ ├── YTTrailer.pot │ ├── de.po │ ├── en_GB.po │ ├── it.po │ ├── nl.po │ └── tr.po └── src │ ├── LICENSE │ ├── Makefile.am │ ├── YTtrailer.png │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── zaphistorybrowser ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ ├── plugin_zaphistorybrowser.xml │ ├── zaphistorybrowser_de.jpg │ └── zaphistorybrowser_en.jpg ├── po │ ├── Makefile.am │ ├── ZapHistoryBrowser.pot │ ├── de.po │ ├── en_GB.po │ ├── es.po │ ├── fa.po │ ├── fy.po │ ├── it.po │ ├── lt.po │ ├── nl.po │ ├── pl.po │ ├── ru.po │ ├── sr.po │ ├── sv.po │ └── tr.po └── src │ ├── LICENSE.txt │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py ├── zapstatistic ├── CONTROL │ └── control ├── Makefile.am ├── meta │ ├── Makefile.am │ └── plugin_zapstatistic.xml ├── po │ ├── Makefile.am │ ├── ZapStatistic.pot │ ├── de.po │ ├── en.po │ ├── en_GB.po │ ├── fa.po │ ├── it.po │ ├── lt.po │ └── nl.po └── src │ ├── Makefile.am │ ├── __init__.py │ ├── maintainer.info │ └── plugin.py └── zdfmediathek ├── CONTROL └── control ├── Makefile.am ├── meta ├── Makefile.am └── plugin_zdfmediathek.xml └── src ├── Makefile.am ├── __init__.py ├── img ├── Makefile.am ├── az.png ├── endecken.png ├── home.png ├── key_blue.png ├── key_blue_hd.png ├── key_exit.png ├── key_exit_hd.png ├── key_green.png ├── key_green_hd.png ├── key_menu.png ├── key_menu_hd.png ├── key_ok.png ├── key_ok_hd.png ├── key_red.png ├── key_red_hd.png ├── key_yellow.png ├── key_yellow_hd.png ├── live.png ├── nextpage.png ├── nocover.png ├── programm.png ├── sel_1155.png ├── sel_770.png ├── sender.png └── suche.png ├── keymap.xml ├── logo.png ├── maintainer.info ├── plugin.py ├── skin_FHD.xml ├── skin_HD.xml └── zdf.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/.project -------------------------------------------------------------------------------- /.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/.pydevproject -------------------------------------------------------------------------------- /.pylintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/.pylintrc -------------------------------------------------------------------------------- /.settings/.jsdtscope: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/.settings/.jsdtscope -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.container: -------------------------------------------------------------------------------- 1 | org.eclipse.wst.jsdt.launching.baseBrowserLibrary -------------------------------------------------------------------------------- /.settings/org.eclipse.wst.jsdt.ui.superType.name: -------------------------------------------------------------------------------- 1 | Window -------------------------------------------------------------------------------- /3dsettings/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: 3D OSD Switcher 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /3dsettings/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /3dsettings/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/3dsettings/po/de.po -------------------------------------------------------------------------------- /3dsettings/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/3dsettings/po/fr.po -------------------------------------------------------------------------------- /3dsettings/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/3dsettings/po/it.po -------------------------------------------------------------------------------- /3dsettings/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/3dsettings/po/lt.po -------------------------------------------------------------------------------- /3dsettings/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/3dsettings/po/tr.po -------------------------------------------------------------------------------- /3dsettings/src/maintainer.info: -------------------------------------------------------------------------------- 1 | dr.best@dreambox-tools.info 2 | 3DSettings 3 | -------------------------------------------------------------------------------- /CI/PEP8.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/CI/PEP8.sh -------------------------------------------------------------------------------- /CI/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/CI/build.sh -------------------------------------------------------------------------------- /CI/chmod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/CI/chmod.sh -------------------------------------------------------------------------------- /CI/dos2unix.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/CI/dos2unix.sh -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | see individual plugins. 2 | -------------------------------------------------------------------------------- /Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/Makefile.am -------------------------------------------------------------------------------- /README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/README -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/README.md -------------------------------------------------------------------------------- /Rules-cpp.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/Rules-cpp.mak -------------------------------------------------------------------------------- /Rules-po.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/Rules-po.mak -------------------------------------------------------------------------------- /Rules_noxml-po.mak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/Rules_noxml-po.mak -------------------------------------------------------------------------------- /Series2Folder/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /Series2Folder/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = Series2Folder 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /Series2Folder/src/maintainer.info: -------------------------------------------------------------------------------- 1 | prl 2 | Series2Folder 3 | -------------------------------------------------------------------------------- /advancedmovieselection/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /advancedmovieselection/src/Source/Remote/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /advancedmovieselection/src/Source/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /advhdmi/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /advhdmi/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/advhdmi/po/de.po -------------------------------------------------------------------------------- /advhdmi/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/advhdmi/po/fr.po -------------------------------------------------------------------------------- /advhdmi/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/advhdmi/po/it.po -------------------------------------------------------------------------------- /advhdmi/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/advhdmi/po/lt.po -------------------------------------------------------------------------------- /advhdmi/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/advhdmi/po/nl.po -------------------------------------------------------------------------------- /advhdmi/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/advhdmi/src/LICENSE -------------------------------------------------------------------------------- /advhdmi/src/maintainer.info: -------------------------------------------------------------------------------- 1 | johnny.u@gmx.at 2 | AdvancedHDMICec 3 | -------------------------------------------------------------------------------- /aihdcontroler/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: Ai.HD skins Control 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /aihdcontroler/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /aihdcontroler/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /aihdcontroler/src/maintainer.info: -------------------------------------------------------------------------------- 1 | vali@dreambox-tools.info 2 | AiHDcontroler 3 | -------------------------------------------------------------------------------- /antiscrollbar/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /antiscrollbar/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /antiscrollbar/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | AntiScrollbar 3 | -------------------------------------------------------------------------------- /ardmediathek/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta src 2 | -------------------------------------------------------------------------------- /ardmediathek/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ardmediathek/src/maintainer.info: -------------------------------------------------------------------------------- 1 | CommanderData 2 | ARD Mediathek 3 | -------------------------------------------------------------------------------- /aspectratioswitch/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /aspectratioswitch/src/maintainer.info: -------------------------------------------------------------------------------- 1 | Software@Strasdas.de 2 | AspectRatioSwitch 3 | -------------------------------------------------------------------------------- /audiorestart/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = img po src meta 2 | -------------------------------------------------------------------------------- /audiorestart/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = AudioRestart 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /audiorestart/src/maintainer.info: -------------------------------------------------------------------------------- 1 | sagichnet@gmx.net 2 | AudioRestart 3 | -------------------------------------------------------------------------------- /audiosync/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/.project -------------------------------------------------------------------------------- /audiosync/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = img po src meta 2 | -------------------------------------------------------------------------------- /audiosync/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = AudioSync 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /audiosync/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/ar.po -------------------------------------------------------------------------------- /audiosync/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/cs.po -------------------------------------------------------------------------------- /audiosync/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/de.po -------------------------------------------------------------------------------- /audiosync/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/en.po -------------------------------------------------------------------------------- /audiosync/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/et.po -------------------------------------------------------------------------------- /audiosync/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/fa.po -------------------------------------------------------------------------------- /audiosync/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/fi.po -------------------------------------------------------------------------------- /audiosync/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/fr.po -------------------------------------------------------------------------------- /audiosync/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/it.po -------------------------------------------------------------------------------- /audiosync/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/lt.po -------------------------------------------------------------------------------- /audiosync/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/nl.po -------------------------------------------------------------------------------- /audiosync/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/ru.po -------------------------------------------------------------------------------- /audiosync/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/sr.po -------------------------------------------------------------------------------- /audiosync/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/sv.po -------------------------------------------------------------------------------- /audiosync/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/audiosync/po/tr.po -------------------------------------------------------------------------------- /audiosync/src/maintainer.info: -------------------------------------------------------------------------------- 1 | sagichnet@gmx.net 2 | AudioSync 3 | -------------------------------------------------------------------------------- /automaticcleanup/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /automaticcleanup/src/maintainer.info: -------------------------------------------------------------------------------- 1 | Software@Strasdas.de 2 | AutomaticCleanup 3 | -------------------------------------------------------------------------------- /automatictimerlistcleanup/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /automaticvolumeadjustment/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /autoresolution/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /autoresolution/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nightmann@newnigma2.to 2 | AutoResolution 3 | -------------------------------------------------------------------------------- /autotimer/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /autotimer/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = AutoTimer 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /autotimer/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/ar.po -------------------------------------------------------------------------------- /autotimer/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/cs.po -------------------------------------------------------------------------------- /autotimer/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/da.po -------------------------------------------------------------------------------- /autotimer/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/de.po -------------------------------------------------------------------------------- /autotimer/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/el.po -------------------------------------------------------------------------------- /autotimer/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/en.po -------------------------------------------------------------------------------- /autotimer/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/es.po -------------------------------------------------------------------------------- /autotimer/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/et.po -------------------------------------------------------------------------------- /autotimer/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/fa.po -------------------------------------------------------------------------------- /autotimer/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/fi.po -------------------------------------------------------------------------------- /autotimer/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/fr.po -------------------------------------------------------------------------------- /autotimer/po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/fy.po -------------------------------------------------------------------------------- /autotimer/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/hu.po -------------------------------------------------------------------------------- /autotimer/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/it.po -------------------------------------------------------------------------------- /autotimer/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/lt.po -------------------------------------------------------------------------------- /autotimer/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/nl.po -------------------------------------------------------------------------------- /autotimer/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/pl.po -------------------------------------------------------------------------------- /autotimer/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/pt.po -------------------------------------------------------------------------------- /autotimer/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/ru.po -------------------------------------------------------------------------------- /autotimer/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/sr.po -------------------------------------------------------------------------------- /autotimer/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/tr.po -------------------------------------------------------------------------------- /autotimer/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/autotimer/po/uk.po -------------------------------------------------------------------------------- /autotimer/src/WebChilds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotimer/src/WebComponents/Sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotimer/src/WebComponents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotimer/src/WebScreens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /autotimer/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | AutoTimer 3 | -------------------------------------------------------------------------------- /babelzapper/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = etc meta src 2 | -------------------------------------------------------------------------------- /babelzapper/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /babelzapper/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nabil1978@web.de 2 | BabelZapper 3 | -------------------------------------------------------------------------------- /birthdayreminder/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /birthdayreminder/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = BirthdayReminder 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /birthdayreminder/src/maintainer.info: -------------------------------------------------------------------------------- 1 | shaderman@dreambox-tools.info 2 | BirthdayReminder 3 | -------------------------------------------------------------------------------- /bitrateviewer/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: BitrateViewer 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /bitrateviewer/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta src 2 | -------------------------------------------------------------------------------- /bitrateviewer/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bitrateviewer/src/maintainer.info: -------------------------------------------------------------------------------- 1 | dr.best@dreambox-tools.info 2 | BitrateViewer 3 | -------------------------------------------------------------------------------- /bmediacenter/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po 2 | -------------------------------------------------------------------------------- /bmediacenter/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = BMediaCenter 2 | include $(top_srcdir)/Rules-po.mak -------------------------------------------------------------------------------- /bmediacenter/src/radio/4U.Classic.Rock.pls: -------------------------------------------------------------------------------- 1 | http://217.114.200.100:80 -------------------------------------------------------------------------------- /bmediacenter/src/radio/BlackBeats.FM.pls: -------------------------------------------------------------------------------- 1 | http://stream.blackbeats.fm:80 -------------------------------------------------------------------------------- /bmediacenter/src/radio/Generation.Disco.Funk.pls: -------------------------------------------------------------------------------- 1 | http://213.251.170.124:80 -------------------------------------------------------------------------------- /bmediacenter/src/radio/GlobalBeats.FM-White.Channel.pls: -------------------------------------------------------------------------------- 1 | http://gbs01.de:7220 -------------------------------------------------------------------------------- /bmediacenter/src/radio/ILove.Top.100.Charts.m3u: -------------------------------------------------------------------------------- 1 | http://138.201.252.232:80/iloveradio9.mp3 -------------------------------------------------------------------------------- /bmediacenter/src/radio/OnkelzRockRadio.pls: -------------------------------------------------------------------------------- 1 | http://webhost110.gtk.hu:9010/ 2 | -------------------------------------------------------------------------------- /bmediacenter/src/radio/Ostseewelle.80er.Hits.m3u: -------------------------------------------------------------------------------- 1 | http://streamosw.ir-media-tec.com/80er/mp3-128/web/ -------------------------------------------------------------------------------- /bmediacenter/src/radio/Ostseewelle.90er.Hits.m3u: -------------------------------------------------------------------------------- 1 | http://streamosw.ir-media-tec.com/90er/mp3-128/web/ -------------------------------------------------------------------------------- /bmediacenter/src/radio/Ostseewelle.Brandneue.Hits.m3u: -------------------------------------------------------------------------------- 1 | http://streamosw.ir-media-tec.com/neu/mp3-128/web/ -------------------------------------------------------------------------------- /bmediacenter/src/radio/Ostseewelle.Rock.Hits.m3u: -------------------------------------------------------------------------------- 1 | http://streamosw.ir-media-tec.com/rock/mp3-128/web/ -------------------------------------------------------------------------------- /bmediacenter/src/radio/PR.Black.Beats.m3u: -------------------------------------------------------------------------------- 1 | http://mp3.planetradio.de/plrchannels/hqblackbeats.mp3 -------------------------------------------------------------------------------- /bmediacenter/src/radio/PR.Nightwax.m3u: -------------------------------------------------------------------------------- 1 | http://mp3.planetradio.de/plrchannels/hqnightwax.mp3 -------------------------------------------------------------------------------- /bmediacenter/src/radio/PR.Oldschool.m3u: -------------------------------------------------------------------------------- 1 | http://mp3.planetradio.de/plrchannels/hqoldschool.mp3 -------------------------------------------------------------------------------- /bmediacenter/src/radio/PR.The.Club.m3u: -------------------------------------------------------------------------------- 1 | http://mp3.planetradio.de/plrchannels/hqtheclub.mp3 -------------------------------------------------------------------------------- /bmediacenter/src/radio/PR.iTunes.m3u: -------------------------------------------------------------------------------- 1 | http://mp3.planetradio.de/plrchannels/hqitunes.mp3 -------------------------------------------------------------------------------- /bmediacenter/src/radio/Radio.Swiss.Classic.pls: -------------------------------------------------------------------------------- 1 | http://stream-3.ssatr.ch:80/rsc/mp3 -------------------------------------------------------------------------------- /bmediacenter/src/radio/RocknRoll-Philosophy.pls: -------------------------------------------------------------------------------- 1 | http://stream.laut.fm:80/rocknroll-philosophy -------------------------------------------------------------------------------- /bmediacenter/src/radio/Technomusic.com.pls: -------------------------------------------------------------------------------- 1 | http://www.technomusic.com:8006 -------------------------------------------------------------------------------- /bmediacenter/src/radio/TrueHipHop.Radio.pls: -------------------------------------------------------------------------------- 1 | http://truehiphop.dyndns.org:9020 -------------------------------------------------------------------------------- /bmediacenter/src/radio/iLove.Groovenight.m3u: -------------------------------------------------------------------------------- 1 | http://streams.bigfm.de/groovenightilr-128-mp3 -------------------------------------------------------------------------------- /bmediacenter/src/radio/iLove.Nitroxdeep.m3u: -------------------------------------------------------------------------------- 1 | http://streams.bigfm.de/nitroxdeepilr-128-mp3 -------------------------------------------------------------------------------- /bmediacenter/src/radio/iLove.UrbanClubBeats.m3u: -------------------------------------------------------------------------------- 1 | http://streams.bigfm.de/urbanilr-128-mp3 -------------------------------------------------------------------------------- /bmediacenter/src/radio/iLover.Nitro.Xedm.m3u: -------------------------------------------------------------------------------- 1 | http://streams.bigfm.de/nitroxedmilr-128-mp3 -------------------------------------------------------------------------------- /bonjour/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/bonjour/Makefile.am -------------------------------------------------------------------------------- /bonjour/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bonjour/src/maintainer.info: -------------------------------------------------------------------------------- 1 | stephan@reichholf.net 2 | bonjour 3 | -------------------------------------------------------------------------------- /cdinfo/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /cdinfo/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/cdinfo/src/LICENSE -------------------------------------------------------------------------------- /cdinfo/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /cdinfo/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/cdinfo/src/plugin.py -------------------------------------------------------------------------------- /channelselectionshorttitle/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /configure.ac: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/configure.ac -------------------------------------------------------------------------------- /curlytx/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/.gitignore -------------------------------------------------------------------------------- /curlytx/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/ChangeLog -------------------------------------------------------------------------------- /curlytx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/LICENSE -------------------------------------------------------------------------------- /curlytx/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /curlytx/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/README.rst -------------------------------------------------------------------------------- /curlytx/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/build.sh -------------------------------------------------------------------------------- /curlytx/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = CurlyTx 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /curlytx/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/po/de.po -------------------------------------------------------------------------------- /curlytx/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/po/en.po -------------------------------------------------------------------------------- /curlytx/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/po/en_GB.po -------------------------------------------------------------------------------- /curlytx/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/po/fr.po -------------------------------------------------------------------------------- /curlytx/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/po/it.po -------------------------------------------------------------------------------- /curlytx/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/po/lt.po -------------------------------------------------------------------------------- /curlytx/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/po/nl.po -------------------------------------------------------------------------------- /curlytx/po/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/curlytx/po/update.sh -------------------------------------------------------------------------------- /curlytx/src/.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | *.pyo 3 | -------------------------------------------------------------------------------- /dreamexplorer/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /dreamexplorer/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = DreamExplorer 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /dreamexplorer/src/maintainer.info: -------------------------------------------------------------------------------- 1 | vali@dreambox-tools.info 2 | DreamExplorer 3 | -------------------------------------------------------------------------------- /dreamirc/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /dreamirc/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/dreamirc/src/LICENSE -------------------------------------------------------------------------------- /dreamirc/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dreamirc/src/protocols/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dreammediathek/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /dreammediathek/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dreammediathek/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nixkoenner@newnigma2.to 2 | dreamMediathek 3 | -------------------------------------------------------------------------------- /dvdbackup/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta po src 2 | -------------------------------------------------------------------------------- /dvdbackup/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = DVDBackup 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /dvdbackup/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/dvdbackup/po/de.po -------------------------------------------------------------------------------- /dvdbackup/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/dvdbackup/po/en.po -------------------------------------------------------------------------------- /dvdbackup/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/dvdbackup/po/fr.po -------------------------------------------------------------------------------- /dvdbackup/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/dvdbackup/po/it.po -------------------------------------------------------------------------------- /dvdbackup/po/lt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/dvdbackup/po/lt -------------------------------------------------------------------------------- /dvdbackup/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/dvdbackup/po/nl.po -------------------------------------------------------------------------------- /dvdbackup/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/dvdbackup/po/tr.po -------------------------------------------------------------------------------- /dvdbackup/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dvdbackup/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nabil1978@web.de 2 | DVDBackup 3 | -------------------------------------------------------------------------------- /dyndns/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: a client for www.dyndns.org 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /dyndns/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /dyndns/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/dyndns/src/LICENSE -------------------------------------------------------------------------------- /dyndns/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dyndns/src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/dyndns/src/icon.png -------------------------------------------------------------------------------- /dyndns/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | dyndns 3 | -------------------------------------------------------------------------------- /dyndns/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/dyndns/src/plugin.py -------------------------------------------------------------------------------- /easyinfo/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: Easy Info 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /easyinfo/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /easyinfo/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easyinfo/src/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/easyinfo/src/bg.png -------------------------------------------------------------------------------- /easymedia/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: EasyMedia 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /easymedia/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = po src meta 2 | -------------------------------------------------------------------------------- /easymedia/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = EasyMedia 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /easymedia/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/easymedia/po/cs.po -------------------------------------------------------------------------------- /easymedia/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/easymedia/po/de.po -------------------------------------------------------------------------------- /easymedia/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/easymedia/po/it.po -------------------------------------------------------------------------------- /easymedia/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/easymedia/po/lt.po -------------------------------------------------------------------------------- /easymedia/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/easymedia/po/nl.po -------------------------------------------------------------------------------- /easymedia/src/icons/shoutcast.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /easymedia/src/maintainer.info: -------------------------------------------------------------------------------- 1 | vali@dreambox-tools.info 2 | EasyMedia 3 | -------------------------------------------------------------------------------- /ecasa/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /ecasa/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ecasa/src/LICENSE -------------------------------------------------------------------------------- /ecasa/src/keymap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ecasa/src/keymap.xml -------------------------------------------------------------------------------- /ecasa/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | ecasa 3 | -------------------------------------------------------------------------------- /ecasa/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ecasa/src/plugin.py -------------------------------------------------------------------------------- /eibox/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /eibox/meta/eibox.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eibox/meta/eibox.jpg -------------------------------------------------------------------------------- /eibox/po/EIBox.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eibox/po/EIBox.pot -------------------------------------------------------------------------------- /eibox/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = EIBox 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /eibox/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eibox/po/de.po -------------------------------------------------------------------------------- /eibox/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eibox/po/en_GB.po -------------------------------------------------------------------------------- /eibox/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eibox/po/it.po -------------------------------------------------------------------------------- /eibox/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eibox/po/nl.po -------------------------------------------------------------------------------- /eibox/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eibox/src/LICENSE -------------------------------------------------------------------------------- /eibox/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eibox/src/README -------------------------------------------------------------------------------- /eibox/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /eibox/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eibox/src/plugin.py -------------------------------------------------------------------------------- /elektro/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /elektro/maintainer.info: -------------------------------------------------------------------------------- 1 | morty@gmx.net 2 | Elektro 3 | -------------------------------------------------------------------------------- /elektro/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = Elektro 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /elektro/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/elektro/po/de.po -------------------------------------------------------------------------------- /elektro/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/elektro/po/it.po -------------------------------------------------------------------------------- /elektro/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/elektro/po/lt.po -------------------------------------------------------------------------------- /elektro/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/elektro/po/nl.po -------------------------------------------------------------------------------- /elektro/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/elektro/po/sr.po -------------------------------------------------------------------------------- /elektro/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/elektro/po/tr.po -------------------------------------------------------------------------------- /elektro/src/ping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/elektro/src/ping.py -------------------------------------------------------------------------------- /emailclient/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /emailclient/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = EmailClient 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /emailclient/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/emailclient/po/de.po -------------------------------------------------------------------------------- /emailclient/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/emailclient/po/en.po -------------------------------------------------------------------------------- /emailclient/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/emailclient/po/es.po -------------------------------------------------------------------------------- /emailclient/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/emailclient/po/fa.po -------------------------------------------------------------------------------- /emailclient/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/emailclient/po/it.po -------------------------------------------------------------------------------- /emailclient/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/emailclient/po/lt.po -------------------------------------------------------------------------------- /emailclient/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/emailclient/po/nl.po -------------------------------------------------------------------------------- /emailclient/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/emailclient/po/sr.po -------------------------------------------------------------------------------- /emailclient/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/emailclient/po/sv.po -------------------------------------------------------------------------------- /emailclient/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/emailclient/po/tr.po -------------------------------------------------------------------------------- /emailclient/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | EmailClient 3 | -------------------------------------------------------------------------------- /emission/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /emission/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/emission/src/LICENSE -------------------------------------------------------------------------------- /emission/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /emission/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | eMission 3 | -------------------------------------------------------------------------------- /eparted/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta po src 2 | -------------------------------------------------------------------------------- /eparted/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = eParted 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /eparted/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eparted/po/de.po -------------------------------------------------------------------------------- /eparted/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eparted/po/fr.po -------------------------------------------------------------------------------- /eparted/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eparted/po/it.po -------------------------------------------------------------------------------- /eparted/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eparted/po/lt.po -------------------------------------------------------------------------------- /eparted/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eparted/po/nl.po -------------------------------------------------------------------------------- /eparted/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eparted/po/tr.po -------------------------------------------------------------------------------- /eparted/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eparted/src/LICENSE -------------------------------------------------------------------------------- /epgbackup/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = po src meta 2 | -------------------------------------------------------------------------------- /epgbackup/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgbackup/po/de.po -------------------------------------------------------------------------------- /epgbackup/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgbackup/po/en.po -------------------------------------------------------------------------------- /epgbackup/src/maintainer.info: -------------------------------------------------------------------------------- 1 | johnny.u@gmx.at 2 | EPGBackup 3 | -------------------------------------------------------------------------------- /epgexport/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: EPGExport Plugin 2 | Depends: enigma2, python-backports-lzma 3 | -------------------------------------------------------------------------------- /epgexport/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = po src 2 | -------------------------------------------------------------------------------- /epgexport/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = EPGExport 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /epgexport/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgexport/po/de.po -------------------------------------------------------------------------------- /epgexport/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgexport/po/it.po -------------------------------------------------------------------------------- /epgexport/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgexport/po/nl.po -------------------------------------------------------------------------------- /epgexport/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgexport/po/pl.po -------------------------------------------------------------------------------- /epgrefresh/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = po src meta 2 | -------------------------------------------------------------------------------- /epgrefresh/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = EPGRefresh 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /epgrefresh/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/ar.po -------------------------------------------------------------------------------- /epgrefresh/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/de.po -------------------------------------------------------------------------------- /epgrefresh/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/en.po -------------------------------------------------------------------------------- /epgrefresh/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/es.po -------------------------------------------------------------------------------- /epgrefresh/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/et.po -------------------------------------------------------------------------------- /epgrefresh/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/fa.po -------------------------------------------------------------------------------- /epgrefresh/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/fi.po -------------------------------------------------------------------------------- /epgrefresh/po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/fy.po -------------------------------------------------------------------------------- /epgrefresh/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/hu.po -------------------------------------------------------------------------------- /epgrefresh/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/it.po -------------------------------------------------------------------------------- /epgrefresh/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/lt.po -------------------------------------------------------------------------------- /epgrefresh/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/nl.po -------------------------------------------------------------------------------- /epgrefresh/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/pl.po -------------------------------------------------------------------------------- /epgrefresh/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/pt.po -------------------------------------------------------------------------------- /epgrefresh/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/sr.po -------------------------------------------------------------------------------- /epgrefresh/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/sv.po -------------------------------------------------------------------------------- /epgrefresh/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgrefresh/po/tr.po -------------------------------------------------------------------------------- /epgrefresh/src/localehelp/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = de it pt fi 2 | -------------------------------------------------------------------------------- /epgsearch/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /epgsearch/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = EPGSearch 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /epgsearch/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/ar.po -------------------------------------------------------------------------------- /epgsearch/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/cs.po -------------------------------------------------------------------------------- /epgsearch/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/da.po -------------------------------------------------------------------------------- /epgsearch/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/de.po -------------------------------------------------------------------------------- /epgsearch/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/en.po -------------------------------------------------------------------------------- /epgsearch/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/es.po -------------------------------------------------------------------------------- /epgsearch/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/et.po -------------------------------------------------------------------------------- /epgsearch/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/fa.po -------------------------------------------------------------------------------- /epgsearch/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/fi.po -------------------------------------------------------------------------------- /epgsearch/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/fr.po -------------------------------------------------------------------------------- /epgsearch/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/hu.po -------------------------------------------------------------------------------- /epgsearch/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/it.po -------------------------------------------------------------------------------- /epgsearch/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/lt.po -------------------------------------------------------------------------------- /epgsearch/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/nl.po -------------------------------------------------------------------------------- /epgsearch/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/pl.po -------------------------------------------------------------------------------- /epgsearch/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/pt.po -------------------------------------------------------------------------------- /epgsearch/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/ru.po -------------------------------------------------------------------------------- /epgsearch/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/sr.po -------------------------------------------------------------------------------- /epgsearch/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/sv.po -------------------------------------------------------------------------------- /epgsearch/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/tr.po -------------------------------------------------------------------------------- /epgsearch/po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/epgsearch/po/uk.po -------------------------------------------------------------------------------- /epgsearch/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | EPGSearch 3 | -------------------------------------------------------------------------------- /epgsearchpli/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /epgsearchpli/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = EPGSearch 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /epgsearchpli/src/maintainer.info: -------------------------------------------------------------------------------- 1 | OpenPLi Team, dima73, Moritz Venn, Felix Domke 2 | EPGSearch 3 | -------------------------------------------------------------------------------- /esame/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | 3 | -------------------------------------------------------------------------------- /esame/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /esame/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/esame/src/plugin.py -------------------------------------------------------------------------------- /eurotictv/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /eurotictv/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = eUroticTV 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /eurotictv/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eurotictv/po/de.po -------------------------------------------------------------------------------- /eurotictv/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eurotictv/po/en.po -------------------------------------------------------------------------------- /eurotictv/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eurotictv/po/fr.po -------------------------------------------------------------------------------- /eurotictv/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eurotictv/po/it.po -------------------------------------------------------------------------------- /eurotictv/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eurotictv/po/nl.po -------------------------------------------------------------------------------- /eventlist/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /eventlist/src/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/eventlist/src/README -------------------------------------------------------------------------------- /eventposition/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /fancontrol2/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /fancontrol2/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = FanControl2 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /fancontrol2/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fancontrol2/po/cs.po -------------------------------------------------------------------------------- /fancontrol2/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fancontrol2/po/de.po -------------------------------------------------------------------------------- /fancontrol2/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fancontrol2/po/es.po -------------------------------------------------------------------------------- /fancontrol2/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fancontrol2/po/fa.po -------------------------------------------------------------------------------- /fancontrol2/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fancontrol2/po/fr.po -------------------------------------------------------------------------------- /fancontrol2/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fancontrol2/po/it.po -------------------------------------------------------------------------------- /fancontrol2/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fancontrol2/po/lt.po -------------------------------------------------------------------------------- /fancontrol2/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fancontrol2/po/nl.po -------------------------------------------------------------------------------- /fancontrol2/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fancontrol2/po/pl.po -------------------------------------------------------------------------------- /fancontrol2/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fancontrol2/po/ru.po -------------------------------------------------------------------------------- /fancontrol2/src/maintainer.info: -------------------------------------------------------------------------------- 1 | joergm6@online.de 2 | FanControl2 3 | -------------------------------------------------------------------------------- /filebrowser/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: manage local Files 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /filebrowser/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /filebrowser/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = Filebrowser 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /filebrowser/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/filebrowser/po/de.po -------------------------------------------------------------------------------- /filebrowser/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/filebrowser/po/en.po -------------------------------------------------------------------------------- /filebrowser/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/filebrowser/po/nl.po -------------------------------------------------------------------------------- /filebrowser/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | Filebrowser 3 | -------------------------------------------------------------------------------- /flashexpander/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po 2 | -------------------------------------------------------------------------------- /flashexpander/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = Flashexpander 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /flashexpander/src/maintainer.info: -------------------------------------------------------------------------------- 1 | reichi@opendreambox.org 2 | Flashexpander 3 | -------------------------------------------------------------------------------- /fritzcall/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po 2 | -------------------------------------------------------------------------------- /fritzcall/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = FritzCall 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /fritzcall/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fritzcall/po/de.po -------------------------------------------------------------------------------- /fritzcall/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fritzcall/po/en.po -------------------------------------------------------------------------------- /fritzcall/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fritzcall/po/es.po -------------------------------------------------------------------------------- /fritzcall/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fritzcall/po/it.po -------------------------------------------------------------------------------- /fritzcall/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fritzcall/po/nl.po -------------------------------------------------------------------------------- /fritzcall/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fritzcall/po/sr.po -------------------------------------------------------------------------------- /fritzcall/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/fritzcall/po/tr.po -------------------------------------------------------------------------------- /fritzcall/src/maintainer.info: -------------------------------------------------------------------------------- 1 | drmichael@freenet.de 2 | FritzCall 3 | -------------------------------------------------------------------------------- /fstabeditor/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /fstabeditor/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fstabeditor/src/maintainer.info: -------------------------------------------------------------------------------- 1 | dre@dreambox-tools.info 2 | fstabeditor 3 | -------------------------------------------------------------------------------- /ftpbrowser/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /ftpbrowser/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = FTPBrowser 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /ftpbrowser/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ftpbrowser/po/cs.po -------------------------------------------------------------------------------- /ftpbrowser/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ftpbrowser/po/de.po -------------------------------------------------------------------------------- /ftpbrowser/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ftpbrowser/po/en.po -------------------------------------------------------------------------------- /ftpbrowser/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ftpbrowser/po/it.po -------------------------------------------------------------------------------- /ftpbrowser/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ftpbrowser/po/lt.po -------------------------------------------------------------------------------- /ftpbrowser/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ftpbrowser/po/nl.po -------------------------------------------------------------------------------- /ftpbrowser/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ftpbrowser/po/sr.po -------------------------------------------------------------------------------- /ftpbrowser/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ftpbrowser/po/tr.po -------------------------------------------------------------------------------- /ftpbrowser/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | FTPBrowser 3 | -------------------------------------------------------------------------------- /genmetaindex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/genmetaindex.py -------------------------------------------------------------------------------- /genuinedreambox/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /genuinedreambox/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /genuinedreambox/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nixkoenner@newnigma2.to 2 | genuinedreambox 3 | -------------------------------------------------------------------------------- /googlemaps/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /googlemaps/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /googlemaps/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | GoogleMaps 3 | -------------------------------------------------------------------------------- /growlee/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /growlee/src/GNTP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/growlee/src/GNTP.py -------------------------------------------------------------------------------- /growlee/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/growlee/src/LICENSE -------------------------------------------------------------------------------- /growlee/src/Prowl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/growlee/src/Prowl.py -------------------------------------------------------------------------------- /growlee/src/SNP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/growlee/src/SNP.py -------------------------------------------------------------------------------- /growlee/src/__init__.py: -------------------------------------------------------------------------------- 1 | NOTIFICATIONID = 'GrowleeReceivedNotification' 2 | -------------------------------------------------------------------------------- /growlee/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | Growlee 3 | -------------------------------------------------------------------------------- /httpproxy/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /httpproxy/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /httpproxy/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | HTTPProxy 3 | -------------------------------------------------------------------------------- /imdb/CONTROL/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/CONTROL/control -------------------------------------------------------------------------------- /imdb/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /imdb/po/IMDb.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/IMDb.pot -------------------------------------------------------------------------------- /imdb/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = IMDb 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /imdb/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/ar.po -------------------------------------------------------------------------------- /imdb/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/cs.po -------------------------------------------------------------------------------- /imdb/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/da.po -------------------------------------------------------------------------------- /imdb/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/de.po -------------------------------------------------------------------------------- /imdb/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/el.po -------------------------------------------------------------------------------- /imdb/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/en.po -------------------------------------------------------------------------------- /imdb/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/en_GB.po -------------------------------------------------------------------------------- /imdb/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/es.po -------------------------------------------------------------------------------- /imdb/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/et.po -------------------------------------------------------------------------------- /imdb/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/fa.po -------------------------------------------------------------------------------- /imdb/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/fi.po -------------------------------------------------------------------------------- /imdb/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/fr.po -------------------------------------------------------------------------------- /imdb/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/hu.po -------------------------------------------------------------------------------- /imdb/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/it.po -------------------------------------------------------------------------------- /imdb/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/lt.po -------------------------------------------------------------------------------- /imdb/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/nl.po -------------------------------------------------------------------------------- /imdb/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/pl.po -------------------------------------------------------------------------------- /imdb/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/pt.po -------------------------------------------------------------------------------- /imdb/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/ru.po -------------------------------------------------------------------------------- /imdb/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/sr.po -------------------------------------------------------------------------------- /imdb/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/sv.po -------------------------------------------------------------------------------- /imdb/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/tr.po -------------------------------------------------------------------------------- /imdb/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/po/zh_CN.po -------------------------------------------------------------------------------- /imdb/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/src/Makefile.am -------------------------------------------------------------------------------- /imdb/src/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/src/__init__.py -------------------------------------------------------------------------------- /imdb/src/imdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/src/imdb.png -------------------------------------------------------------------------------- /imdb/src/keymap.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/src/keymap.xml -------------------------------------------------------------------------------- /imdb/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/src/plugin.py -------------------------------------------------------------------------------- /imdb/src/setup.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/imdb/src/setup.xml -------------------------------------------------------------------------------- /infobartunerstate/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /infobartunerstate/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = InfoBarTunerState 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /infobartunerstate/src/maintainer.info: -------------------------------------------------------------------------------- 1 | glaserfrank(at)gmail.com 2 | InfoBarTunerState 3 | -------------------------------------------------------------------------------- /kiddytimer/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/kiddytimer/.project -------------------------------------------------------------------------------- /kiddytimer/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = img po src meta 2 | -------------------------------------------------------------------------------- /kiddytimer/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = KiddyTimer 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /kiddytimer/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/kiddytimer/po/de.po -------------------------------------------------------------------------------- /kiddytimer/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/kiddytimer/po/en.po -------------------------------------------------------------------------------- /kiddytimer/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/kiddytimer/po/it.po -------------------------------------------------------------------------------- /kiddytimer/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/kiddytimer/po/lt.po -------------------------------------------------------------------------------- /kiddytimer/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/kiddytimer/po/nl.po -------------------------------------------------------------------------------- /kiddytimer/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/kiddytimer/po/sr.po -------------------------------------------------------------------------------- /kiddytimer/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/kiddytimer/po/tr.po -------------------------------------------------------------------------------- /kiddytimer/src/maintainer.info: -------------------------------------------------------------------------------- 1 | sagichnet@gmx.net 2 | KiddyTimer 3 | -------------------------------------------------------------------------------- /lastfm/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /lastfm/po/LastFM.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/lastfm/po/LastFM.pot -------------------------------------------------------------------------------- /lastfm/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = LastFM 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /lastfm/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/lastfm/po/de.po -------------------------------------------------------------------------------- /lastfm/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/lastfm/po/en.po -------------------------------------------------------------------------------- /lastfm/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/lastfm/po/en_GB.po -------------------------------------------------------------------------------- /lastfm/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/lastfm/po/lt.po -------------------------------------------------------------------------------- /lastfm/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/lastfm/po/nl.po -------------------------------------------------------------------------------- /lastfm/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/lastfm/src/LICENSE -------------------------------------------------------------------------------- /lastfm/src/LastFM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/lastfm/src/LastFM.py -------------------------------------------------------------------------------- /lastfm/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | LastFM 3 | -------------------------------------------------------------------------------- /lastfm/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/lastfm/src/plugin.py -------------------------------------------------------------------------------- /letterbox/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: Zoom into letterboxed/anamorph movies 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /letterbox/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | 3 | -------------------------------------------------------------------------------- /letterbox/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /letterbox/src/maintainer.info: -------------------------------------------------------------------------------- 1 | georg@op-co.de 2 | letterbox 3 | -------------------------------------------------------------------------------- /logomanager/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /logomanager/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /logomanager/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | LogoManager 3 | -------------------------------------------------------------------------------- /m4/ax_pthread.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/m4/ax_pthread.m4 -------------------------------------------------------------------------------- /m4/tuxbox.m4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/m4/tuxbox.m4 -------------------------------------------------------------------------------- /mediadownloader/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /mediadownloader/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | MediaDownloader 3 | -------------------------------------------------------------------------------- /mediathekviewweb/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /mediathekviewweb/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /menusort/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /menusort/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/menusort/src/LICENSE -------------------------------------------------------------------------------- /menusort/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /menusort/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | MenuSort 3 | -------------------------------------------------------------------------------- /merlinepg/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: Merlin Programm Guide 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /merlinepg/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /merlinepg/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /merlinepg/src/maintainer.info: -------------------------------------------------------------------------------- 1 | vali@dreambox-tools.info 2 | MerlinProgrammGuide 3 | -------------------------------------------------------------------------------- /merlinepgcenter/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src skins images po meta 2 | -------------------------------------------------------------------------------- /merlinepgcenter/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = MerlinEPGCenter 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /merlinepgcenter/src/maintainer.info: -------------------------------------------------------------------------------- 1 | shaderman@dreambox-tools.info 2 | MerlinEPGCenter 3 | -------------------------------------------------------------------------------- /merlinmusicplayer/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /meteoitalia/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: Shows italian weather forecast 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /meteoitalia/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /meteoitalia/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /meteoitalia/src/maintainer.info: -------------------------------------------------------------------------------- 1 | spaeleus@croci.org 2 | MeteoItalia -------------------------------------------------------------------------------- /mosaic/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /mosaic/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = Mosaic 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /mosaic/po/Mosaic.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/Mosaic.pot -------------------------------------------------------------------------------- /mosaic/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/de.po -------------------------------------------------------------------------------- /mosaic/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/en_GB.po -------------------------------------------------------------------------------- /mosaic/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/es.po -------------------------------------------------------------------------------- /mosaic/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/fa.po -------------------------------------------------------------------------------- /mosaic/po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/fy.po -------------------------------------------------------------------------------- /mosaic/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/hu.po -------------------------------------------------------------------------------- /mosaic/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/it.po -------------------------------------------------------------------------------- /mosaic/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/lt.po -------------------------------------------------------------------------------- /mosaic/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/nl.po -------------------------------------------------------------------------------- /mosaic/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/sr.po -------------------------------------------------------------------------------- /mosaic/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/sv.po -------------------------------------------------------------------------------- /mosaic/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/po/tr.po -------------------------------------------------------------------------------- /mosaic/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /mosaic/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nabil1978@web.de 2 | Mosaic 3 | -------------------------------------------------------------------------------- /mosaic/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mosaic/src/plugin.py -------------------------------------------------------------------------------- /moviecut/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/Makefile.am -------------------------------------------------------------------------------- /moviecut/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/ar.po -------------------------------------------------------------------------------- /moviecut/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/de.po -------------------------------------------------------------------------------- /moviecut/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/en.po -------------------------------------------------------------------------------- /moviecut/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/en_GB.po -------------------------------------------------------------------------------- /moviecut/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/et.po -------------------------------------------------------------------------------- /moviecut/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/fa.po -------------------------------------------------------------------------------- /moviecut/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/fi.po -------------------------------------------------------------------------------- /moviecut/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/it.po -------------------------------------------------------------------------------- /moviecut/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/lt.po -------------------------------------------------------------------------------- /moviecut/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/nl.po -------------------------------------------------------------------------------- /moviecut/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/pl.po -------------------------------------------------------------------------------- /moviecut/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/moviecut/po/sv.po -------------------------------------------------------------------------------- /moviecut/src_cc/.gitignore: -------------------------------------------------------------------------------- 1 | mcut 2 | -------------------------------------------------------------------------------- /moviecut/src_py/maintainer.info: -------------------------------------------------------------------------------- 1 | aho@sics.se 2 | MovieCut 3 | -------------------------------------------------------------------------------- /movieepg/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /movieepg/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/movieepg/src/LICENSE -------------------------------------------------------------------------------- /movieepg/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /movieepg/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | MovieEPG 3 | -------------------------------------------------------------------------------- /movielistpreview/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta po src 2 | -------------------------------------------------------------------------------- /movielistpreview/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /movielistpreview/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nabil1978@web.de 2 | Movielist Preview 3 | -------------------------------------------------------------------------------- /movieretitle/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | 3 | EXTRA_DIST = Readme-MovieRetitle-1.2.txt 4 | -------------------------------------------------------------------------------- /movieretitle/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = MovieRetitle 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /movieretitle/src/maintainer.info: -------------------------------------------------------------------------------- 1 | aho@sics.se 2 | MovieRetitle 3 | -------------------------------------------------------------------------------- /moviesearch/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /moviesearch/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /moviesearch/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | MovieSearch 3 | -------------------------------------------------------------------------------- /movieselectionquickbutton/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /movietagger/CONTROL/conffiles: -------------------------------------------------------------------------------- 1 | /etc/enigma2/movietags 2 | -------------------------------------------------------------------------------- /movietagger/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src etc meta po 2 | -------------------------------------------------------------------------------- /movietagger/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = MovieTagger 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /movietagger/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/movietagger/po/de.po -------------------------------------------------------------------------------- /movietagger/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/movietagger/po/fa.po -------------------------------------------------------------------------------- /movietagger/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/movietagger/po/it.po -------------------------------------------------------------------------------- /movietagger/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/movietagger/po/lt.po -------------------------------------------------------------------------------- /movietagger/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/movietagger/po/nl.po -------------------------------------------------------------------------------- /movietagger/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | MovieTagger 3 | -------------------------------------------------------------------------------- /mphelp/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: reusable help component 2 | Depends: enigma2, python-xml 3 | -------------------------------------------------------------------------------- /mphelp/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /mphelp/po/MPHelp.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/po/MPHelp.pot -------------------------------------------------------------------------------- /mphelp/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/po/da.po -------------------------------------------------------------------------------- /mphelp/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/po/de.po -------------------------------------------------------------------------------- /mphelp/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/po/en.po -------------------------------------------------------------------------------- /mphelp/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/po/en_GB.po -------------------------------------------------------------------------------- /mphelp/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/po/fi.po -------------------------------------------------------------------------------- /mphelp/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/po/it.po -------------------------------------------------------------------------------- /mphelp/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/po/lt.po -------------------------------------------------------------------------------- /mphelp/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/po/nl.po -------------------------------------------------------------------------------- /mphelp/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/po/ru.po -------------------------------------------------------------------------------- /mphelp/po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/po/zh_CN.po -------------------------------------------------------------------------------- /mphelp/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/src/LICENSE -------------------------------------------------------------------------------- /mphelp/src/MPHelp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/src/MPHelp.py -------------------------------------------------------------------------------- /mphelp/src/faq.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/src/faq.xml -------------------------------------------------------------------------------- /mphelp/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | MPHelp 3 | -------------------------------------------------------------------------------- /mphelp/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mphelp/src/plugin.py -------------------------------------------------------------------------------- /multirc/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /multirc/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /multirc/src/maintainer.info: -------------------------------------------------------------------------------- 1 | georg@op-co.de 2 | multirc 3 | -------------------------------------------------------------------------------- /mytube/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /mytube/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = MyTube 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /mytube/po/MyTube.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/MyTube.pot -------------------------------------------------------------------------------- /mytube/po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/ar.po -------------------------------------------------------------------------------- /mytube/po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/ca.po -------------------------------------------------------------------------------- /mytube/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/cs.po -------------------------------------------------------------------------------- /mytube/po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/da.po -------------------------------------------------------------------------------- /mytube/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/de.po -------------------------------------------------------------------------------- /mytube/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/el.po -------------------------------------------------------------------------------- /mytube/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/en.po -------------------------------------------------------------------------------- /mytube/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/es.po -------------------------------------------------------------------------------- /mytube/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/fi.po -------------------------------------------------------------------------------- /mytube/po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/fr.po -------------------------------------------------------------------------------- /mytube/po/fy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/fy.po -------------------------------------------------------------------------------- /mytube/po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/hr.po -------------------------------------------------------------------------------- /mytube/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/hu.po -------------------------------------------------------------------------------- /mytube/po/is.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/is.po -------------------------------------------------------------------------------- /mytube/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/it.po -------------------------------------------------------------------------------- /mytube/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/lt.po -------------------------------------------------------------------------------- /mytube/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/nl.po -------------------------------------------------------------------------------- /mytube/po/no.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/no.po -------------------------------------------------------------------------------- /mytube/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/pl.po -------------------------------------------------------------------------------- /mytube/po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/pt.po -------------------------------------------------------------------------------- /mytube/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/ru.po -------------------------------------------------------------------------------- /mytube/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/sr.po -------------------------------------------------------------------------------- /mytube/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/sv.po -------------------------------------------------------------------------------- /mytube/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/po/tr.po -------------------------------------------------------------------------------- /mytube/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/src/LICENSE -------------------------------------------------------------------------------- /mytube/src/maintainer.info: -------------------------------------------------------------------------------- 1 | acid-burn@opendreambox.org 2 | MyTube 3 | -------------------------------------------------------------------------------- /mytube/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/mytube/src/plugin.py -------------------------------------------------------------------------------- /namezap/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /namezap/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = NameZap 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /namezap/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/namezap/po/de.po -------------------------------------------------------------------------------- /namezap/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/namezap/po/fa.po -------------------------------------------------------------------------------- /namezap/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/namezap/po/it.po -------------------------------------------------------------------------------- /namezap/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/namezap/po/nl.po -------------------------------------------------------------------------------- /namezap/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/namezap/po/tr.po -------------------------------------------------------------------------------- /namezap/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/namezap/src/LICENSE -------------------------------------------------------------------------------- /namezap/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | NameZAP 3 | -------------------------------------------------------------------------------- /ncidclient/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /ncidclient/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = NcidClient 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /ncidclient/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ncidclient/po/de.po -------------------------------------------------------------------------------- /ncidclient/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ncidclient/po/en.po -------------------------------------------------------------------------------- /ncidclient/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ncidclient/po/it.po -------------------------------------------------------------------------------- /ncidclient/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ncidclient/po/lt.po -------------------------------------------------------------------------------- /ncidclient/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ncidclient/po/nl.po -------------------------------------------------------------------------------- /ncidclient/src/maintainer.info: -------------------------------------------------------------------------------- 1 | stephan@reichholf.net 2 | NcidClient 3 | -------------------------------------------------------------------------------- /netcaster/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta -------------------------------------------------------------------------------- /netcaster/src/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = etc bin -------------------------------------------------------------------------------- /netcaster/src/bin/NETcastInterface.py: -------------------------------------------------------------------------------- 1 | class SHOUTcastInterface: 2 | def __init__(self): 3 | pass 4 | -------------------------------------------------------------------------------- /netcaster/src/bin/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netcaster/src/bin/interface/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netcaster/src/bin/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | MovieTagger 3 | -------------------------------------------------------------------------------- /networkbrowser/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /networkbrowser/src/maintainer.info: -------------------------------------------------------------------------------- 1 | acid-burn@opendreambox.org 2 | NetworkBrowser 3 | -------------------------------------------------------------------------------- /networkbrowserpli/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /networkbrowserpli/src/maintainer.info: -------------------------------------------------------------------------------- 1 | acid-burn@opendreambox.org 2 | NetworkBrowser 3 | -------------------------------------------------------------------------------- /netzkino/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: Zugriff auf Netzkino 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /netzkino/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta src 2 | -------------------------------------------------------------------------------- /netzkino/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /netzkino/src/maintainer.info: -------------------------------------------------------------------------------- 1 | CommanderData 2 | Netzkino 3 | -------------------------------------------------------------------------------- /ofdb/CONTROL/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/CONTROL/control -------------------------------------------------------------------------------- /ofdb/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /ofdb/meta/ofdb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/meta/ofdb.jpg -------------------------------------------------------------------------------- /ofdb/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = OFDb 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /ofdb/po/OFDb.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/po/OFDb.pot -------------------------------------------------------------------------------- /ofdb/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/po/de.po -------------------------------------------------------------------------------- /ofdb/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/po/en.po -------------------------------------------------------------------------------- /ofdb/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/po/en_GB.po -------------------------------------------------------------------------------- /ofdb/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/po/it.po -------------------------------------------------------------------------------- /ofdb/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/po/lt.po -------------------------------------------------------------------------------- /ofdb/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/po/nl.po -------------------------------------------------------------------------------- /ofdb/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/po/sr.po -------------------------------------------------------------------------------- /ofdb/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/po/tr.po -------------------------------------------------------------------------------- /ofdb/src/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/src/Makefile.am -------------------------------------------------------------------------------- /ofdb/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ofdb/src/ofdb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/src/ofdb.png -------------------------------------------------------------------------------- /ofdb/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/ofdb/src/plugin.py -------------------------------------------------------------------------------- /orfat/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /orfat/meta/orfat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/meta/orfat.jpg -------------------------------------------------------------------------------- /orfat/src/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/0.png -------------------------------------------------------------------------------- /orfat/src/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/1.png -------------------------------------------------------------------------------- /orfat/src/10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/10.png -------------------------------------------------------------------------------- /orfat/src/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/2.png -------------------------------------------------------------------------------- /orfat/src/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/3.png -------------------------------------------------------------------------------- /orfat/src/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/4.png -------------------------------------------------------------------------------- /orfat/src/5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/5.png -------------------------------------------------------------------------------- /orfat/src/6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/6.png -------------------------------------------------------------------------------- /orfat/src/7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/7.png -------------------------------------------------------------------------------- /orfat/src/8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/8.png -------------------------------------------------------------------------------- /orfat/src/9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/9.png -------------------------------------------------------------------------------- /orfat/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orfat/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nabil1978@web.de 2 | ORFat 3 | -------------------------------------------------------------------------------- /orfat/src/orf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/orf.png -------------------------------------------------------------------------------- /orfat/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/orfat/src/plugin.py -------------------------------------------------------------------------------- /orfteletext/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: ORFteletext 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /orfteletext/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /orfteletext/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /orfteletext/src/maintainer.info: -------------------------------------------------------------------------------- 1 | vali@dreambox-tools.info 2 | ORFteletext 3 | -------------------------------------------------------------------------------- /partnerbox/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /partnerbox/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox/po/cs.po -------------------------------------------------------------------------------- /partnerbox/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox/po/de.po -------------------------------------------------------------------------------- /partnerbox/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox/po/en.po -------------------------------------------------------------------------------- /partnerbox/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox/po/hu.po -------------------------------------------------------------------------------- /partnerbox/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox/po/it.po -------------------------------------------------------------------------------- /partnerbox/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox/po/lt.po -------------------------------------------------------------------------------- /partnerbox/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox/po/nl.po -------------------------------------------------------------------------------- /partnerbox/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox/po/ru.po -------------------------------------------------------------------------------- /partnerbox/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox/po/sr.po -------------------------------------------------------------------------------- /partnerbox/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox/po/sv.po -------------------------------------------------------------------------------- /partnerbox/src/maintainer.info: -------------------------------------------------------------------------------- 1 | OpenPLi team 2 | Partnerbox 3 | -------------------------------------------------------------------------------- /partnerbox2/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po 2 | -------------------------------------------------------------------------------- /partnerbox2/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = Partnerbox 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /partnerbox2/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox2/po/cs.po -------------------------------------------------------------------------------- /partnerbox2/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox2/po/de.po -------------------------------------------------------------------------------- /partnerbox2/po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox2/po/hu.po -------------------------------------------------------------------------------- /partnerbox2/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox2/po/it.po -------------------------------------------------------------------------------- /partnerbox2/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox2/po/lt.po -------------------------------------------------------------------------------- /partnerbox2/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox2/po/nl.po -------------------------------------------------------------------------------- /partnerbox2/po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox2/po/ru.po -------------------------------------------------------------------------------- /partnerbox2/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox2/po/sr.po -------------------------------------------------------------------------------- /partnerbox2/po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/partnerbox2/po/sv.po -------------------------------------------------------------------------------- /permanentclock/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | 3 | -------------------------------------------------------------------------------- /permanentclock/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = PermanentClock 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /permanentclock/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /permanentclock/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nabil1978@web.de 2 | PermanentClock 3 | -------------------------------------------------------------------------------- /permanenttimeshift/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta images 2 | -------------------------------------------------------------------------------- /permanenttimeshift/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /permanenttimeshift/src/createapscfiles/.gitignore: -------------------------------------------------------------------------------- 1 | createapscfiles 2 | -------------------------------------------------------------------------------- /pipservicerelation/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta src 2 | -------------------------------------------------------------------------------- /pipservicerelation/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipservicerelation/src/maintainer.info: -------------------------------------------------------------------------------- 1 | dr.best@dreambox-tools.info 2 | PipServiceRelation 3 | -------------------------------------------------------------------------------- /pipzap/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /pipzap/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pipzap/src/LICENSE -------------------------------------------------------------------------------- /pipzap/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pipzap/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | pipzap 3 | -------------------------------------------------------------------------------- /pipzap/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pipzap/src/plugin.py -------------------------------------------------------------------------------- /pluginhider/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /pluginhider/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = PluginHider 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /pluginhider/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pluginhider/po/de.po -------------------------------------------------------------------------------- /pluginhider/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pluginhider/po/fa.po -------------------------------------------------------------------------------- /pluginhider/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pluginhider/po/it.po -------------------------------------------------------------------------------- /pluginhider/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pluginhider/po/lt.po -------------------------------------------------------------------------------- /pluginhider/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pluginhider/po/nl.po -------------------------------------------------------------------------------- /pluginhider/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | PluginHider 3 | -------------------------------------------------------------------------------- /pluginsort/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /pluginsort/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = PluginSort 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /pluginsort/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pluginsort/po/de.po -------------------------------------------------------------------------------- /pluginsort/po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pluginsort/po/el.po -------------------------------------------------------------------------------- /pluginsort/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pluginsort/po/fa.po -------------------------------------------------------------------------------- /pluginsort/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pluginsort/po/it.po -------------------------------------------------------------------------------- /pluginsort/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pluginsort/po/lt.po -------------------------------------------------------------------------------- /pluginsort/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pluginsort/po/nl.po -------------------------------------------------------------------------------- /pluginsort/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | PluginSort 3 | -------------------------------------------------------------------------------- /podcast/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: Stream podcasts 2 | Depends: enigma2, python-twisted-web 3 | -------------------------------------------------------------------------------- /podcast/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = etc po src meta 2 | -------------------------------------------------------------------------------- /podcast/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = Podcast 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /podcast/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/podcast/po/de.po -------------------------------------------------------------------------------- /podcast/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/podcast/po/en.po -------------------------------------------------------------------------------- /podcast/po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/podcast/po/en_GB.po -------------------------------------------------------------------------------- /podcast/po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/podcast/po/et.po -------------------------------------------------------------------------------- /podcast/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/podcast/po/it.po -------------------------------------------------------------------------------- /podcast/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/podcast/po/lt.po -------------------------------------------------------------------------------- /podcast/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/podcast/po/nl.po -------------------------------------------------------------------------------- /podcast/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/podcast/po/sr.po -------------------------------------------------------------------------------- /podcast/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/podcast/po/tr.po -------------------------------------------------------------------------------- /podcast/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /podcast/src/maintainer.info: -------------------------------------------------------------------------------- 1 | bengt.giger@id.ethz.ch 2 | Podcast 3 | -------------------------------------------------------------------------------- /porncenter/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta po src 2 | -------------------------------------------------------------------------------- /porncenter/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = PornCenter 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /porncenter/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/porncenter/po/de.po -------------------------------------------------------------------------------- /porncenter/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/porncenter/po/en.po -------------------------------------------------------------------------------- /porncenter/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/porncenter/po/it.po -------------------------------------------------------------------------------- /porncenter/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/porncenter/po/lt.po -------------------------------------------------------------------------------- /porncenter/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/porncenter/po/nl.po -------------------------------------------------------------------------------- /porncenter/src/Additions/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /porncenter/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /porncenter/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nabil1978@web.de 2 | Porn Center 3 | -------------------------------------------------------------------------------- /pushservice/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /pushservice/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = PushService 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /pushservice/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pushservice/po/de.po -------------------------------------------------------------------------------- /pushservice/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pushservice/po/en.po -------------------------------------------------------------------------------- /pushservice/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pushservice/po/it.po -------------------------------------------------------------------------------- /pushservice/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pushservice/po/nl.po -------------------------------------------------------------------------------- /pushservice/src/Controller/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pushservice/src/Services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pushservice/src/Services/mail/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pushservice/src/maintainer.info: -------------------------------------------------------------------------------- 1 | glaserfrank(at)gmail.com 2 | PushService 3 | -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/pyproject.toml -------------------------------------------------------------------------------- /quickbutton/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /quickbutton/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = Quickbutton 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /quickbutton/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/quickbutton/po/cs.po -------------------------------------------------------------------------------- /quickbutton/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/quickbutton/po/de.po -------------------------------------------------------------------------------- /quickbutton/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/quickbutton/po/fa.po -------------------------------------------------------------------------------- /quickbutton/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/quickbutton/po/it.po -------------------------------------------------------------------------------- /quickbutton/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/quickbutton/po/lt.po -------------------------------------------------------------------------------- /quickbutton/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/quickbutton/po/nl.po -------------------------------------------------------------------------------- /quickbutton/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/quickbutton/po/sr.po -------------------------------------------------------------------------------- /quickbutton/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/quickbutton/po/tr.po -------------------------------------------------------------------------------- /quickbutton/src/maintainer.info: -------------------------------------------------------------------------------- 1 | dr.best@dreambox-tools.info 2 | Quickbutton 3 | -------------------------------------------------------------------------------- /reconstructapsc/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src_py meta 2 | 3 | EXTRA_DIST = Readme-ReconstructApSc.txt 4 | -------------------------------------------------------------------------------- /reconstructapsc/src_py/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /reconstructapsc/src_py/maintainer.info: -------------------------------------------------------------------------------- 1 | aho@sics.se 2 | ReconstructApSc 3 | -------------------------------------------------------------------------------- /reftopiconname/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /remotetimer/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /remotetimer/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remotetimer/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nixkoenner@newnigma2.to 2 | remoteTimer 3 | -------------------------------------------------------------------------------- /remotetimer2/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /remotetimer2/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /remotetimer2/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nixkoenner@newnigma2.to 2 | remoteTimer 3 | -------------------------------------------------------------------------------- /rsdownloader/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /rsdownloader/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = RSDownloader 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /rsdownloader/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rsdownloader/src/container/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /rsdownloader/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nabil1978@web.de 2 | RSDownloader 3 | -------------------------------------------------------------------------------- /satloader/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /satloader/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/satloader/po/de.po -------------------------------------------------------------------------------- /satloader/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/satloader/po/it.po -------------------------------------------------------------------------------- /satloader/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/satloader/po/lt.po -------------------------------------------------------------------------------- /satloader/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/satloader/po/tr.po -------------------------------------------------------------------------------- /satloader/src/maintainer.info: -------------------------------------------------------------------------------- 1 | ismail.demir@gmx.at 2 | Satloader 3 | -------------------------------------------------------------------------------- /schiffe/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | 3 | -------------------------------------------------------------------------------- /schiffe/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seekbar/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta po src 2 | -------------------------------------------------------------------------------- /seekbar/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = Seekbar 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /seekbar/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/seekbar/po/de.po -------------------------------------------------------------------------------- /seekbar/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/seekbar/po/it.po -------------------------------------------------------------------------------- /seekbar/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/seekbar/po/lt.po -------------------------------------------------------------------------------- /seekbar/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/seekbar/po/nl.po -------------------------------------------------------------------------------- /seekbar/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seekbar/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nabil1978@web.de 2 | Seekbar 3 | -------------------------------------------------------------------------------- /serienfilm/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta po src 2 | -------------------------------------------------------------------------------- /serienfilm/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = SerienFilm 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /serienfilm/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/serienfilm/po/de.po -------------------------------------------------------------------------------- /serienfilm/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/serienfilm/po/it.po -------------------------------------------------------------------------------- /serienfilm/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/serienfilm/po/lt.po -------------------------------------------------------------------------------- /serienfilm/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/serienfilm/po/nl.po -------------------------------------------------------------------------------- /seriesplugin/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po etc meta -------------------------------------------------------------------------------- /seriesplugin/src/Identifiers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /seriesplugin/src/maintainer.info: -------------------------------------------------------------------------------- 1 | glaserfrank(at)gmail.com 2 | SeriesPlugin 3 | -------------------------------------------------------------------------------- /setpasswd/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /setpasswd/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/setpasswd/po/de.po -------------------------------------------------------------------------------- /setpasswd/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/setpasswd/po/it.po -------------------------------------------------------------------------------- /setpasswd/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/setpasswd/po/lt.po -------------------------------------------------------------------------------- /setpasswd/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/setpasswd/po/nl.po -------------------------------------------------------------------------------- /setpasswd/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/setpasswd/po/pl.po -------------------------------------------------------------------------------- /setpasswd/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/setpasswd/po/sr.po -------------------------------------------------------------------------------- /setpasswd/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/setpasswd/po/tr.po -------------------------------------------------------------------------------- /shoutcast/CONTROL/conffiles: -------------------------------------------------------------------------------- 1 | /usr/lib/enigma2/python/Plugins/Extensions/SHOUTcast/favorites 2 | -------------------------------------------------------------------------------- /shoutcast/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /shoutcast/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = SHOUTcast 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /shoutcast/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/shoutcast/po/de.po -------------------------------------------------------------------------------- /shoutcast/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/shoutcast/po/en.po -------------------------------------------------------------------------------- /shoutcast/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/shoutcast/po/fa.po -------------------------------------------------------------------------------- /shoutcast/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/shoutcast/po/it.po -------------------------------------------------------------------------------- /shoutcast/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/shoutcast/po/lt.po -------------------------------------------------------------------------------- /shoutcast/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/shoutcast/po/nl.po -------------------------------------------------------------------------------- /shoutcast/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/shoutcast/po/pl.po -------------------------------------------------------------------------------- /shoutcast/src/maintainer.info: -------------------------------------------------------------------------------- 1 | OpenPLi team 2 | SHOUTcast 3 | -------------------------------------------------------------------------------- /showclock/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /showclock/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = ShowClock 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /showclock/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/showclock/po/de.po -------------------------------------------------------------------------------- /showclock/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/showclock/po/en.po -------------------------------------------------------------------------------- /showclock/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/showclock/po/fa.po -------------------------------------------------------------------------------- /showclock/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/showclock/po/fi.po -------------------------------------------------------------------------------- /showclock/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/showclock/po/it.po -------------------------------------------------------------------------------- /showclock/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/showclock/po/lt.po -------------------------------------------------------------------------------- /showclock/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/showclock/po/nl.po -------------------------------------------------------------------------------- /showclock/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/showclock/po/tr.po -------------------------------------------------------------------------------- /showclock/src/maintainer.info: -------------------------------------------------------------------------------- 1 | Software@Strasdas.de 2 | ShowClock 3 | -------------------------------------------------------------------------------- /simplerss/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /simplerss/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = SimpleRSS 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /simplerss/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/simplerss/po/de.po -------------------------------------------------------------------------------- /simplerss/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/simplerss/po/en.po -------------------------------------------------------------------------------- /simplerss/po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/simplerss/po/es.po -------------------------------------------------------------------------------- /simplerss/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/simplerss/po/fa.po -------------------------------------------------------------------------------- /simplerss/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/simplerss/po/it.po -------------------------------------------------------------------------------- /simplerss/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/simplerss/po/lt.po -------------------------------------------------------------------------------- /simplerss/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/simplerss/po/nl.po -------------------------------------------------------------------------------- /simplerss/po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/simplerss/po/sr.po -------------------------------------------------------------------------------- /simplerss/po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/simplerss/po/tr.po -------------------------------------------------------------------------------- /simplerss/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | SimpleRSS 3 | -------------------------------------------------------------------------------- /srfmediathek/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta src -------------------------------------------------------------------------------- /srfmediathek/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /srfmediathek/src/maintainer.info: -------------------------------------------------------------------------------- 1 | CommanderData 2 | SRF Mediathek -------------------------------------------------------------------------------- /startupservice/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: set startup service 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /startupservice/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /startupservice/src/maintainer.info: -------------------------------------------------------------------------------- 1 | dr.best@dreambox-tools.info 2 | StartUpService 3 | -------------------------------------------------------------------------------- /startuptostandby/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /startuptostandby/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /startuptostandby/src/maintainer.info: -------------------------------------------------------------------------------- 1 | mail@marcus-gross.eu 2 | StartupToStandby 3 | -------------------------------------------------------------------------------- /subsdownloader2/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /subsdownloader2/src/SourceCode/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subsdownloader2/src/SourceCode/periscope/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subsdownloader2/src/SourceCode/periscope/services/BierDopje/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subsdownloader2/src/SourceCode/periscope/services/OpenSubtitle/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subsdownloader2/src/SourceCode/periscope/services/Subtitulos/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subsdownloader2/src/SourceCode/periscope/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subsdownloader2/src/SourceCode/xbmc_subtitles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subsdownloader2/src/SourceCode/xbmc_subtitles/services/Itasa/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subsdownloader2/src/SourceCode/xbmc_subtitles/services/Napisyme/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subsdownloader2/src/SourceCode/xbmc_subtitles/services/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /subsdownloader2/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sudoku/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | 3 | -------------------------------------------------------------------------------- /sudoku/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sudoku/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/sudoku/src/plugin.py -------------------------------------------------------------------------------- /svdrp/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta src 2 | -------------------------------------------------------------------------------- /svdrp/src/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/svdrp/src/LICENSE -------------------------------------------------------------------------------- /svdrp/src/SVDRP.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/svdrp/src/SVDRP.py -------------------------------------------------------------------------------- /svdrp/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /svdrp/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | svdrp 3 | -------------------------------------------------------------------------------- /svdrp/src/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/svdrp/src/plugin.py -------------------------------------------------------------------------------- /tageditor/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /tageditor/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = TagEditor 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /tageditor/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/tageditor/po/de.po -------------------------------------------------------------------------------- /tageditor/po/en.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/tageditor/po/en.po -------------------------------------------------------------------------------- /tageditor/po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/tageditor/po/fa.po -------------------------------------------------------------------------------- /tageditor/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/tageditor/po/it.po -------------------------------------------------------------------------------- /tageditor/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/tageditor/po/lt.po -------------------------------------------------------------------------------- /tageditor/src/maintainer.info: -------------------------------------------------------------------------------- 1 | aho@sics.se 2 | TagEditor 3 | -------------------------------------------------------------------------------- /teletext/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /teletext/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = TeleText 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /teletext/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/teletext/po/de.po -------------------------------------------------------------------------------- /teletext/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/teletext/po/it.po -------------------------------------------------------------------------------- /teletext/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/teletext/po/lt.po -------------------------------------------------------------------------------- /teletext/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/teletext/po/nl.po -------------------------------------------------------------------------------- /teletext/po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/teletext/po/pl.po -------------------------------------------------------------------------------- /teletext/src/maintainer.info: -------------------------------------------------------------------------------- 1 | lespuck@web.de 2 | TeleText 3 | -------------------------------------------------------------------------------- /tetris/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | 3 | -------------------------------------------------------------------------------- /tetris/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /toolkit/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /toolkit/src/maintainer.info: -------------------------------------------------------------------------------- 1 | moritz.venn@freaque.net 2 | toolkit 3 | -------------------------------------------------------------------------------- /toolkit/src/plugin.py: -------------------------------------------------------------------------------- 1 | def Plugins(**kwargs): 2 | return [] 3 | -------------------------------------------------------------------------------- /trafficinfo/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /trafficinfo/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /trafficinfo/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | TrafficInfo 3 | -------------------------------------------------------------------------------- /tvcharts/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /tvcharts/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unwetterinfo/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /unwetterinfo/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /unwetterinfo/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | UnwetterInfo 3 | -------------------------------------------------------------------------------- /updatepot.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/updatepot.sh -------------------------------------------------------------------------------- /valixdcontrol/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: Vali-XD skins Control 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /valixdcontrol/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /valixdcontrol/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /valixdcontrol/src/maintainer.info: -------------------------------------------------------------------------------- 1 | vali@dreambox-tools.info 2 | ValiXDControl 3 | -------------------------------------------------------------------------------- /videocolorspace/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: Setup video color space 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /videocolorspace/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /vierg/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | 3 | -------------------------------------------------------------------------------- /vierg/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /virtualzap/CONTROL/control: -------------------------------------------------------------------------------- 1 | Description: E2 Virtual Zap Plugin 2 | Depends: enigma2 3 | -------------------------------------------------------------------------------- /virtualzap/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta po 2 | -------------------------------------------------------------------------------- /virtualzap/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = VirtualZap 2 | include $(top_srcdir)/Rules-po.mak 3 | -------------------------------------------------------------------------------- /virtualzap/src/maintainer.info: -------------------------------------------------------------------------------- 1 | dr.best@dreambox-tools.info 2 | VirtualZap 3 | -------------------------------------------------------------------------------- /vlcplayer/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /vlcplayer/src/maintainer.info: -------------------------------------------------------------------------------- 1 | OpenPLi team 2 | VlcPlayer 3 | -------------------------------------------------------------------------------- /vps/Makefile.am: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/vps/Makefile.am -------------------------------------------------------------------------------- /vps/meta/vps.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/vps/meta/vps.jpg -------------------------------------------------------------------------------- /vps/po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/vps/po/cs.po -------------------------------------------------------------------------------- /vps/po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/vps/po/de.po -------------------------------------------------------------------------------- /vps/po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/vps/po/fi.po -------------------------------------------------------------------------------- /vps/po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/vps/po/it.po -------------------------------------------------------------------------------- /vps/po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/vps/po/lt.po -------------------------------------------------------------------------------- /vps/po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/vps/po/nl.po -------------------------------------------------------------------------------- /vps/po/vps.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/vps/po/vps.pot -------------------------------------------------------------------------------- /vps/src_cc/.gitignore: -------------------------------------------------------------------------------- 1 | vps 2 | -------------------------------------------------------------------------------- /vps/src_cc/vps.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/vps/src_cc/vps.h -------------------------------------------------------------------------------- /vps/src_py/Vps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/vps/src_py/Vps.py -------------------------------------------------------------------------------- /vps/src_py/WebComponents/Sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vps/src_py/WebComponents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vps/src_py/maintainer.info: -------------------------------------------------------------------------------- 1 | mart-g@web.de 2 | VPS-Plugin -------------------------------------------------------------------------------- /weathercomponent/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /weathercomponenthandler/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src 2 | -------------------------------------------------------------------------------- /weathercomponenthandler/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /weathercomponenthandler/src/maintainer.info: -------------------------------------------------------------------------------- 1 | dr.best@dreambox-tools.info 2 | WeatherPlugin 3 | -------------------------------------------------------------------------------- /weatherplugin/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = po src meta 2 | -------------------------------------------------------------------------------- /weatherplugin/src/maintainer.info: -------------------------------------------------------------------------------- 1 | dr.best@dreambox-tools.info 2 | WeatherPlugin 3 | -------------------------------------------------------------------------------- /webadmin/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /webadmin/src/WebChilds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webadmin/src/WebComponents/Sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webadmin/src/WebComponents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webadmin/src/WebScreens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webadmin/src/maintainer.info: -------------------------------------------------------------------------------- 1 | info@ihad.tv 2 | WebAdmin -------------------------------------------------------------------------------- /webbouqueteditor/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /webbouqueteditor/src/WebChilds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webbouqueteditor/src/WebComponents/Sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webbouqueteditor/src/WebComponents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webbouqueteditor/src/WebScreens/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webbouqueteditor/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webcamviewer/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /webcamviewer/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webcamviewer/src/maintainer.info: -------------------------------------------------------------------------------- 1 | 3c5x9@gmx.net 2 | WebcamViewer 3 | -------------------------------------------------------------------------------- /webinterface/src/WebChilds/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webinterface/src/WebComponents/Converter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webinterface/src/WebComponents/Sources/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webinterface/src/WebComponents/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /webinterface/src/maintainer.info: -------------------------------------------------------------------------------- 1 | stephan@reichholf.net 2 | WebInterface -------------------------------------------------------------------------------- /werbezapper/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /werbezapper/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = WerbeZapper 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /widgets/src/__init__.py: -------------------------------------------------------------------------------- 1 | #djhkjh 2 | -------------------------------------------------------------------------------- /widgets/src/widgets/bigclock/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /widgets/src/widgets/counter/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /widgets/src/widgets/frontendstatus/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /widgets/src/widgets/imageswitch/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /widgets/src/widgets/serviceinfo/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /widgets/src/widgets/testwidget/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /xml2po.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oe-alliance/enigma2-plugins/HEAD/xml2po.py -------------------------------------------------------------------------------- /youtubeplayer/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src meta 2 | -------------------------------------------------------------------------------- /youtubeplayer/src/maintainer.info: -------------------------------------------------------------------------------- 1 | volker.christian@fh-hagenberg.at 2 | YouTubePlayer 3 | -------------------------------------------------------------------------------- /yttrailer/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /yttrailer/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = YTTrailer 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /yttrailer/src/maintainer.info: -------------------------------------------------------------------------------- 1 | dr.best@dreambox-tools.info 2 | YTTrailer 3 | -------------------------------------------------------------------------------- /zaphistorybrowser/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = src po meta 2 | -------------------------------------------------------------------------------- /zaphistorybrowser/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zaphistorybrowser/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nabil1978@web.de 2 | ZapHistoryBrowser 3 | -------------------------------------------------------------------------------- /zapstatistic/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta po src 2 | -------------------------------------------------------------------------------- /zapstatistic/po/Makefile.am: -------------------------------------------------------------------------------- 1 | PLUGIN = ZapStatistic 2 | include $(top_srcdir)/Rules_noxml-po.mak 3 | -------------------------------------------------------------------------------- /zapstatistic/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zapstatistic/src/maintainer.info: -------------------------------------------------------------------------------- 1 | nabil1978@web.de 2 | Zap Statistic 3 | -------------------------------------------------------------------------------- /zdfmediathek/Makefile.am: -------------------------------------------------------------------------------- 1 | SUBDIRS = meta src 2 | -------------------------------------------------------------------------------- /zdfmediathek/src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /zdfmediathek/src/maintainer.info: -------------------------------------------------------------------------------- 1 | CommanderData 2 | ZDF Mediathek 3 | --------------------------------------------------------------------------------