Scilab 6.0.0
Ajuda do Scilab >> Localização > gettext
gettext
get text translated into the current locale and domain.
_
Similar to gettext
Syntax
msg=gettext([myDomain,] myString) msg=_([myDomain,] myString)
Arguments
- myDomain
a string, the name of the messages domain
- myString
a string, the message to be translated
Description
gettext(myString)
gets the translation of a string myString
to the current locale in the current domain.
gettext(myDomain, myString)
gets the translation of a string myString
to the myDomain
domain.
_(myString)
is an alias of gettext(myString)
.
_(myDomain, myString)
is an alias of gettext(myDomain, myString)
.
Examples
setlanguage("fr_FR"); gettext("Startup execution:") _("Startup execution:") addlocalizationdomain("tbx", "SCI/modules/localization/tests/unit_tests/locale") gettext("tbx", "%s: something not in Scilab.\n") _("tbx", "%s: something not in Scilab.\n")
See Also
- addlocalizationdomain — add a new domain in localization mechanism.
History
Versão | Descrição |
5.5.0 | Domain management added. |
Comments
Add a comment:
Please login to comment this page.