``_
get text translated into the current locale and domain.
Similar to gettext
msg=gettext(myString)
msg=_(myString)
:myString a string, the message to be translated :
gettext(myString) gets the translation of a string myString to the current locale in the current domain.
_(myString) is an alias of ``gettext`_(myString)`.
`gettext`_('Startup execution:')
_('Startup execution:')