French Export
French Export
We are using the lastest version of Tchart and if we call the Export dialog, the French translation is not correct. All the captions except the Format listbox are in English. We look at the TeeFrench.pas and TeeEnglish and also TeeSpanish and in the TeeFrench is't missing lots of translations.. Example the variable TeeMsg_ADOConnection is not in TeeFrench.pas but in the others.
Also the Print Preview as not been translated.
See the enclosed Project.
Also the Print Preview as not been translated.
See the enclosed Project.
- Attachments
-
- bugExportFrench.zip
- (58.13 KiB) Downloaded 611 times
Re: French Export
Hello,
Right. It seems there are some variables not translated to French.
If you are interested on helping us to improve the translation, please don't hesitate to let us know and we'll send you the necessary files for it.
Right. It seems there are some variables not translated to French.
If you are interested on helping us to improve the translation, please don't hesitate to let us know and we'll send you the necessary files for it.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: French Export
Yes sure no problem. Is there any king of reward for that ?
Re: French Export
Hello,
We are working on a new translation system to make easier for you to help us translate variables. We'll contact you as soon as we'll make a decision on this.
We are working on a new translation system to make easier for you to help us translate variables. We'll contact you as soon as we'll make a decision on this.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: French Export
Hi,
I've just installed the 2014 release (Build 201.10.140220) and while the translation seems to be there for the French language, the export dialog is still completely in English, except for the name of the export format (in the listbox)...
Did I miss something ???
Regards,
I've just installed the 2014 release (Build 201.10.140220) and while the translation seems to be there for the French language, the export dialog is still completely in English, except for the name of the export format (in the listbox)...
Did I miss something ???
Regards,
Re: French Export
Hello,
I've tried to reproduce it, but the following seems to work fine for me here:
I've tried to reproduce it, but the following seems to work fine for me here:
Code: Select all
uses EditChar, TeeTranslate, TeeFrench;
procedure TForm1.Button1Click(Sender: TObject);
begin
EditChart(Self, Chart1);
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
TeeSetFrench;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: French Export
Hi,
the use of teeTranslate was the key... without it, the translation isn't done... !
I've note 2 small glitchs in the french dialogs:
1) Checkbox size too small for translation 2) list box item not translated (in the filters dialog)
Thanks for you help !
the use of teeTranslate was the key... without it, the translation isn't done... !
I've note 2 small glitchs in the french dialogs:
1) Checkbox size too small for translation 2) list box item not translated (in the filters dialog)
Thanks for you help !
Re: French Export
Hi
Corrected for the next maintenance release. Thanks for reporting it.zyma wrote:1) Checkbox size too small for translation
You can declare set the HIDDEN variable as follows:zyma wrote:2) list box item not translated (in the filters dialog)
Code: Select all
uses EditChar, TeeTranslate, TeeFrench, TeeConst;
procedure TForm1.Button1Click(Sender: TObject);
begin
EditChart(Self, Chart1);
end;
procedure TForm1.FormCreate(Sender: TObject);
begin
TeeSetFrench;
TeeFrenchLanguage.Text:=TeeFrenchLanguage.Text+'HIDDEN=Caché'+NewLine;
end;
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: French Export
Hi,
Seems that all the constants declare since "6.0" through "v10" haven't been translated in French... Some seems to have been translate into some other language...
I supposed I need to compare the TeeConst unit and TeeFrench... and set the missing variables when calling TeeSetFrench ?? ..
Regards,
Seems that all the constants declare since "6.0" through "v10" haven't been translated in French... Some seems to have been translate into some other language...
I supposed I need to compare the TeeConst unit and TeeFrench... and set the missing variables when calling TeeSetFrench ?? ..
Regards,
Re: French Export
Hi,
Found 2 other small glitches (one is size, the other is captions not translated.)
I've started comparing the units... what is the best way to process, I'll translate and fix my code to fit my immediate needs (I really need to release the software) , but what's next... can we except a complete fix soon... ???
Regards,
Found 2 other small glitches (one is size, the other is captions not translated.)
I've started comparing the units... what is the best way to process, I'll translate and fix my code to fit my immediate needs (I really need to release the software) , but what's next... can we except a complete fix soon... ???
Regards,
- Attachments
-
- TeechartExportGlitch #4.png (23.67 KiB) Viewed 14852 times
-
- TeechartExportGlitch #3.png (24.49 KiB) Viewed 14850 times
Re: French Export
Hi,
But this isn't finished yet so I'm afraid the way to go for the moment is, as you say, to manually add the missing strings to the language file.
We are working on an utility that identifies what are the missing strings in a language, and helps you to populate them and creates the new unit for you.zyma wrote:I supposed I need to compare the TeeConst unit and TeeFrench... and set the missing variables when calling TeeSetFrench ?? ..
But this isn't finished yet so I'm afraid the way to go for the moment is, as you say, to manually add the missing strings to the language file.
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |
Re: French Export
I've set this label wider to fit it with the next maintenance release.zyma wrote:1) Checkbox size too small for translation
Thanks for reporting it.
Add this to TeeFrench.pas:zyma wrote:2) list box item not translated (in the filters dialog)
Code: Select all
'HIDDEN=Caché'+NewLine+
Best Regards,
Yeray Alonso Development & Support Steema Software Av. Montilivi 33, 17003 Girona, Catalonia (SP) | |
Please read our Bug Fixing Policy |