nolenfelten / xbmc-addons

Automatically exported from code.google.com/p/xbmc-addons
0 stars 0 forks source link

Freemoovies strings #18

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
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

GoogleCodeExporter commented 9 years ago
Fixed

Original comment by bluecop...@gmail.com on 13 Mar 2009 at 7:49