python - Translate all 'string" fields in a database WITHOUT using properties file -
we developping application (catalog) contains thousands of references (products). each product has description , extended set of data.
we using python development language postgresql database (but can use other if required)
in short:
- we translate "string' type fields of our database
- we cannot use properties file (i18n) because have dozens of thousands of references translate.
- note chose approach because want make ui translator mus able translate every string of app (hence database approach)
my questions : best database architecture should use best performance? advice on how limit database calls? there automoated tools/techniques, "string" fields of tables , translate them in external translations table?
thanks lot insight !
Comments
Post a Comment