dklang icon indicating copy to clipboard operation
dklang copied to clipboard

DKLang Localization Package

Results 12 dklang issues
Sort by recently updated
recently updated
newest added

I have just updated to Delphi 11 and find that opening the "DKLang - Edit project constants..." menu item is now causing a "Range check error". I'm not sure that...

Embarcadero® Delphi 11 Version 28.0.47991.2819 Community Edition. I'm using Delphi11, then the console output: ![image](https://github.com/yktoo/dklang/assets/29728228/a0f515a4-b28c-4ab1-99c4-656fd86b88bc) and I use DKlang edit project constants, then show error dialog: Ranger check error ![image](https://github.com/yktoo/dklang/assets/29728228/372b40f5-1a8e-49d8-9649-d70bd7a2a270)

Hi, missing constants are annoying. But not being able to figure out which one is missing is even more annoying. That's why I made this adjustment in DKLang.pas : class...

I am trying to make one Android app with DKLang(truely the best component) for Unicode language. Language Id is 2117 (Bangla). In Windows all text property and constant are showing...

Even though I could install dklang under Delphi 10.3 (community ed.) it works only with Win32 and iOS 64 Bit, see screenshot. Its not possible to draw a dklang component...

Added `TryGetConstantValue` class method for retrieving a constant value without raising exceptions: ``` class function TDKLanguageManager.TryGetConstantValue( const aName: UnicodeString; out aValue: UnicodeString ): Boolean; ```

Delphi reports "An unexpected memory leak", 1xTMemoryStream after adding translations to TDKLTranslationStorage. Reporting enabled by ReportMemoryLeaksOnShutdown := True;

Dklang is compatible with delphi 10.2.1 ? i have a link error ( target ios11 ) duplicate symbol ___rsrc_N6RCDATA13dklang_constsE in: Formain.o [DCC Erreur fatale] F2588 Code d'erreur du lieur :...

Workaround DKLang.pas: function StreamReadUnicodeStr(Stream: TStream): UnicodeString; var w: Word; b: TBytes; begin w := StreamReadWord(Stream); if w=0 then result := '' else begin SetLength(b,w_2); Stream.ReadBuffer(b[0],w_2); result := TEncoding.Unicode.GetString(b); end; end;

I want to add my constant inside the .dkl_const.res using a custom function. What i want it's create a custom function where if the constant it's not fund, i can...