We have the application in delphi and now we are implementing language translation feature. We added the code in core to translate the strings which are declared in ResourceString. It is working fine but strings which is declared in Array not translated. Example
resourcestring
Error_Text = 'Invalid Value';
This is Working fine.
Const
ERROR_TYPE : Array[0..2] of String = ('Invalid Name', 'Invalid Age', 'Invalid Address');
How do i add these array values into resourcestring?