I18n functions | poheader >> |
translated_string = gettext(your_string) |
translated_string = _(your_string)) |
a string: message to be translated.
a string: message translated.
translated_string = gettext(your_string) gets the translation of a string your_string to the current locale in the Nelson domain.
_(your_string) is an alias of gettext(your_string).
disp(_('function not found.'))
Version | Description |
---|---|
1.0.0 | initial version |
Allan CORNET