Page 1 of 1

Localisation problem

Posted: Fri Feb 22, 2013 12:42 pm
by 10545639
Hello,

i use TeeChart VCL version 2012 Build 2012.07.121105 and I use unit TeeGerman in my app, calling TeeSetGerman. But it does not translate the ChartEditor! It used to work with Version 2010. Has something changed here? Do I miss something? Thank you for your help.

Andreas

Re: Localisation problem

Posted: Mon Feb 25, 2013 11:23 am
by narcis
Hi Andreas,

You need to include TeeTranslate as well:

Code: Select all

uses
  TeeGerman, TeeTranslate;

procedure TForm1.FormCreate(Sender: TObject);
begin
  TeeSetGerman;
end;

Re: Localisation problem

Posted: Mon Feb 25, 2013 12:52 pm
by 10545639
OK, that's it. Thank You! I missed that, i am sorry...

Andreas

Re: Localisation problem

Posted: Mon Feb 25, 2013 1:06 pm
by narcis
Hi Andreas,

No problem, you're welcome!