Use
Application strings are used for language strings and labels that are
not specific to a single module. Examples of these may include labels
that will appear in the headers or footers, labels that appear on search
buttons throughout SuiteCRM or labels for pagination controls.
Definition location
The application strings are defined in the $app_strings
array. This is
initially defined in
include/language/<LanguageTag>.lang.php
.
Customisation location
Customisations can be made to the application strings in two ways.
Firstly you can edit the file
custom/include/language/<LanguageTag>.lang.php
.
However to promote modularity it is recommended that you add a new file in the location
custom/Extension/application/Ext/Language/<LanguageTag>.<Name>.php
.
For example custom/Extension/application/Ext/Language/es_es.MyAppLanguageFile.php
.
<Name>
should be used to give the file a descriptive name.
See the extensions section for more information on the Extensions folder.