IdDsnCoreResourceStrings.pas 4.5 KB

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