summaryrefslogtreecommitdiff
path: root/plugin.video.eurosportplayer/resources/lib/resources.py
diff options
context:
space:
mode:
Diffstat (limited to 'plugin.video.eurosportplayer/resources/lib/resources.py')
-rwxr-xr-xplugin.video.eurosportplayer/resources/lib/resources.py23
1 files changed, 23 insertions, 0 deletions
diff --git a/plugin.video.eurosportplayer/resources/lib/resources.py b/plugin.video.eurosportplayer/resources/lib/resources.py
new file mode 100755
index 0000000..3204053
--- /dev/null
+++ b/plugin.video.eurosportplayer/resources/lib/resources.py
@@ -0,0 +1,23 @@
+# -*- coding: utf-8 -*-
+
+def resources(string):
+ if string == 'Today':
+ return 30221
+ elif string == 'Tomorrow':
+ return 30222
+ elif string == 'Monday':
+ return 30223
+ elif string == 'Tuesday':
+ return 30224
+ elif string == 'Wednesday':
+ return 30225
+ elif string == 'Thursday':
+ return 30226
+ elif string == 'Friday':
+ return 30227
+ elif string == 'Saturday':
+ return 30228
+ elif string == 'Sunday':
+ return 30229
+ else:
+ return string