How can I add a new language in Liferay 7?

南楼画角 提交于 2019-12-01 20:31:39

Assuming that you have followed all the steps in this Liferay blog, adding the flag in Liferay 7 requires:

  1. Create a new theme, or modify existing theme to :

    • add your flag file in SVG format as images\lexicon\flags-xx-YY.svg (where xx-YY is your locale, case-sensitive)
    • open the file icons.svg in the same folder and add your flag SVG elements as a symbol among the other symbol elements: </symbol><symbol id="xx-yy" viewBox="0 0 512 512"> <rect y="64" fill="#B0BEC9" width="512" height="384"/> <rect x="16" y="80" width="480" height="352" fill="#fff"/> <rect ..... /> <circle .... /> </symbol><symbol id="zh-cn" viewBox="0 0 512 512">

      1. Deploy, or re-deploy, the theme and choose it as the active theme for the pages you want.

      2. Clear the browser cache if needed.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!