IdDsnResourceStrings.pas 1.9 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. {
  2. $Project$
  3. $Workfile$
  4. $Revision$
  5. $DateUTC$
  6. $Id$
  7. This file is part of the Indy (Internet Direct) project, and is offered
  8. under the dual-licensing agreement described on the Indy website.
  9. (http://www.indyproject.org/)
  10. Copyright:
  11. (c) 1993-2005, Chad Z. Hower and the Indy Pit Crew. All rights reserved.
  12. }
  13. {
  14. $Log$
  15. }
  16. {
  17. Rev 1.0 11/14/2002 02:19:02 PM JPMugaas
  18. }
  19. unit IdDsnResourceStrings;
  20. { This is only for resource strings that appear in the design-time editors in the main Indy package }
  21. interface
  22. //Here just so we can IFDEF some things for a Lazarus Workaround
  23. //This should make things a little easier for GNU Make.
  24. {$I IdCompilerDefines.inc}
  25. resourcestring
  26. {Binding Editor stuff}
  27. {
  28. Note to translators - Please Read!!!
  29. & symbol before a letter or number. This is rendered as that chractor being
  30. underlined. In addition, the charactor after the & symbol along with the ALT
  31. key enables a user to move to that control. Since these are on one form, be
  32. careful to ensure that the same letter or number does not have a & before it
  33. in more than one string, otherwise an ALT key sequence will be broken.
  34. }
  35. {Design time SASLList Hints}
  36. RSADlgSLMoveUp = 'Move Up';
  37. RSADlgSLMoveDown = 'Move Down';
  38. RSADlgSLAdd = 'Add';
  39. RSADlgSLRemove = 'Remove';
  40. //Caption that uses format with component name
  41. RSADlgSLCaption = 'Editing SASL List for %s';
  42. RSADlgSLAvailable = '&Available';
  43. RSADlgSLAssigned = 'A&ssigned (tried in order listed)';
  44. {Note that the Ampersand indicates an ALT keyboard sequence}
  45. RSADlgSLEditList = 'Edit &List';
  46. {$IFDEF FPC}
  47. //This is part of a workaround for the Lazarus IDE Toolbar being
  48. //unable to scroll.
  49. RSProt = ' Protocols';
  50. RSProtam = ' Protocols (am)';
  51. RSProtnz = ' Protocols (nz)';
  52. RSMappedPort = ' Mapped Port';
  53. RSEncoder = ' Encoder';
  54. RSDecoder = ' Decoder';
  55. {$ENDIF}
  56. implementation
  57. end.