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"?>
|
<?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>
|
<requires>
|
||||||
<import addon="xbmc.python" version="2.1.0"/>
|
<import addon="xbmc.python" version="2.1.0"/>
|
||||||
<import addon="script.module.requests" version="2.3.0" />
|
<import addon="script.module.requests" version="2.3.0" />
|
||||||
|
|
|
@ -83,11 +83,6 @@ msgctxt "#30017"
|
||||||
msgid "Unauthorized for PMS"
|
msgid "Unauthorized for PMS"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
# Kodi context menu entry for movie and episode information screen
|
|
||||||
msgctxt "#30018"
|
|
||||||
msgid "Information"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
msgctxt "#30022"
|
msgctxt "#30022"
|
||||||
msgid "Advanced"
|
msgid "Advanced"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -108,6 +103,11 @@ msgctxt "#30031"
|
||||||
msgid "I own this Plex Media Server"
|
msgid "I own this Plex Media Server"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
# Kodi context menu entry for movie and episode information screen
|
||||||
|
msgctxt "#30032"
|
||||||
|
msgid "Information"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
msgctxt "#30035"
|
msgctxt "#30035"
|
||||||
msgid "Number of recent Music Albums to show:"
|
msgid "Number of recent Music Albums to show:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
|
@ -2536,7 +2536,7 @@ class API():
|
||||||
listItem.setInfo('video', infoLabels=metadata)
|
listItem.setInfo('video', infoLabels=metadata)
|
||||||
try:
|
try:
|
||||||
# Add context menu entry for information screen
|
# Add context menu entry for information screen
|
||||||
listItem.addContextMenuItems([(lang(30018), 'XBMC.Action(Info)',)])
|
listItem.addContextMenuItems([(lang(30032), 'XBMC.Action(Info)',)])
|
||||||
except TypeError:
|
except TypeError:
|
||||||
# Kodi fuck-up
|
# Kodi fuck-up
|
||||||
pass
|
pass
|
||||||
|
|
|
@ -256,7 +256,7 @@ def createListItem(item, appendShowTitle=False, appendSxxExx=False):
|
||||||
li.setProperty('dbid', str(item['episodeid']))
|
li.setProperty('dbid', str(item['episodeid']))
|
||||||
li.setProperty('fanart_image', item['art'].get('tvshow.fanart',''))
|
li.setProperty('fanart_image', item['art'].get('tvshow.fanart',''))
|
||||||
try:
|
try:
|
||||||
li.addContextMenuItems([(lang(30018), 'XBMC.Action(Info)',)])
|
li.addContextMenuItems([(lang(30032), 'XBMC.Action(Info)',)])
|
||||||
except TypeError:
|
except TypeError:
|
||||||
# Kodi fuck-up
|
# Kodi fuck-up
|
||||||
pass
|
pass
|
||||||
|
|
Loading…
Reference in a new issue