The code generated without translator function, like this:
self.Button4.configure(text="Start")
So, I had to add it manully.
self.Button4.configure(text=_("Start"))
Can add a i18n support option, for generating code with translator function automatic.
The code generated without translator function, like this:
self.Button4.configure(text="Start")
So, I had to add it manully.self.Button4.configure(text=_("Start"))
Can add a i18n support option, for generating code with translator function automatic.