Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Wiki Markup
{style}
.panel {-moz-border-radius: 7px;
border-radius: 7px;}
.panelMacro table {-moz-border-radius: 15px;
border-radius: 15px;}
{style}

Panel
borderColor2

The translation files are now hosted and managed on Transifex website. Get an account at Transifex and help translating to your language! If your language is missing, just head over to Transifex and request a new language.

...

Tip
titleSpecial characters

Some characters representing values (%d, %s), new line (\n) and html tags must not be translated. For other translating recommendations, see Transifex help.

For special words or particular contexts look at the "Instructions" text box (gives explanations or definitions).

Section
Column
Wiki Markup
{html}
<a target="_blank" style="text-decoration:none; color:black; font-size:66%" href="https://www.transifex.com/projects/p/weasis/resource/weasis-core-api-i18n/" 
title="See more information on Transifex.com">Top translations: weasis » weasis-core-api-i18n</a><br/>
<img border="0" src="https://www.transifex.com/projects/p/weasis/resource/weasis-core-api-i18n/chart/image_png"/><br/><a target="_blank" href="https://www.transifex.com/projects/p/weasis/"><img border="0" src="https://ds0k0en9abmn1.cloudfront.net/static/charts/images/tx-logo-micro.646b0065fce6.png"/></a>
{html}
Column
Wiki Markup
{html}
<a target="_blank" style="text-decoration:none; color:black; font-size:66%" href="https://www.transifex.com/projects/p/weasis/resource/weasis-core-ui-i18n/" 
title="See more information on Transifex.com">Top translations: weasis » weasis-core-ui-i18n</a><br/>
<img border="0" src="https://www.transifex.com/projects/p/weasis/resource/weasis-core-ui-i18n/chart/image_png"/><br/><a target="_blank" href="https://www.transifex.com/projects/p/weasis/"><img border="0" src="https://ds0k0en9abmn1.cloudfront.net/static/charts/images/tx-logo-micro.646b0065fce6.png"/></a>
{html}

 

Building Weasis-i18n

Panel
borderColor2

weasis-i18n is the internationalization project of Weasis. As a separate project, it can have its own release cycle. The fragments of plug-ins (OSGI concept) contain only the translation files which are merged during runtime to the application.

That means the weasis-i18n.war file can be deployed at any time. The plug-in translation will be updated by Weasis only if the timestamp number has changed. This timestamp is set during the build phase described below.

...

  1. JDK 6 or higher (Sun or OpenJDK)
  2. Maven 2.2 or higher (http://maven.apache.org/guides/index.html)

    Note

    If your computer is behind a proxy server, configure maven.

  3. Git (or directly download source from gitub), one of the following client:
    • CLI on Linux or Mac OS X -  Install git-core package
    • Windows - Tortoise Git - (When installing msysgit be sure to choose Unix style line endings)
    • Eclipse - Install egit

...

To clone the repository, first install GIT and either clone using a graphical GIT client (such as Tortoise Git) or directly from the command line using the command:

Code Block
none
none

git clone git://github.com/nroduit/weasis-i18n.git

...

  • Go in the weasis-i18n directory, Compile and install all the plug-ins in the local Maven repository
Code Block
none
none

mvn clean install -Dtransifex.credential=<"username:password">

...