summaryrefslogtreecommitdiff
path: root/fpcsrc/packages/fpgtk/src/editor/gtkdeftexts.pp
blob: d7b255d0cb482b911f2dfbb9b3f4401efc306e35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{$mode objfpc}{$h+}
unit GtkDefTexts;

interface

resourcestring

// SettingsRec
  sOptions = 'Options';
  sOk = '  Ok  ';
  sCancel = 'Cancel';
  sExtention = 'Extention';
  sSaveonclose = '_Save on close';
  sFileFormat = 'File format';
  sMRUcount = 'MRU count';
  sComponentBin = 'Component Binary';
  sHintCompBin = 'Streaming of the component';
  sComponentText = 'Component Text';
  sHintCompText = 'Converting the streamed object to text (Delphi compatible)';
  sHomeText = 'Private format';
  sHintHomeText = 'Text format not compatible with streaming or Delphi';
  sProgressWindow = 'S_how progress';

// ProgWin
  ProgressWinTitle = 'Progres generation unit';

// GtkEditor
  sEditorTitle = 'Pascal GTK editor';
  sComponent = 'Component';
  sObject = 'Object';
  sDefinition = 'Definition';
  sParameters = 'Parameters';
  sRead = 'Read';
  sWrite = 'Write';
  sUnitName = 'Unit name';
  sUseslist = 'Uses list';
  sGtkPrefix = 'Gtk prefix';
  sName = 'Name';
  sInherits = 'Inherits from';
  sGtkName = 'Gtk name';
  sCreateObject = 'Create object';
  sWithPointer = 'With pointer';
  sCreateParams = 'Create params';
  sGtkFunctionName = 'Gtk func name';
  sType = 'Type';
  sTypes = 'Types';
  sPascalType = 'Pascal type';
  sSection = 'Section';
  // section types
  sPrivate = 'Private';
  sProtected = 'Protected';
  sPublic = 'Public';
  sPublished = 'Published';
  // Property types
  sField = 'Field';
  sProperty = 'Property';
  sFunction = 'Function';
  sProcedure = 'Procedure';
  sSignal = 'Signal';
  sHelperproc = 'Helperproc';
  sHelperFunc = 'HelperFunc';
  sSignalType = 'SignalType';
  sDeclarations = 'Declarations';
  sTypeDecl = 'TypeDecl';
  sConstructor = 'Constructor';
  sDestructor = 'Destructor';
  sInitialization = 'Initialization';
  sFinalization = 'Finalization';
  sCode = 'Code';
  // function Types
  sOverride = 'Override';
  sVirtual = 'Virtual';
  sDynamic = 'Dynamic';
  sAbstract = 'Abstract';
  sCDecl = 'CDecl';
  sOverload = 'Overload';
  sReintroduce = 'Reintroduce';
  // Parameter types
  sNothing = 'Nothing';
  sVar = 'Var';
  sConst = 'Const';
  // Property read types
  sGtkFunction = 'Gtk function';
  sObjectField = 'Object field';
  sObjectFunction = 'Object function';
  sNotImplemented= 'Not implemented';
  sGtkMacro = 'Gtk macro';
  sExistingFunc = 'Existing function';
  // Property write types (extra)
  sGtkProcedure= 'Gtk Procedure';
  sObjectProcedure= 'Object Procedure';
  sExistingProc = 'Existing procedure';
  // Other
  sConvert = 'Convert';
  // Menu
  smFile = '_File';
  smFileNew = '_New';
  smFileOpen = '_Open';
  smFileReopen = '_Reopen';
  smFileSave = '_Save';
  smFileSaveAs = 'Save _as';
  smFileExit = 'E_xit';
  smTools = '_Tools';
  smToolsGenerate = '_Generate';
  smToolsOptions = '_Options';
  smHelp = '_Help';
  smHelpAbout = '_About';
  smHelpInfo = '_Info';
  smEdit = '_Edit';
  smEditObject = '_Object';
  smEditProperty = '_Property';
  smEditParameter = 'P_arameter';

// About
  sAboutTitle = 'About';
  sAbout1 = 'Editor to generate FPGTK unit,';
  sAbout2 = 'Or similar units.';
  sAboutVersion  = 'Version: 1.0';
  sAboutDesigner = 'Designer: Luk Vandelaer';

// Help
  sInfoTitle = 'Help';
  sInfoMessage = 'Not yet implemented (searching for FPDoc and help display component)';

// ButtonRow
  sNew = 'New';
  smAdd = '_Add';
  smCopy = '_Copy';
  smDelete = '_Delete';
  smUp = 'Move _Up';
  smDown = 'Move D_own';
  smFirst = '_First';
  smPrevious = '_Previous';
  smNext = '_Next';
  smLast = '_Last';

implementation

end.