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.
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
4/23/2012
The new build comes with many new features. [more]
11/9/2011
Sisulizer version 3 out now. [more]
9/30/2011
You are looking for tips and tricks around Sisulizer? [more]
9/8/2011
Delphi Tage 2011 in Cologne are sold out! [more]
8/12/2011
Please us a download manager for your download. [more]
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.
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.
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.
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
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>