Localisation problem

TeeChart VCL for Borland/CodeGear/Embarcadero RAD Studio, Delphi and C++ Builder.
Post Reply
macadamia
Newbie
Newbie
Posts: 4
Joined: Fri Jun 22, 2007 12:00 am

Localisation problem

Post by macadamia » Fri Feb 22, 2013 12:42 pm

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

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Localisation problem

Post by Narcís » Mon Feb 25, 2013 11:23 am

Hi Andreas,

You need to include TeeTranslate as well:

Code: Select all

uses
  TeeGerman, TeeTranslate;

procedure TForm1.FormCreate(Sender: TObject);
begin
  TeeSetGerman;
end;
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

macadamia
Newbie
Newbie
Posts: 4
Joined: Fri Jun 22, 2007 12:00 am

Re: Localisation problem

Post by macadamia » Mon Feb 25, 2013 12:52 pm

OK, that's it. Thank You! I missed that, i am sorry...

Andreas

Narcís
Site Admin
Site Admin
Posts: 14730
Joined: Mon Jun 09, 2003 4:00 am
Location: Banyoles, Catalonia
Contact:

Re: Localisation problem

Post by Narcís » Mon Feb 25, 2013 1:06 pm

Hi Andreas,

No problem, you're welcome!
Best Regards,
Narcís Calvet / Development & Support
Steema Software
Avinguda Montilivi 33, 17003 Girona, Catalonia
Tel: 34 972 218 797
http://www.steema.com
Image Image Image Image Image Image
Instructions - How to post in this forum

Post Reply