Change string ID
This commit is contained in:
parent
61ea145d49
commit
e5d4e44951
3 changed files with 7 additions and 7 deletions
|
@ -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