I have a tiny request to make the "Zap" text use the _() operator in order to allow its localiation. Like in the following diff-like snipplet (onSelectionChanged function):
--- old/lib/enigma2/python/Plugins/Extensions/GraphMultiEpg/GraphMultiEpg.py +++ new/lib/enigma2/python/Plugins/Extensions/GraphMultiEPG/GraphMultiEpg.py @@ -943,11 +943,11 @@ self["key_red"].setText("") self.key_red_choice = self.EMPTY return if self.key_red_choice != self.ZAP: - self["key_red"].setText("Zap") + self["key_red"].setText(_("Zap")) self.key_red_choice = self.ZAP if not event: if self.key_green_choice != self.EMPTY: self["key_green"].setText("")
Regards.
Edited by macnuts, 24 July 2012 - 19:51.