maicol07
maicol07

Reputation: 301

Translating strings python script

is it possible to translate strings of a Python script? Example: from English to Italian or from English to Francais... Another detailed example:

print("My string")

English user will see My string while an Italian will see La mia stringa and a Francais user will see Ma corde

Thanks

Upvotes: 1

Views: 168

Answers (1)

maicol07
maicol07

Reputation: 301

Solved with Gettext, thanks to Ignacio Vazquez-Abrams. I followed this guide to understand how to use this module.

Upvotes: 1

Related Questions