File: lazdemsg.pp

package info (click to toggle)
lazarus 2.0.0%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 214,460 kB
  • sloc: pascal: 1,862,622; xml: 265,709; cpp: 56,595; sh: 3,008; java: 609; makefile: 535; perl: 297; sql: 222; ansic: 137
file content (271 lines) | stat: -rw-r--r-- 11,025 bytes parent folder | download | duplicates (6)
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
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
{
 ***************************************************************************
 *                                                                         *
 *   This source is free software; you can redistribute it and/or modify   *
 *   it under the terms of the GNU General Public License as published by  *
 *   the Free Software Foundation; either version 2 of the License, or     *
 *   (at your option) any later version.                                   *
 *                                                                         *
 *   This code is distributed in the hope that it will be useful, but      *
 *   WITHOUT ANY WARRANTY; without even the implied warranty of            *
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU     *
 *   General Public License for more details.                              *
 *                                                                         *
 *   A copy of the GNU General Public License is available on the World    *
 *   Wide Web at <http://www.gnu.org/copyleft/gpl.html>. You can also      *
 *   obtain it by writing to the Free Software Foundation,                 *
 *   Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA.   *
 *                                                                         *
 ***************************************************************************

  Author: Michael Van Canneyt
}
unit LazDEMsg;

{$mode objfpc}{$h+}

interface

ResourceString

