alejandroautalan / pygubu-designer

A simple GUI designer for the python tkinter module
GNU General Public License v3.0
827 stars 101 forks source link

Code Generating: translator function needed #120

Closed chianjin closed 2 years ago

chianjin commented 2 years ago

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.

chianjin commented 2 years ago

Thanks