...
id | Default |
---|---|
open | Open |
close | Close |
ok | Ok |
cancel | Cancel |
generate | Generate |
new | New |
add | Add |
remove | Remove |
refine | Refine |
id | Default |
---|---|
readytoopen | Ready to open... |
clicktoopen | click here to open the link |
Client Resources
The following items list the i18n resources that can be set using client:resources to alter the display of the component directly.
The first line is the component id, the following lines are the names of the resources and their value if not set.
When there are 2 client id's they're aliases for the same item.
...
For example:
Code Block | ||||
---|---|---|---|---|
| ||||
<client:resources lang="it">
<detailsaction>
<tooltip>
<title>Ashowa da detaila</title>
<text>Displaya da detaila view, eh</text>
</tooltip>
</detailsaction>
</client:resources>
|
or
Code Block | ||||
---|---|---|---|---|
| ||||
<client:resources lang="it">
<resource id="detailsaction.tooltip.title">Ashowa da detaila</resource>
<resource id="detailsaction.tooltip.text">Displaya da detaila view, eh</resource>
</client:resources>
|
or in a resources .properties file
Code Block |
---|
detailsaction.tooltip.title=Ashowa da detaila
detailsaction.tooltip.text=Displaya da detaila view, eh
|
...