Merge branch 'hotfixes' into translations
This commit is contained in:
commit
4eec33993c
4 changed files with 8 additions and 8 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<addon id="plugin.video.plexkodiconnect" name="PlexKodiConnect" version="1.8.5" provider-name="croneter">
|
||||
<addon id="plugin.video.plexkodiconnect" name="PlexKodiConnect" version="1.8.7" provider-name="croneter">
|
||||
<requires>
|
||||
<import addon="xbmc.python" version="2.1.0"/>
|
||||
<import addon="script.module.requests" version="2.3.0" />
|
||||
|
|
|
@ -83,11 +83,6 @@ msgctxt "#30017"
|
|||
msgid "Unauthorized for PMS"
|
||||
msgstr ""
|
||||
|
||||
# Kodi context menu entry for movie and episode information screen
|
||||
msgctxt "#30018"
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "#30022"
|
||||
msgid "Advanced"
|
||||
msgstr ""
|
||||
|
@ -108,6 +103,11 @@ msgctxt "#30031"
|
|||
msgid "I own this Plex Media Server"
|
||||
msgstr ""
|
||||
|
||||
# Kodi context menu entry for movie and episode information screen
|
||||
msgctxt "#30032"
|
||||
msgid "Information"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "#30035"
|
||||
msgid "Number of recent Music Albums to show:"
|
||||
msgstr ""
|
||||
|
|
|
@ -2536,7 +2536,7 @@ class API():
|
|||
listItem.setInfo('video', infoLabels=metadata)
|
||||
try:
|
||||
# Add context menu entry for information screen
|
||||
listItem.addContextMenuItems([(lang(30018), 'XBMC.Action(Info)',)])
|
||||
listItem.addContextMenuItems([(lang(30032), 'XBMC.Action(Info)',)])
|
||||
except TypeError:
|
||||
# Kodi fuck-up
|
||||
pass
|
||||
|
|
|
@ -256,7 +256,7 @@ def createListItem(item, appendShowTitle=False, appendSxxExx=False):
|
|||
li.setProperty('dbid', str(item['episodeid']))
|
||||
li.setProperty('fanart_image', item['art'].get('tvshow.fanart',''))
|
||||
try:
|
||||
li.addContextMenuItems([(lang(30018), 'XBMC.Action(Info)',)])
|
||||
li.addContextMenuItems([(lang(30032), 'XBMC.Action(Info)',)])
|
||||
except TypeError:
|
||||
# Kodi fuck-up
|
||||
pass
|
||||
|
|
Loading…
Reference in a new issue