{ ---------------------------------------------------------------------
    Strings which appear in the program
  ---------------------------------------------------------------------}
  SAboutFormCaption = 'About this application';
  sLazDocEditor     = 'Lazarus Documentation Editor';
  sCopyRight1       = 'This application is (c) by  Michael Van Canneyt and the Lazarus team';
  sCopyRight2       = 'It is released under the terms of the  GENERAL PUBLIC LICENSE:';


  SFileTemplate = 'template.xml';
  //SFPDE        = 'Free Pascal documentation editor';
  //SName        = 'Name';
  //SOK          = ' OK ';
  //SCancel      = ' Cancel ';
  SNewDocument = 'New document';
  SNew         = 'New';
  SInsertLink  = 'Insert link';
  SInsertTable = 'Insert table';
  SInsertBulletedList = 'Insert bulleted list';
  SInsertNumberedList = 'Insert numbered list';
  sItemsCount = 'Items count';
  SInsertPrintShortLink = 'Insert short description link';
  SInsertExampleCode = 'Insert example code';
  SForFile     = ' in file ';
  SForPackage  = ' in package ';
  SForModule   = ' in module ';
  SForTopic    = ' in topic ';
  SLinkTarget  = 'Link target';
  SLinkText    = 'Link text';
  STableRows   = 'Rows';
  STableCols   = 'Columns';
  STableHeader = 'Use header row';
  SPackages    = 'Packages';
  SFileModified = 'Document "%s" was modified, would you like to save it?';
  SDeletePackage = 'Are you sure you want to delete package "%s" ?';
  SDeleteModule  = 'Are you sure you want to delete module "%s" ?';
  SDeleteTopic  = 'Are you sure you want to delete topic "%s" ?';
  //SDeleteElement = 'Are you sure you want to delete element "%s" ?';
  SRenamePackage = 'Rename package';
  SRenameModule  = 'Rename module';
  SRenameTopic   = 'Rename topic';
  SRenameElement = 'Rename element';
  SNoElement = 'No element selected';
  SDataForElement = 'Documentation for element "%s":';
  SShortDescription = 'Short';
  SErrors = 'Errors';
  SSeeAlso = 'See Also';
  SCodeExample = 'Example code File';
  SMakeSkelFromSource = 'Make new document from source file';
  SSkelErrorWithFile = 'makeskel reported an error (%d). Try to load produced file anyway ?';
  SSkelErrorWithoutFile = 'makeskel reported an error (%d) and produced no file.';
  SLinksTo = ' links to ';
  SHintEditElementLink = 'Edit element link';
  //SOptConfirmDelete = 'Confirm node deletion';
  //SOptCreateBackup = 'Backup existing files';
  //SOptSkipEmptyNodes = 'Do not create empty nodes';
  //SOptBackupExtension = 'Backup file extension';
  //SOptDefaultExtension = 'Default extension for new files';
  //SOptMaxRecentUsed = 'Items in MRU list';
  //SAboutText = 'fpdoc editor 1.0'#10'(c) 2002 Michael Van Canneyt'#10+
  //             'See http://www.freepascal.org/';
  SFileStructure  = 'Documentation structure';
  SModuleElements = 'Elements for selected node';

  sNewFile               = 'New file';
  sNewPackage            = 'New package';
  sNewModule             = 'New module';
  sNewElement            = 'New element';
  sNewTopic              = 'New topic';
  sNodeName              = 'Node name';

  //Build Form strings
  SAddDescriptionFile    = 'Select a new description file';
  SEditDescriptionFile   = 'Change description file';
  SSelectOutputFile      = 'Select output file name';
  SSelectOutputDirectory = 'Select output directory';
  SUsingCommand          = 'Building docs using command: ';
  SErrFPDoc              = 'Building failed with exit code %d. Please check log.';
  SBuildOK               = 'Documentation successfully built.';
  sBuildDocumentation    = 'Build documentation';
  sPackage               = '&Package';
  sFormat                = '&Format';
  sOutput                = '&Output';
  sCreateContentFile     = 'Create cont&ent file';
  sBuild                 = '&Build';
  sLoad                  = '&Load';
  sSave                  = '&Save';
  sClose                 = '&Close';
  sAdd                   = '&Add';
  sDelete                = '&Delete';
  sEdit                  = '&Edit';
  sAddAll                = 'Add All';
  sDescription           = 'Description';
  sSourcesCapt           = 'Sources';
  sOtherOptions          = 'Other options';
  sBuildOutput           = 'Build output';
  sHideProtectedMethods  = '&Hide protected methods';
  sImportContentFile     = 'Import content file';
  sTargetOS              = 'Target OS';
  sCPU                   = 'CPU';
  sAdditionalParams      = 'Additional parameters for fpdoc';
  sShowPrivateMethods    = 'Show p&rivate methods';
  sWarnIfNoDocumentationNodeFound = 'Warn if no documentation node found';

  sSaveBeforeBuildQuestion = 'You have unsaved changes in "%s".%s' +
                             'They should be saved in order to be visible in built documentation. Save them?';
{ ---------------------------------------------------------------------
    Menu strings
  ---------------------------------------------------------------------}

  SMenuFile              = '&File';
  SMenuFileNew           = '&New';
  SMenuFileOpen          = '&Open';
  SMenuFileNewFromFile   = 'New from fi&le';
  SMenuFileSave          = '&Save';
  SMenuFileSaveAs        = 'Save &as';
  SMenuFileClose         = '&Close';
  SMenuFileRecent        = '&Recent';
  SMenuFileQuit          = '&Quit';
  
  SMenuInsert            = '&Insert';
  SMenuInsertPackage     = '&Package';
  SMenuInsertModule      = '&Module';
  SMenuInsertTopic       = 'T&opic';
  SMenuInsertElement     = '&Element';
  SMenuInsertLink        = '&Link';
  SMenuInsertTable       = '&Table';
  SMenuInsertShortDescLink  = '&Short description link';
  SMenuInsertQuickLink      = '&Quick Link';
  SMenuInsertPrintShort = 'Insert short desc link';
  SMenuInsertList    = 'List';
  SMenuInsertBulletedList = 'Bulleted list';
  SMenuInsertNumberedList = 'Numbered list';

  SMenuFormat           = 'Format';
  SMenuFormatBold       = '&Bold';
  SMenuFormatUnderLine  = '&Underline';
  SMenuFormatItalics    = '&Italic';
  SMenuFormatVariable   = '&Variable';
  SMenuFormatRemark     = '&Remark';
  SMenuFormatParaGraph  = '&Paragraph';
  SMenuFormatCode       = '&Code';
  SMenuFormatFile       = '&File';

  SMenuRename           = 'Rename';
  SMenuDelete           = 'Delete';
  SMenuExpandAll        = 'Expand All';
  SMenuCollapseAll      = 'Collapse All';

  SMenuExtra            = '&Extra';
  SMenuExtraOptions     = '&Options';
  SMenuExtraBuild       = '&Build';

  SMenuHelp             = '&Help';
  SMenuHelpAbout        = '&About ...';
    
