summaryrefslogtreecommitdiff
path: root/plugin.video.catchuptvandmore/resources/lib/skeleton.py
blob: b6f63cd74ed2374563cc943b2620f68b160cb8a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
# -*- coding: utf-8 -*-
"""
    Catch-up TV & More
    Copyright (C) 2016  SylvainCecchetto

    This file is part of Catch-up TV & More.

    Catch-up TV & More is free software; you can redistribute it and/or modify
    it under the terms of the GNU General Public License as published by
    the Free Software Foundation; either version 2 of the License, or
    (at your option) any later version.

    Catch-up TV & More is distributed in the hope that it will be useful,
    but WITHOUT ANY WARRANTY; without even the implied warranty of
    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
    GNU General Public License for more details.

    You should have received a copy of the GNU General Public License along
    with Catch-up TV & More; if not, write to the Free Software Foundation,
    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
"""


CATEGORIES = {
    'main_menu.be': 'Belgian channels',
    'main_menu.eu': 'European channels',
    'main_menu.fr': 'French channels',
    'main_menu.uk': 'United Kingdom channels',
    'main_menu.ws': 'Websites'
}

CHANNELS = {

    'main_menu.be': {
        'channels.be.rtbf.auvio': 'RTBF Auvio (La Une, La deux, La Trois, ...)'
    },

    'main_menu.eu': {
        'channels.eu.arte.arte': 'Arte',
        'channels.eu.euronews.euronews': 'Euronews'
    },

    'main_menu.fr': {
        'channels.fr.tf1.tf1': 'TF1',
        'channels.fr.pluzz.france2': 'France 2',
        'channels.fr.pluzz.france3': 'France 3',
        'channels.fr.groupecanal.cplus': 'Canal +',
        'channels.fr.pluzz.france5': 'France 5',
        'channels.fr.6play.m6': 'M6',
        'channels.fr.groupecanal.c8': 'C8',
        'channels.fr.6play.w9': 'W9',
        'channels.fr.tf1.tmc': 'TMC',
        'channels.fr.tf1.nt1': 'NT1',
        'channels.fr.nrj.nrj12': 'NRJ 12',
        'channels.fr.pluzz.france4': 'France 4',
        'channels.fr.bfmtv.bfmtv': 'BFM TV',
        'channels.fr.groupecanal.cnews': 'CNews',
        'channels.fr.groupecanal.cstar': 'CStar',
        'channels.fr.gulli.gulli': 'Gulli',
        'channels.fr.pluzz.franceo': 'France Ô',
        'channels.fr.tf1.hd1': 'HD1',
        'channels.fr.lequipe.lequipe': 'L\'Équipe',
        'channels.fr.6play.6ter': '6ter',
        'channels.fr.numero23.numero23': 'Numéro 23',
        'channels.fr.nrj.cherie25': 'Chérie 25',
        'channels.fr.pluzz.la_1ere': 'La 1ère (Outre-Mer)',
        'channels.fr.pluzz.franceinfo': 'France Info',
        'channels.fr.bfmtv.bfmbusiness': 'BFM Business',
        'channels.fr.bfmtv.rmc': 'RMC',
        'channels.fr.bfmtv.01net': '01Net TV',
        'channels.fr.tf1.tfou': 'Tfou (MYTF1)',
        'channels.fr.tf1.xtra': 'Xtra (MYTF1)',
        'channels.fr.tf1.lci': 'LCI',
        'channels.fr.lcp.lcp': 'LCP Assemblée Nationale',
        'channels.fr.bfmtv.rmcdecouverte': 'RMC Découverte HD24',
        'channels.fr.6play.stories': 'Stories (6play)',
        'channels.fr.6play.bruce': 'Bruce (6play)',
        'channels.fr.6play.crazy_kitchen': 'Crazy Kitchen (6play)',
        'channels.fr.6play.home': 'Home Time (6play)',
        'channels.fr.6play.styles': 'Sixième Style (6play)',
        'channels.fr.6play.comedy': 'Comic (6play)',
        'channels.fr.france24.france24': 'France 24',
        'channels.fr.publicsenat.publicsenat': 'Public Sénat'
    },

    'main_menu.uk': {
        'channels.uk.blaze.blaze': 'Blaze',
        'channels.uk.uktvplay.dave': 'Dave',
        'channels.uk.uktvplay.really': 'Really',
        'channels.uk.uktvplay.yesterday': 'Yesterday',
        'channels.uk.uktvplay.drama': 'Drama'
    },

    'main_menu.ws': {
        'channels.ws.allocine.allocine': 'Allociné',
        'channels.ws.tetesaclaques.tetesaclaques': 'Au pays des Têtes à claques'
    }
}