Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: English - Français - Русский - 日本語
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

History

VersãoDescrição
5.5.0 Domain management added.
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:34:59 CEST 2016