You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the Display_message() method takes 2 arguments: text_en and text_nl. It would be better to use gettext (https://docs.python.org/3/library/gettext.html). This allows you to display a translated string without worrying about available translations, for example: display_message(_('my_string_label')).
The text was updated successfully, but these errors were encountered:
Currently the
Display_message()
method takes 2 arguments:text_en
andtext_nl
. It would be better to usegettext
(https://docs.python.org/3/library/gettext.html). This allows you to display a translated string without worrying about available translations, for example:display_message(_('my_string_label'))
.The text was updated successfully, but these errors were encountered: