pas2js/demo/translate/mystrings.pp
2019-07-15 12:58:03 +00:00

19 lines
389 B
ObjectPascal

unit mystrings;
{$mode objfpc}
interface
Resourcestring
Header = 'Translation using resource strings';
Paragraph = 'This text will be translated.';
TranslateDirect = 'The direct API is used for this example.';
TranslateJSON = 'A JSON object is used for this example.';
TranslateURL = 'A URL is used for this example.';
Button = 'Translate this page';
implementation
end.