Updaten Sie auf Version 3

Sisulizer Version 3 ist ein kostenpflichtiges Update für alle Sisulizer 1.x und 2008/2010-Kunden.

Verwenden Sie noch Sisulizer 1.x oder Sisulizer 2008/2010?

Aktualisieren Sie jetzt auf Version 3 und nutzen Sie alle Neuigkeiten in Version 3.

Angebot gültig bis 20.5.2012

Die Angebote richten sich an kommerzielle und industrielle Kunden.
Alle Preisangaben sind netto.

Komplette Preisliste.

Suchen Sie die richtige Edition? Besuchen Sie unsere Vergleichstabelle

Bitte stimmen Sie für Sisulizer

Bitte klicken Sie diese Facebook-Schaltfläche, um diese Seite mit Ihren Freunden zu teilen

Share

(english) (german)


Drücken Sie bitte die Google +1-

Schaltfläche, um Sisulizer eine positive Bewertung in Googles neuem Bewertungssystem zu geben.

Vielen Dank.

Ausgewählte Kunden

Softwarelokalisierungs-News

Version 3 Build 331 veröffentlicht

23.4.2012

Der neue Build kommt mit vielen neuen Features. [mehr]

Top News: Version 3

9.11.2011

Sisulizer Version 3 ist da. [mehr]

Tipps & Tricks

30.9.2011

Sie suchen nach Tipps und Trick zum Thema Sisulizer? [mehr]

Delphi Tage

8.9.2011

Die Delphi Tage 2011 in Köln sind ausverkauft! [mehr]

Build 321 herunterladen

12.8.2011

Bitte verwenden Sie einen Download Manager. [mehr]

Property

Use this dialog to add a new property definition to Sisulizer's visual editor.

Name

Specifies the name of the property.

Default Value

Specifies the default value of the property. Use it if the file does not contain properties having the default value.

VCL: In VCL for example the most used values of properties are not saved. Those values are defined as default values. When a property of a certain component is read the default value will be used if no other value has been saved. The default Alignment property of TLabel control is taLeftJustify. This value is not written to the resource file. The other possible values are taCenter and taRightJustify. If value is one of those it will be written to the resource file.

Normally when you map your own Label-control the default value is usually taLeftJustify. On the other hand if you have a component that's default value should be laCenter you should define Default Value as 1 (the ordinal value of taCenter). If not defined Sisulizer will use taLeftJustify as a default value.

Type

Specifies the type of the property. Some resource formats such as VCL contain type information so Sisulizer can figure out the type of the property even it it belongs to a 3rd party component. However XAML (WPF) resource files, .xaml, do not contain type information. If you map a 3rd party WPF component and it contains a custom property that is not a string type, select the type of the property from the combo box.

.NET: This is visible only of the platform does not provide type information of the property. Windows Forms in .NET contain such information but WPF does not. However because a .NEt project can contains mixed Windows Forms and WPF data this type in show even on pure Windows Forms projects.

Mode

Specifies the mode of the property rule. Possible choices are:

Value Description
Excluded Property is ignored when scanning.
Included Property is included when scanning.
Structured data Property contains structured data. Use definitions to specify the data format.

Separate lines

Check this if you want to scan multi line text into separate rows in the project. By default this is unchecked and multi line text is scanned as one entity.

Data Structure Definition

Contains lines that specify the structure of data. Sisulizer can scan the following structured data:

Property Data Description
Combined strings Property contains a string that contains a combined string. Enter the regular expression describing the data in the line(s).
HTML Property contain an HTML file. Enter string 'HTML' to the first line.
XML

Property contain an XML data. Enter one line for each element or attribute that you want to localize. Each line contains the path and name of the element/attribute. Parent and child element are separated by @ character. Attribute name start with # characters. Do not include the name of the root element.

For example if we have the following XML data as property value:

<?xml version="1.0"?>
  <data caption="Name">
  <header>Header</header>
  <footer>Footer</footer>
  <sub author="Writer">
    <value>Value</value>
  </sub>
</data>

and we want to localize strings marked with bold typeface we need to enter following lines:

#caption
header
footer
sub@#author
sub@value