• in WPSpell there is some hard-coded string which are not localized :

    In WPSpell_OptForm.pas lines 483 and 487 :

    btnEnableDCT.Caption := 'Enable'
    end
    else
    begin
    btnEnableDCT.Caption := 'Disable';

    should be

    btnEnableDCT.Caption := WPSpellLoadStr(tlblEnable);
    end
    else
    begin
    btnEnableDCT.Caption := WPSpellLoadStr(tlblDisable);

    Also if I use all USEWPT_LANGCTRL, WPSpell translations are missing from the WPLocalization_2013.xml found in the localization demo. Is it possible to add them ?