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 Source | Tags

Use this sheet to control what strings are scanned from the resources files and how they are scanned. Tags are used to control the scan process.

Find tags from

Specifies where the tag is read from. Possible values are any combination of following values:

Value Description What tags are read
Comment Sisulizer reads tags from the comment attribute of the resource item Both exclude and information tags
Name Sisulizer reads tags from the name of the resource item Only exclude tags

By default both values are unchecked and you have to check them in order to take tag scanning in use.

Exclude tags

If you want to disable localization of a string, add an exclude tag to the comment field or include the tag into resource name. Use this edit to specify the strings(s) that are used a exclude tags.

Information tags

If you have checked Comment check box then Sisulizer reads information tags from the comment fields. The syntax is

[comment|attribute]...
attribute=MaxChars=mc|MaxPixels=mp|Expression="expression"

where comment is any string, mc is the maximum length of the translation in characters, mp is the maximum length of the translation is pixels, and expression is the combined string expression

Samples

The following item contains exclude tag inside the comment value.


<data name="String3" xml:space="preserve">
  <value>This is a sample</value>
  <comment>noslz</comment>
</data> 

The following item contains exclude tag inside the resource name.

<data name="String5noslz" xml:space="preserve">
  <value>This is a sample</value>
</data>

The following item contains maximum length of the string in characters.


<data name="String3" xml:space="preserve">
  <value>This is a sample</value>
  <comment>MaxChars=20</comment>
</data>

The following item contains maximum length of the string in characters and a comment value.


<data name="String3" xml:space="preserve">
  <value>This is a sample</value>
  <comment>MaxChars=20 This is a comment</comment>
</data> 

The following item contains a comment value and maximum length of the string in pixels.

<data name="String3" xml:space="preserve">
  <value>This is a sample</value>
  <comment>This is a comment MaxPixels=20</comment>
</data>