Update to Version 3

Sisulizer version 3 is a paid update recommended for all Sisulizer customers.

Still using Sisulizer 1.x or Sisulizer 2008/2010?

Time to update to version 3 now and profit from all new features in version 3.

Specials run until May, 20 2012

Offers are for commercial and industrial customers only.
All prices are net.

Complete Price Sheet.

Not sure which edition is the right one? Visit our Edition Comparison

Social Networks

Please click this facebook button if you want to share this page with friends

Share

(english) (german)


Please click this Google +1

button to give Sisulizer a positive vote in Googles new voting system.

Thank you very much.

Selected Customers

Software Localization News

Version 3 Build 331 released

4/23/2012

The new build comes with many new features. [more]

Top News: Version 3

11/9/2011

Sisulizer version 3 out now. [more]

Tips & Tricks

9/30/2011

You are looking for tips and tricks around Sisulizer? [more]

Delphi Tage

9/8/2011

Delphi Tage 2011 in Cologne are sold out! [more]

Download Build 321

8/12/2011

Please us a download manager for your download. [more]

.NET Project Source | Languages

Some languages can be written using two or more different scripts. For example Serbian language is mostly written in Cyrillic script but it can also be written using Latin script. Chinese is written in two scripts: Simplified and Traditional Chinese. Because there are more than two scripts the language code itself does not uniquely specify the language that is used. This script neutral language code can be used with both scripts. The following table show different language, script and country combinations on three different languages:

Value English Chinese Serbian
Script and country neutral language en zh sr
Country neutral language and script - zh-Hans
zh-Hant
sr-Cyrl
sr-Latn
Language and country en-US
en-GB
zh-CN
zh-TW
-
Language, script and country - - sr-Cyrl-RS
sr-Latn-RS

English uses only one script: Latin. This is why there is no need for a script code in the culture id. Culture id must contain the language if (en) and it can optionally contain a country code (US, GB, AU, ...).

Chinese uses two scripts: Simplified and Traditional. Simplified is used in China and Singapore. Traditional is used in Taiwan, Hong Kong and Macao. Because one country does not use more than one script the culture that contains a country part (e.g. zh-CN) does not need a script part. However if there is no country part the script part is needed (e.g. zh-Hans). It is possible to have a culture code without a script (zh) but this is not a unique code. It can either mean Simplified or Traditional Chinese.

Serbian also uses two scripts: Cyrillic and Latin. Unlike Chinese both scripts are used on every country using Serbian. This is why a culture code with only language and country (e.g. sr-RS) is not enough. It is not unique but needs a script part (e.g. sr-Cyrl-RS).

By default Sisulizer does not use script neutral language codes but always uses the code that contains script code (e.g. zh vs. zh-Hans/zh-Hant). However .NET allows you to use script neutral language code and they might even be handy in some cases. This is why Sisulizer also gives you a possibility to use them. If you use a script neutral language code you have to choose that script uses the neutral code and what script uses the code with script code. The following table contains those languages that use more than one script and a script neutral language id can be used in .NET.

Value Script 1 Script 2 .NET version Country makes script unique
Azeri Latin Cyrillic All No
Mongolian Cyrillic Traditional Mongolian All Yes
Serbian Cyrillic Latin All No
Uzbek Latin Cyrillic All No
Chinese Simplified Chinese Traditional Chinese 4.0 or later Yes
Bosnian Latin Cyrillic 4.0 or later No
Inuktitut Latin Syllabics 4.0 or later No

If you want to turn on the script neutral language codes choose the script that is the primary script. For example if you have Chinese Simplified and Chinese Traditional in your Sisulizer project Sisulizer creates zh-Hans\assemblyname.resources.dll and zh-Hant\assemblyname.resources.dll. If you check Simplified Chinese in on this sheet Sisulizer creates zh\assemblyname.resources.dll and zh-Hant\assemblyname.resources.dll. If you check Traditional Chinese Sisulizer creates zh-Hans\assemblyname.resources.dll and zh\assemblyname.resources.dll.

Neutral Chinese coding

In addition of the usage of script neutral Chinese you can choose how country neutral Chinese is coded. There are two methods:

Value .NET version Description Simplified Chinese Traditional Chinese
Legacy All CHS or CHT is added after language code. zh-CHS zh-CHT
Standard 4.0 or later Script code is added after language code. zh-Hans zh-Hant

If your .NET project is using .NET 4.0 or later this sheet also contains Chinese Coding combo that is used if the default coding or legacy coding is used.

Value Description
Default The standard coding is used.
Legacy The legacy coding is used even in .NET 4.0 project.

.NET 4.0 accepts both codings but this might change in the future .NET versions. This is why we recommend using the default coding.