ZCS 6.0:Zimlet Developers Guide:Examples:Simple i18n Example
ZCS 6.0: Zimlet Developer Guide:Examples:Simple i18n Example
- This article is a Work in Progress, and may be unfinished or missing sections.
![]() |
You are looking at legacy Zimlet documentation. For Zimbra Modern UI Zimlet development go to: https://wiki.zimbra.com/wiki/DevelopersGuide#Zimlet_Development_Guide. |
![]() |
Introduction | ![]() |
Getting Started | ![]() |
Dev Environment Setup | ![]() |
Developing Zimlets | ![]() |
Advanced Concepts | ![]() |
API Specifications | ![]() |
Example Zimlets |
Description
This zimlet shows how to create and use internationalizable resource properties. In the Zimlet Definition File, the zimlet accesses resource properties using the ${msg}
syntax.
Definition File
<zimlet name="com_zimbra_example_sampleprops" version="1.0" description="Demos accessing i18n properties"> <include>com_zimbra_example_sampleprops.js</include> <handlerObject>com_zimbra_example_sampleprops_HandlerObject</handlerObject> <zimletPanelItem label="${msg.helloworld_label}" icon="zimbraIcon"> <toolTipText>${msg.helloworld_tooltip}</toolTipText> <contextMenu> <menuItem label="${msg.helloworld_menuitem}" icon="zimbraIcon" id="sampleprops_menuItemId"/> </contextMenu> </zimletPanelItem> </zimlet>
Download
Zimlet Package | com_zimbra_example_sampleprops.zip |
Useful Links