mirror of
https://gitlab.com/freepascal.org/fpc/pas2js.git
synced 2025-04-06 21:07:47 +02:00
19 lines
389 B
ObjectPascal
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.
|
|
|