ZCS 6.0:Zimlet Developers Guide:Examples:Simple i18n Example: Difference between revisions

(New page: {| cellspacing="0" cellpadding="5" style="border: 1px solid rgb(153, 153, 170); margin: 0pt 0.5em 0.5em 0pt; float: none; background-color: rgb(249, 249, 255);" |[[Image:zdg-6-menu-icon-zi...)
 
No edit summary
Line 46: Line 46:


<ul>
<ul>
<li>[[ZCS_6.0:Zimlet_Developers_Guide:Proxy_Servlet_Setup|Proxy Servlet Setup]]
<li>[[ZCS_6.0:Zimlet_Developers_Guide:Developing_Zimlets#Internationalization|Internationalization]]</li>
</ul>
</ul>

Revision as of 02:39, 22 December 2009

Zdg-6-menu-icon-zimbra.jpg Introduction Zdg-6-menu-icon-green-flag.png Getting Started Zdg-6-menu-icon-terminal.png Dev Environment Setup Zdg-6-menu-icon-gear.png Developing Zimlets Zdg-6-menu-icon-library.jpg API Specifications Zdg-6-menu-icon-checkbox.jpg 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_sampleprops" version="1.0" description="Demos accessing i18n properties">
    <include>sampleprops.js</include>
    <handlerObject>com_zimbra_samplepropsHandlerObject</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_sampleprops.zip


Useful Links

Jump to: navigation, search