translated_string = gettext(your_string)
translated_string = _(your_string))
| Paramètre | Description |
|---|---|
| your_string | une chaîne : message à traduire. |
| Paramètre | Description |
|---|---|
| translated_string | une chaîne : message traduit. |
translated_string = gettext(your_string) obtient la traduction d'une chaîne your_string pour la locale courante dans le domaine Nelson.
_(your_string) est un alias de gettext(your_string).
disp(_('function not found.'))
| Version | Description |
|---|---|
| 1.0.0 | version initiale |