[web2py] internationalization, suggested features

2018-07-14 Thread Web2_3py
Hi, For strings in tables: === We all like table versioning. Can we have something similar for translation of the field? Field can be translatable (default not). The original field has details records ( translation of the field for each language). Google translate api can fill them, a

[web2py] Re: JSON field with MySQL database

2018-07-14 Thread Rodrigo Sacht
from gluon.dal import SQLCustomType json_type = SQLCustomType(type ='text', native='JSON', encoder=(lambda x: x), decoder=(lambda x: x) ) db.define_table('product_country_search', Field("init_search",