gtkdeftexts.pp 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. {$mode objfpc}{$h+}
  2. unit GtkDefTexts;
  3. interface
  4. resourcestring
  5. // SettingsRec
  6. sOptions = 'Options';
  7. sOk = ' Ok ';
  8. sCancel = 'Cancel';
  9. sExtention = 'Extention';
  10. sSaveonclose = '_Save on close';
  11. sFileFormat = 'File format';
  12. sMRUcount = 'MRU count';
  13. sComponentBin = 'Component Binary';
  14. sHintCompBin = 'Streaming of the component';
  15. sComponentText = 'Component Text';
  16. sHintCompText = 'Converting the streamed object to text (Delphi compatible)';
  17. sHomeText = 'Private format';
  18. sHintHomeText = 'Text format not compatible with streaming or Delphi';
  19. sProgressWindow = 'S_how progress';
  20. // ProgWin
  21. ProgressWinTitle = 'Progres generation unit';
  22. // GtkEditor
  23. sEditorTitle = 'Pascal GTK editor';
  24. sComponent = 'Component';
  25. sObject = 'Object';
  26. sDefinition = 'Definition';
  27. sParameters = 'Parameters';
  28. sRead = 'Read';
  29. sWrite = 'Write';
  30. sUnitName = 'Unit name';
  31. sUseslist = 'Uses list';
  32. sGtkPrefix = 'Gtk prefix';
  33. sName = 'Name';
  34. sInherits = 'Inherits from';
  35. sGtkName = 'Gtk name';
  36. sCreateObject = 'Create object';
  37. sWithPointer = 'With pointer';
  38. sCreateParams = 'Create params';
  39. sGtkFunctionName = 'Gtk func name';
  40. sType = 'Type';
  41. sTypes = 'Types';
  42. sPascalType = 'Pascal type';
  43. sSection = 'Section';
  44. // section types
  45. sPrivate = 'Private';
  46. sProtected = 'Protected';
  47. sPublic = 'Public';
  48. sPublished = 'Published';
  49. // Property types
  50. sField = 'Field';
  51. sProperty = 'Property';
  52. sFunction = 'Function';
  53. sProcedure = 'Procedure';
  54. sSignal = 'Signal';
  55. sHelperproc = 'Helperproc';
  56. sHelperFunc = 'HelperFunc';
  57. sSignalType = 'SignalType';
  58. sDeclarations = 'Declarations';
  59. sTypeDecl = 'TypeDecl';
  60. sConstructor = 'Constructor';
  61. sDestructor = 'Destructor';
  62. sInitialization = 'Initialization';
  63. sFinalization = 'Finalization';
  64. sCode = 'Code';
  65. // function Types
  66. sOverride = 'Override';
  67. sVirtual = 'Virtual';
  68. sDynamic = 'Dynamic';
  69. sAbstract = 'Abstract';
  70. sCDecl = 'CDecl';
  71. sOverload = 'Overload';
  72. sReintroduce = 'Reintroduce';
  73. // Parameter types
  74. sNothing = 'Nothing';
  75. sVar = 'Var';
  76. sConst = 'Const';
  77. // Property read types
  78. sGtkFunction = 'Gtk function';
  79. sObjectField = 'Object field';
  80. sObjectFunction = 'Object function';
  81. sNotImplemented= 'Not implemented';
  82. sGtkMacro = 'Gtk macro';
  83. sExistingFunc = 'Existing function';
  84. // Property write types (extra)
  85. sGtkProcedure= 'Gtk Procedure';
  86. sObjectProcedure= 'Object Procedure';
  87. sExistingProc = 'Existing procedure';
  88. // Other
  89. sConvert = 'Convert';
  90. // Menu
  91. smFile = '_File';
  92. smFileNew = '_New';
  93. smFileOpen = '_Open';
  94. smFileReopen = '_Reopen';
  95. smFileSave = '_Save';
  96. smFileSaveAs = 'Save _as';
  97. smFileExit = 'E_xit';
  98. smTools = '_Tools';
  99. smToolsGenerate = '_Generate';
  100. smToolsOptions = '_Options';
  101. smHelp = '_Help';
  102. smHelpAbout = '_About';
  103. smHelpInfo = '_Info';
  104. smEdit = '_Edit';
  105. smEditObject = '_Object';
  106. smEditProperty = '_Property';
  107. smEditParameter = 'P_arameter';
  108. // About
  109. sAboutTitle = 'About';
  110. sAbout1 = 'Editor to generate FPGTK unit,';
  111. sAbout2 = 'Or similar units.';
  112. sAboutVersion = 'Version: 1.0';
  113. sAboutDesigner = 'Designer: Luk Vandelaer';
  114. // Help
  115. sInfoTitle = 'Help';
  116. sInfoMessage = 'Not yet implemented (searching for FPDoc and help display component)';
  117. // ButtonRow
  118. sNew = 'New';
  119. smAdd = '_Add';
  120. smCopy = '_Copy';
  121. smDelete = '_Delete';
  122. smUp = 'Move _Up';
  123. smDown = 'Move D_own';
  124. smFirst = '_First';
  125. smPrevious = '_Previous';
  126. smNext = '_Next';
  127. smLast = '_Last';
  128. implementation
  129. end.