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]

MFC's resource DLLs

MFC 7 and later has a build in feature using resource DLLs. When a MFC applications starts MFC is looking for a possible resource DLL from the same directory where the original .exe or .dll is located. If MFC can find this it uses resources of the resource DLL instead of the original PE file. Resource DLLs are named ApplicationNameXXX.dll, where ApplicationName is the name of the .exe or .dll using MFC, and XXX is the three-letter code for the language of the resources. For example MyApplicationENU.dll is an English (United States) DLL and MyApplicationDEU.dd is German (Germany) DLL.

How to create resource DLLs

To make Sisulizer to create localized resource DLLs for your MFC file right click the source name on the project tree and choose Properties. Check Resource DLL files check box.

Initial language

MFC attempts to load the resource DLL for each of the following languages in order, stopping when it finds one:

  1. The current user's default UI language, as returned from the GetUserDefaultUILanguage() Win32 API. (Windows 2000 or later only)
  2. The current user's default UI language, without any specific sublanguage (that is, ENC [Canadian English] becomes ENU [U.S. English]). (Windows 2000 or later only)
  3. The system's default UI language. On Windows 2000 or higher, this is returned from the GetSystemDefaultUILanguage() API. On other platforms, this is the language of the OS itself.
  4. The system's default UI language, without any specific sublanguage.
  5. A "fake" language with the 3-letter code LOC.

If MFC does not find any satellite DLLs, it uses whatever resources are contained in the application itself.

As an example, suppose that an application MyApplication.exe uses MFC and is running on a Windows XP. The system UI language is ENU [English (United States)] and the current user's UI language is set to DES [German (Switzerland)]. MFC will look for the following DLLs in the following order:

  1. MyApplicationDES.dll (user's UI language).
  2. MyApplicationDEU.dll (user's UI language without the sublanguage, in this example German (Germany).
  3. MyApplicationENU.dll (system's UI language).
  4. MyApplicationLOC.dll.

If none of these DLLs are found, MFC will just use the resources in MyApplication.exe

Runtime language change

It is not practical to implement runtime language change in MFC. It is possible but not without significant need to modify your existing code.