some stings is not translated:
if (xbmcplugin.getSetting('download') == '0'):
dia = xbmcgui.Dialog()
ret = dia.select('What do you want to do?',
['Play','Download','Download & Play','Exit'])
is possible change:
if (xbmcplugin.getSetting('download') == '0'):
dia = xbmcgui.Dialog()
ret = dia.select('What do you want to do?',
[xbmc.getLocalizedString( 30006 ),xbmc.getLocalizedString( 30007
),xbmc.getLocalizedString( 30008 ),'Exit'])
and new string "exit" and "What do you want to do?" of course :)
and
Original issue reported on code.google.com by kot...@gmail.com on 10 Mar 2009 at 5:17
Original issue reported on code.google.com by
kot...@gmail.com
on 10 Mar 2009 at 5:17