338 | | All Strings which appear in the user interface, such as in menus and forms and help info, should be Internationalized, so that they are available to be Localized into different languages. This is done bty wrapping the strings in T(), e.g. T("This string is Internationalized and so can be translated") |
339 | | |
340 | | Strings inside T() should, by default, be in US English. |
| 338 | All Strings which appear in the user interface, such as in menus and forms and help info, should be "internationalized" -- marked to make them available to be translated into different languages. This is done by putting the strings inside of {{{T( )}}}, e.g. {{{T("This string will be written into language files to be translated")}}}. The strings in {{{T( )}}} are keys that are used to look up translated strings. By convention, the key strings are in US English. |