The easiest way to internationalize text strings in Python is by moving them into a separate Python module and then selecting the language to be displayed in our GUI by passing in an argument to this module.
While this approach, according to online search results, is not highly recommended, depending on the specific requirements of the application you are developing, it may still be the most pragmatic and fastest to implement.