{ ---------------------------------------------------------------------
    Hint strings  
  ---------------------------------------------------------------------}
  SHintFileNew         = 'New file';
  SHintFileOpen        = 'Open file';
  SHintFileSave        = 'Save file';
  SHintFileSaveAs      = 'Save file as';
  SHintMenuNewFromFile = 'New from file ...';
  SHintFileClose       = 'Close current file';
  SHintFileExit        = 'Close doc editor';

  SHintFormatBold       = 'Bold';
  SHintFormatItalics    = 'Italic';
  SHintFormatUnderLine  = 'Underline';
  SHintFormatRemark     = 'Remark';
  SHintFormatVariable   = 'Variable';
  SHintFormatCode       = 'Code';
  SHintFormatFile       = 'File';

  SHintInsertPackage = 'New package';
  SHintInsertModule  = 'New module';
  SHintInsertTopic   = 'New topic';
  SHintInsertElement = 'New element';
  SHintInsertLink    = 'Insert link';
  ShintInsertTable   = 'Insert table';
  SHintInsertPrintShortLink = 'Insert a short description link';
  SHintInsertBulletedList = 'Insert bulleted list';
  SHintInsertNumberedList = 'Insert numbered list';

  SMarkSelection     = 'Mark selection %s';

  SHMenuExtraOptions = 'Show options dialog';
  SHMenuHelpAbout        = 'About this program';

  SHintToolbarAdd    = 'Add';
  SHintToolbarEdit   = 'Edit';
  SHintToolbarDelete = 'Delete';

{ ---------------------------------------------------------------------
    Error messages.
  ---------------------------------------------------------------------}
  
  
  SErrNoPackageForModule = 'No package found to insert module "%s"';
  SErrNoNodeForTopic     = 'No parent node found to insert topic "%s"';
  SErrNoNodeForPackage   = 'No node found for package "%s"';
  SErrNoNodeForModule    = 'No node found for module "%s"';
  SErrNoModuleForElement = 'No module found to insert element "%s"';
  //SErrNoNodeForElement   = 'No node found for element "%s"';
  SErrUnknownDomElement  = 'Unknwon DOM element as parent for selected element: "%s"';
  SStartNodeNotFound     = 'Start element "%s" could not be found';

  //SSaveFileTitle = 'Enter filename to save to';
  //SOpenFileTitle = 'Select file to open';
  sSelectSomeText        = 'Select some text.';

  //Options dialog
  sOptDlgOptions         = 'Options';
  sOptDlgGeneral         = 'General';
  sOptDlgDesktop         = 'Desktop';
  sOptDlgShowHints       = 'Show hints';
  sOptDlgConfirmDeletes  = 'C&onfirm deletes';
  sOptDlgCreateBackups   = 'Create &backups';
  sOptDlgSkipEmptyNodes  = '&Skip empty nodes when saving';
  sOptDlgStartMaximized  = 'Start maximized';
  sOptDlgReopenLastFile  = 'Reopen last file on startup';
  sOptDlgDefaultExtension= 'Default extension';
  sOptDlgBackupExtension = 'Backup extension';
  sOptDlgMaxRecentUsed   = 'Max. recent used';
  sOptDlgMakeskelProgram = 'makeskel program';
  sOptDlgFpdocProgram    = 'fpdoc program';

Function FormatHint(S : String) : String;

implementation

uses sysutils;

Function FormatHint(S : String) : String;

begin
  Result:=Format(SMarkSelection,[S]);
end;

end.