WPSpell Dialogs Localization

  • Hello

    I have a simple application to test the localization of WPSpell dialogs.

    But localization of this dialogs doesnt work.

    I have loaded the XML from WPSpeel folder but nothing.

    Anyone can help me?

    Thanks

    Otavio

    • Offizieller Beitrag

    Hi,

    WPSpell uses the TWPLanguageControl only if the $define USEWPT_LANGCTRL is active in file WPSpell_Inc.INC.

    If the define is not active the language is selected using the gloab variable WPSpellCurrentLabelLanguage which can have this values:

    TWPSLanguages = (
    {$IFDEF SupportEnglish}lgEnglish{$ENDIF}
    {$IFDEF SupportSpanish}, lgSpanish{$ENDIF}
    {$IFDEF SupportItalian}, lgItalian{$ENDIF}
    {$IFDEF SupportFrench}, lgFrench{$ENDIF}
    {$IFDEF SupportGerman}, lgGerman{$ENDIF}
    {$IFDEF SupportDutch}, lgDutch{$ENDIF}
    {$IFDEF SupportPortogese}, lgPortogese{$ENDIF});

    (Defined in file WPSpell_Language.pas)

    Regards,

    Julian