Posts

Showing posts with the label Hook

Localization in liferay.

Liferay support several localization.You can easily localize your application to support more than one language. You can override existing language key and also add language key in hook. Configure your hook as below. <?xml version="1.0"?> <!DOCTYPE hook PUBLIC "-//Liferay//DTD Hook 6.2.0//EN" "http://www.liferay.com/dtd/liferay-hook_6_2_0.dtd"> <hook>     <portal-properties>portal.properties</portal-properties>     <language-properties>content/Language_en.properties</language-properties>     <language-properties>content/Language_nl.properties</language-properties>     <language-properties>content/Language_pt.properties</language-properties> </hook> Here above hook show three language(nl,pt and en) support. Add above three language files in src/content folder. You can also say in hook, how many languages support by your application. For...