IdDsnCoreResourceStrings.pas 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  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.5 1/29/2004 8:54:30 AM JPMugaas
  18. { Removed myself from the distribution Team Chairperson entry as I am resigning
  19. { from that role.
  20. }
  21. {
  22. Rev 1.4 10/15/2003 10:11:46 PM DSiders
  23. Added resource string for About box credits.
  24. Corrected spelling error in comments.
  25. }
  26. {
  27. { Rev 1.3 6/16/2003 12:01:44 PM JPMugaas
  28. { Updated copyright to say 2003.
  29. }
  30. {
  31. { Rev 1.2 6/8/2003 05:46:58 AM JPMugaas
  32. { The kitchen sink has now been implemented.
  33. }
  34. {
  35. { Rev 1.1 1/15/2003 08:03:56 AM JPMugaas
  36. { Updated with new website address.
  37. }
  38. {
  39. { Rev 1.0 11/13/2002 08:43:24 AM JPMugaas
  40. }
  41. unit IdDsnCoreResourceStrings;
  42. {
  43. Note: This unit is for resource strings that are used in the Core Design-Time package
  44. and NOT any design-time packages. This is to prevent design-time resource strings
  45. from being linked into the Run-Time only package.
  46. }
  47. interface
  48. const
  49. IndyPitCrew = 'Kudzu (Chad Z. Hower)'#13#10
  50. + 'and the'#13#10
  51. + 'Indy Pit Crew';
  52. resourcestring
  53. { About Box stuff }
  54. RSAAboutFormCaption = 'About';
  55. RSAAboutBoxCompName = 'Internet Direct (Indy)';
  56. RSAAboutMenuItemName = 'About Internet &Direct (Indy) %s...';
  57. RSAAboutBoxVersion = 'Version %s';
  58. RSAAboutBoxCopyright = 'Copyright (c) 1993 - 2023'#13#10
  59. + IndyPitCrew;
  60. RSAAboutBoxPleaseVisit = 'For the latest updates and information please visit:';
  61. RSAAboutBoxIndyWebsite = 'http://www.indyproject.org/'; {Do not Localize}
  62. RSAAboutCreditsCoordinator = 'Project Coordinator';
  63. RSAAboutCreditsCoCordinator = 'Project Co-Coordinator';
  64. RSAAboutCreditsDocumentation = 'Documentation Coordinator';
  65. RSAAboutCreditsDemos = 'Demos Coordinator';
  66. RSAAboutCreditsRetiredPast = 'Retired/Past Contributors';
  67. RSAAboutCreditsIndyCrew = 'The Indy Pit Crew';
  68. RSAAboutKitchenSink = IndyPitCrew+#10#13+'present the'#10#13'Kitchen Sink';
  69. {Binding Editor stuff}
  70. {
  71. Note to translators - Please Read!!!
  72. For all the constants except RSBindingFormCaption, there may be an
  73. & symbol before a letter or number. This is rendered as that character being
  74. underlined. In addition, the character after the & symbol along with the ALT
  75. key enables a user to move to that control. Since these are on one form, be
  76. careful to ensure that the same letter or number does not have a & before it
  77. in more than one string, otherwise an ALT key sequence will be broken.
  78. }
  79. RSBindingFormCaption = 'Binding Editor';
  80. RSBindingNewCaption = '&New';
  81. RSBindingDeleteCaption = '&Delete';
  82. //RSBindingAddCaption = '&Add';
  83. RSBindingRemoveCaption = '&Remove';
  84. RSBindingLabelBindings = '&Bindings';
  85. RSBindingHostnameLabel = '&IP Address';
  86. RSBindingPortLabel = '&Port';
  87. RSBindingIPVerLabel = 'IP &Version';
  88. RSBindingIPV4Item = 'IPv&4 (127.0.0.1)';
  89. RSBindingIPV6Item = 'IPv&6 (::1)';
  90. {Design time SASLList Hints}
  91. RSADlgSLMoveUp = 'Move Up';
  92. RSADlgSLMoveDown = 'Move Down';
  93. RSADlgSLAdd = 'Add';
  94. RSADlgSLRemove = 'Remove';
  95. //Caption that uses format with component name
  96. RSADlgSLCaption = 'Editing SASL List for %s';
  97. RSADlgSLAvailable = '&Available';
  98. RSADlgSLAssigned = 'A&ssigned (tried in order listed)';
  99. {Note that the Ampersand indicates an ALT keyboard sequence}
  100. RSADlgSLEditList = 'Edit &List';
  101. //Display item constants
  102. RSBindingAll = 'All'; //all IP addresses
  103. RSBindingAny = 'Any'; //any port
  104. {Standard dialog stock strings}
  105. RSOk = 'OK';
  106. RSCancel = 'Cancel';
  107. RSHelp = '&Help';
  108. // IdRegister
  109. RSRegIndyClients = 'Indy Clients';
  110. RSRegIndyServers = 'Indy Servers';
  111. RSRegIndyIntercepts = 'Indy Intercepts';
  112. RSRegIndyIOHandlers = 'Indy I/O Handlers';
  113. RSRegIndyMisc = 'Indy Misc';
  114. implementation
  115. end.