123456789101112131415161718 |
- 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.
|