View Single Post
Posts: 10 | Thanked: 17 times | Joined on Jun 2011 @ POLAND
#501
i have next suggestion:
you have to implement option that will recognize, eg. Genere_pl_PL in *.ini files. There is function that recognizes "Description_pl_PL", so why there is nothing to be able to do localisation of Genere.
Code:
gameinfo.cpp
    _genre = settings.value("Info/Genre", "WebOS Game").toString();
should be sth like:
Code:
    _genere = settings.value(
                settings.contains("Info/Genere_" + localeName) ?
                    "Info/Genere_" + localeName :
                    "Info/Genere",
                "WebOS Game").toString();
am i right?

BTW, i've made Polish localisation of Wgames and i'm testing it now I'll share it here later


EDIT:
How to install Angry Birds and Angry Birds Seasons? When i try to install seasons it says to me, that folder Angry Birds is already created and because of that i cant install it..

Last edited by karoltom; 2011-09-09 at 16:46.