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"
|
||||
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