gettext
Get text translated into the current locale.
📝 Syntax
translated_string = gettext(your_string)
translated*string = *(your_string))
📥 Input argument
your_string - a string: message to be translated.
📤 Output argument
translated_string - a string: message translated.
📄 Description
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).
💡 Example
disp(_('function not found.'))🔗 See also
🕔 History
Version
📄 Description
1.0.0
initial version
Last updated
Was this helpful?