As I already speak about here http://www.vuplus-community.net/board/threads/mx-hd.8145/page-4#post-65514 ; the Black Hole or Black Pole packages cannot be translated through the .po files.
The problem is because Black Hole / Pole coders did forget to add "_(" before name, text or title; and ")" after; in order to translate the item if present in the .po file.
Example in black pole BHGreen; addons section :
the command in BpGreen.py is :
name = 'Online Feeds all Packages'
and therefore cannot be translated in any language.
If I change this line with :
name=_('Online Feeds all Packages')
Then the translation is possible
My question:
Can a Black Hole coder add that to the BhGreen.py, Blue, Red and so on . If this is done then we can translate into our own language the whole image.
I cannot do that because I have nothing to decompile python 2.6....
Thanks in advance for your interest
The problem is because Black Hole / Pole coders did forget to add "_(" before name, text or title; and ")" after; in order to translate the item if present in the .po file.
Example in black pole BHGreen; addons section :
the command in BpGreen.py is :
name = 'Online Feeds all Packages'
and therefore cannot be translated in any language.
If I change this line with :
name=_('Online Feeds all Packages')
Then the translation is possible
My question:
Can a Black Hole coder add that to the BhGreen.py, Blue, Red and so on . If this is done then we can translate into our own language the whole image.
I cannot do that because I have nothing to decompile python 2.6....
Thanks in advance for your interest