Lokalisieren in drei einfachen Schritten
.NET, Delphi, Java, Databases, Android, iOS, C/C++ ...
Die Angebote richten sich an kommerzielle und industrielle Kunden.
Alle Preisangaben sind netto.
Komplette Preisliste.
Suchen Sie die richtige Edition? Besuchen Sie unsere Vergleichstabelle
Sisulizer Version 4 ist ein kostenpflichtiges Update für alle Sisulizer Kunden.
Verwenden Sie noch Sisulizer 3.x, Sisulizer 2008/2010 oder Sisulizer 1.x?
Aktualisieren Sie jetzt auf Version 4 und nutzen Sie alle Neuigkeiten in Version 4.
Version 4 Build 374 veröffentlicht
30.11.2018
Der neue Build kommt mit vielen neuen Features. [mehr]
Tutorials
5.3.2019
Tutorials erneuert [...]
.NET Support erweitert
14.6.2018
Neu im März 2018: [...]
Sisulizer 4 Build 366
1.3.2017
Build 366 - bereit für Visual Studio 2017 [...]
10 Jahre Sisulizer
5.8.2016
Jetzt feiern und sparen [...]
um internationalen Kunden Software in ihrer Sprache anzubieten
um Inhouse-Softwarelösungen zu übersetzen
um mehrsprachige Anwendungen für Firmenkunden zu erstellen
als Lokalisierungs-Dienstleister, um Kundensoftware zu übersetzen
um Software für Behörden zu lokalisieren
um Schulungssoftware an Universitäten zu übersetzen
um Benutzeroberflächen elektronischer Geräte zu lokalisieren
um Software im Medizinbereich zu übersetzen
um Software für Bergbauunternehmen zu lokalisieren
um mehrsprachige Steuerungssoftware im Maschinenbau zu erstellen
You should never hard-code date values. Besides different date separators the date order differs between countries. In the short date format, the USA uses mm/dd/yyyy where m is the month, d is the day, and y is the year. Germany uses dd.mm.yyyy. If you do not take care of this, for example, in Visual Basic, a date string like 12/9/2006 can be interpreted as 9th December or 12th September.
If you use medium or long date formats, the day and month names must also be translated. If you use format routines, you should ensure that your development system supports date format in the way that you require.
If you need to calculate with dates, store them in a format that is system independent like the ISO 8601 format yyyy-mm-ddThh:mm:ss; you can also convert the dates to a system-independent date number format, such as date serial. This makes dates sorting easy.
Be sure to store dates internally and in files without using a format. Use the data type for your programming language. If you allow user input, collect the day, month and year in separate fields, and internally build a date data type from these fields.
When you display dates, format them with the right system settings. The Windows API provides functions to get the appropriate values. In .Net, check the culture name space. When you allow user input, make sure that the user knows which format is required.