I18n"

From Documentation
(Created page with "=Create a Language File for UI= By default, ZSS only shows English for its user interface. You can create your language translation file for texts in the UI to make it more user-...")
 
m (correct highlight (via JWB))
 
(9 intermediate revisions by the same user not shown)
Line 1: Line 1:
 +
{{ZKSpreadsheetEssentials3PageHeader}}
 +
 +
 +
 
=Create a Language File for UI=
 
=Create a Language File for UI=
By default, ZSS only shows English for its user interface. You can create your language translation file for texts in the UI to make it more user-friendly.  
+
By default, ZSS only displays English on its user interface. You can create your language translation file for texts in the UI to make it more user-friendly.  
  
 
== Create a Language JavaScript File for a Language ==  
 
== Create a Language JavaScript File for a Language ==  
  
 
Create a new language js file for a specific locale like:  
 
Create a new language js file for a specific locale like:  
   <tt>msgzss_[LANG]_[COUNTRY].js</tt>
+
   <code>msgzss_[LANG]_[COUNTRY].js</code>
  
e.g. <tt>msgzss_zh_TW.js</tt> is for traditional Chinese in Taiwan.
+
e.g. <code>msgzss_zh_TW.js</code> is for traditional Chinese in Taiwan.
  
 
Put the language js file under the same path in your classpath like:
 
Put the language js file under the same path in your classpath like:
   <tt>WEB-INF/classes/web/js/zss/lang/msgzss_zh_TW.js</tt>
+
   <code>WEB-INF/classes/web/js/zss/lang/msgzss_zh_TW.js</code>
  
In maven default folder structure, you need to put it under <tt>resources</tt>.
+
In maven default folder structure, you need to put it under <code>resources</code>.
  
 
== Get Built-in Language Key ==
 
== Get Built-in Language Key ==
 
Then, get the built-in language properties, it's under
 
Then, get the built-in language properties, it's under
   <tt>zss.jar/web/js/zss/lang/msgzss.js</tt>
+
   <code>zss.jar/web/js/zss/lang/msgzss.js</code>
  
 
Copy the content and paste to your new language js file.
 
Copy the content and paste to your new language js file.
 +
 +
== Translate to Target Language ==
 +
Replacing string values (English) with the target language.
 +
[[File:zss-essentials-language-translated.png | center]]
 +
 +
 +
 +
 +
----
 +
 +
Then, visit a page with a browser in the corresponding language setting. The result looks like:
 +
 +
[[File:zss-essentials-i18n-chinese1.png]]
 +
[[File:zss-essentials-i18n-chinese2.png]]
 +
[[File:zss-essentials-i18n-chinese3.png]]
 +
 +
= Client-side Rendering Message =
 +
When your browser is waiting for a server's response, it will show a "Processing" message. It's ZK's busy message, it will show different text according to your browser locale (or specified locale). But if the browser is busy at client-side rendering, it shows a busy message which is hard-coded:
 +
 +
[[File:zss-essentials-client-rendering.png | center]]
 +
 +
So we have to include a CSS file to override the existing text, please [[ZK%20Spreadsheet%20Essentials/Download%20Example%20Source%20Code| check the example project's]] <code>WEB-INF/lang-addon.xml</code>, it includes a css:
 +
<source lang='xml'>
 +
<stylesheet href="~./css/zss_styles*.css" type="text/css"/>
 +
</source>
 +
 +
 +
 +
 +
 +
{{ZKSpreadsheetEssentialsPageFooter}}

Latest revision as of 12:50, 19 January 2022



Create a Language File for UI

By default, ZSS only displays English on its user interface. You can create your language translation file for texts in the UI to make it more user-friendly.

Create a Language JavaScript File for a Language

Create a new language js file for a specific locale like:

 msgzss_[LANG]_[COUNTRY].js

e.g. msgzss_zh_TW.js is for traditional Chinese in Taiwan.

Put the language js file under the same path in your classpath like:

 WEB-INF/classes/web/js/zss/lang/msgzss_zh_TW.js

In maven default folder structure, you need to put it under resources.

Get Built-in Language Key

Then, get the built-in language properties, it's under

 zss.jar/web/js/zss/lang/msgzss.js

Copy the content and paste to your new language js file.

Translate to Target Language

Replacing string values (English) with the target language.

Zss-essentials-language-translated.png




Then, visit a page with a browser in the corresponding language setting. The result looks like:

Zss-essentials-i18n-chinese1.png Zss-essentials-i18n-chinese2.png Zss-essentials-i18n-chinese3.png

Client-side Rendering Message

When your browser is waiting for a server's response, it will show a "Processing" message. It's ZK's busy message, it will show different text according to your browser locale (or specified locale). But if the browser is busy at client-side rendering, it shows a busy message which is hard-coded:

Zss-essentials-client-rendering.png

So we have to include a CSS file to override the existing text, please check the example project's WEB-INF/lang-addon.xml, it includes a css:

<stylesheet href="~./css/zss_styles*.css" type="text/css"/>




All source code listed in this book is at Github.


Last Update : 2022/01/19

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.