Click here to Skip to main content
15,887,436 members
Articles / Programming Languages / Delphi

Enabling TLang to Handle More Than 17 Translations: A Workaround for a Regression Bug in Delphi XE3

Rate me:
Please Sign up or sign in to vote.
0.00/5 (No votes)
15 Jan 2013CPOL1 min read 6.7K   1  
With TLang, you can define a collection of native strings to be localized and the corresponding translations to a particular language.

I recently had to localize a FireMonkey application and for that, I aimed to use the TLang component. With TLang, you can define a collection of native strings to be localized and the corresponding translations to a particular language. To my surprise, the component was allowing to store a maximum of 17 translations for the whole application. So, what about the other strings that need localization?

It seems there’s a regression issue from Delphi XE2 to Delphi XE3 that is preventing TLang to store more than 17 translations. You can even find an entry for this in Embarcadero Quality Central, for which no workaround or fix has been provided up to this date.

I found a programmatic workaround for this issue. Basically, the native strings and the translations could be loaded from text files in which each line will have the form:

NativeString1=Translation1
NativeString2=Translation2
NativeString3=Translation3
…………
NativeStringN=TranslationN

You will need one file containing the native strings and the translations per language. These files can contain as many lines as you wish (certainly more than 17). In order to load those files into an existing TLang component, you can use the function below:

Python
procedure LoadTranslationsFromFile(aLangCode: string; aFileName: string; aLang: TLang);
var
  Translations: TStrings;
begin
  if (aLangCode <> '') and
     (FileExists(aFileName)) and
     (Assigned(aLang)) then
  begin
    Translations:= TStringList.Create;
    Translations.LoadFromFile(aFileName);
    aLang.Resources.AddObject(aLangCode, Translations);
  end;
end;

For an example of how to use such function, see below:

Python
procedure TForm1.Button1Click(Sender: TObject);
begin
  LoadTranslationsFromFile('ES', 'C:\Temp\Lang_Test_ES.txt', Lang1);
  LoadTranslationsFromFile('EN', 'C:\Temp\Lang_Test_EN.txt', Lang1);
end;

Hopefully, this bug will be fixed in the near future; but meanwhile you can use this workaround to handle more than 17 translations with the TLang component.

This article was originally posted at http://www.yanniel.info/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



Comments and Discussions

 
-- There are no messages in this forum --