Flask API Language Translations (i18n) | Python Multilingual App

preview_player
Показать описание

A simple way of translating to multiple languages using Python Flask.

#python #flask #i18n
Рекомендации по теме
Комментарии
Автор

6:10 good, but why don't make "translations" also a dictionary? In such impimentation it's O(n), but could have been O(1)

Arthurk
Автор

This way of translating is not applicable to real world REST API app with database and database migration. Data usually stores in databases. Example with just an array in memory does not help to create good translation system. It would be good if in your example you use database like PostgeSQL and sqlalchemy and alemic for creating migration or something similar tech stack

denisdnishchenko
Автор

How can i do Language Translations in laravel vue help me

mdriponshake
Автор

Can you complete multi-language website in django as well. Ex: user login From India domain should be domain.com/in and user login from USA the domain should be domain.com/usa

KrishnaManohar