Skip to content

Commit

Permalink
[BE - RTLPlay] add 'RTL Play' menu and add 'All programs'
Browse files Browse the repository at this point in the history
  • Loading branch information
darodi authored and sy6sy2 committed Nov 26, 2021
1 parent 506dd19 commit 7190f8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions resources/lib/channels/be/rtlplaybe.py
Expand Up @@ -118,7 +118,7 @@ def rtlplay_root(plugin, **kwargs):
yield item

item = Listitem()
item.label = 'All programs'
item.label = plugin.localize(30717)
item.art["thumb"] = get_item_media_path('channels/be/rtlplay.png')
item.art["fanart"] = get_item_media_path('channels/be/rtlplay_fanart.jpg')
item.set_callback(list_all_programs, 'rtl_play')
Expand All @@ -134,7 +134,7 @@ def list_all_programs(plugin, item_id, **kwargs):

for letter in letters:
item = Listitem()
item.label = 'All programs : ' + letter
item.label = plugin.localize(30717) + ' : ' + letter
item.art["thumb"] = get_item_media_path('channels/be/rtlplay.png')
item.art["fanart"] = get_item_media_path('channels/be/rtlplay_fanart.jpg')
item.set_callback(list_all_programs_by_letter, item_id, letter)
Expand Down

0 comments on commit 7190f8f

Please sign in to comment.