Custom Component Strings
Appmixer lets you manage the components' inspector fields through the manifest or the strings object.
There are two ways for customizing the components' inspector fields:
Through a localization object inside the component's manifest
Adding custom strings to components namespace inside strings object
Component's manifest localization object
You can include custom strings inside the component's manifest itself using a localization object. The following is an example of how to include it:
Now to switch the language on the UI, you call the Appmixer instance set
method:
Note that if you want to customize the whole UI, you must use this in conjunction with the strings object. Here's a contrived example to clear this up:
Strings object's component namespace
The alternative way to customize the component's strings is using the Strings Object. For this, there is a root namespace components
which contains all the custom strings definitions for components:
Strings resolving
When rendering the component's inspector, the strings are resolved with the following priority:
Localization object on manifest
Strings object components namespace
Property on manifest
So for example when resolving an input label, it will first look if there is a localization object on the manifest and if the required string is defined on the localization object in the manifest. If is not, it will lookup within the Strings Object if the components
namespace exist and if it contains the required string. Lastly it will resort to the string that is defined in the manifest field itself.
Last updated
Was this helpful?