mystrings.pp 389 B

123456789101112131415161718
  1. unit mystrings;
  2. {$mode objfpc}
  3. interface
  4. Resourcestring
  5. Header = 'Translation using resource strings';
  6. Paragraph = 'This text will be translated.';
  7. TranslateDirect = 'The direct API is used for this example.';
  8. TranslateJSON = 'A JSON object is used for this example.';
  9. TranslateURL = 'A URL is used for this example.';
  10. Button = 'Translate this page';
  11. implementation
  12. end.