File: lazdatadeskstr.pas

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 (283 lines) | stat: -rw-r--r-- 11,636 bytes parent folder | download | duplicates (3)
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
272
273
274
275
276
277
278
279
280
281
282
283
{ Lazarus Database Desktop Resource Strings

  Copyright (C) 2009 Marcelo B Paula

  Estes fontes são software livre; você pode redistribuir e/ou modificá-los
  sob os termos da GNU Library General Public License como publicada pela Free
  Software Foundation; ou a versão 2 da Licença, ou (a sua escolha) qualquer
  versão posterior.

  Este código é distribuído na esperança de que seja útil, mas SEM
  QUALQUER GARANTIA; nem mesmo a garantia implícita de COMERCIABILIDADE ou
  ADEQUAÇÃO A UMA FINALIDADE PARTICULAR. Veja a licença GNU General Public
  License para maiores detalhes.

  Você deve ter recebido uma cópia da licença GNU Library General Public
  License juntamente com esta biblioteca; senão, escreva a Free Software
  Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1335, USA.
}
unit lazdatadeskstr;

{$mode objfpc}{$H+}

interface

resourcestring

  // Connection Editor
  SNodeTables         = 'Tables';
  SNodeFields         = 'Fields';
  SNodeIndexes        = 'Indexes';
  SNewDictionary      = 'New data dictionary';
  SNodeDataBase       = 'Database';
  SNodeTableData      = 'Table Data';
  SNodeIndexOptions   = 'Index options: ';
  SNodeIndexFields    = 'Index fields: ';
  SParameter          = 'Parameter';
  SValue              = 'Value';
  SEngineType         = 'Engine';
  SDescription        = 'Description';
  SColName            = 'Name';
  SColType            = 'Type';
  SColSize            = 'Size';
  SColFields          = 'Fields';
  SColOptions         = 'Options';
  SQuery              = 'Run query';
  SSelectedObject     = 'Selected object';

  // Dict Editor
  SNodeDataDictionary = 'Data dictionary';
  SNodeDomains        = 'Domains';
  SNodeSequences      = 'Sequences';
  SNodeForeignkeys    = 'Foreign keys';
  STable = 'Table';
  SField = 'Field';
  SIndex = 'Index';
  SSequence = 'Sequence';
  SForeignKey = 'Foreign key';
  SDomain = 'Domain';
  SNew = 'New %s';
  SErrUnknownType = 'Unknown object type: %d';
  SNewObject = 'Create new %s';
  SNameFor = 'Enter a name for the new %s';
  SDeleteObject = 'Delete this %s';
  SObject = 'Object';

  // Generate SQL statements form
  SErrSelectTable  = 'No table selected. Please select a table';
  SErrSelectFields = 'No fields selected. Please select some fields';
  //
  sld_Generatesqlstatements = 'Generate SQL statements';
  sld_Tableandfields = 'Tables and &Fields';
  sld_Select         = '&Select';
  sld_Insert         = '&Insert';
  sld_Update         = '&Update';
  sld_Delete         = '&Delete';
  sld_Createtable    = 'Create table';
  sld_Table          = 'Ta&ble';
  sld_Keyfields      = '&Key fields';
  sld_Selectupdateinsertfields = 'Select/Update/Insert fields';
  sld_Options        = 'Options';
  sld_Indent         = 'I&ndent';
  sld_Linelength     = 'Line Length';
  sld_Createfulltablecreationsql = 'Create full table creation SQL';
  sld_Generatesql    = 'Generate SQL';
  sld_Ok             = '&OK';
  sld_Cancel         = '&Cancel';
  //
  eoLineFeedAfterField = 'Linefeed after each field';
  eoUseOldInWhereParams = 'Use OLD prefix in where parameters';
  eoAndTermsInBrackets = 'Put brackets around AND Terms';
  eoQuoteFieldNames = 'Quote field names';
  eoLineFeedAfterAndTerm = 'Linefeed after AND terms';
  eoAddTerminator = 'Add terminator';
  eoSkipForeignKeys = 'Skip foreign keys';

  // Import/Update data dictionary form
  sld_Importupdatedatadictionary = 'Import/Update data dictionary';
  sld_Selectall      = 'Select &all';
  sld_Selectnone     = 'Select &none';
  sld_Updateexistingtables = 'Update existing tables';

  // Select a conection type form
  sld_Selectaconnectiontype = 'Select a conection type';

  // Connect to a database form
  sld_Connecttoadatabase = 'Connect to a database of type %s';
  sld_Host           = 'Host';
  sld_Database       = 'Database';
  sld_Username       = 'Username';
  sld_Password       = 'Password';
  sld_Charset        = 'Charset';
  sld_UnknownType    = 'Unknown type';
  sld_TestConnection = 'Test connection';
  sld_SuccesConnecting = 'Connection established successfully!';

  sld_FirstStart = 'First start of database desktop';
  sql_NoConnectionsFound = 'No connections or data dictionaries were found.'#13#10+
                           ' Start by creating a new connection or data dictionary.';
  sld_startnewdict = 'Start new dictionary';
  sld_startnewconnection = 'Create new connection';
  sld_startempty = 'Thanks, I know what to do';

  // Query panel
  SSQLFilters = 'SQL files|*.sql|All files|*.*';
  SRowsAffected = 'Query executed successfully: %d rows affected.';
  SErrNoEngine = 'No database engine !';
  SExecute = 'Execute SQL';
  SHintExecute = 'Execute SQL statement';
  SPrevious = 'Previous';
  SHintPrevious = 'Previous SQL statement';
  SNext = 'Next';
  SHintNext = 'Next SQL statement';
  SLoad = 'Load SQL';
  SHintLoad = 'Load SQL statement from file';
  SSave = 'Save SQL';
  SHintSave = 'Save SQL statement to file';
  SClose = 'Close result';
  SHintClose = 'Close query result data panel';
  SExport = 'Export data';
  SHintExport = 'Export this data';
  SCreateCode = 'Create code';
  SHintCreateCode = 'Create pascal code for this data';
  SExecutingSQLStatement = '%s : Executing SQL statement:';
  SExecutingSQLStatementCount = '%s : Executing script SQL statement nr. %d:';
  SRecordsFetched = 'Records fetched: %d';
  SSQLexecutedOK = '%s : Statement executed succesfully.';
  SExecutionTime = 'Execution time: %s';
  SSQLErrorCode = 'SQL Error code: %d';
  SSQLStatus = 'SQL State: %s';
  SErrorExecutingSQL = 'Error executing SQL statement:';
  SReadyForSQL = 'Ready to execute SQL statements';
  SErrInScript = 'Error in SQL script';
  SErrInScriptChoice = 'An error occurred in the SQL script.'+slineBreak+
                       'How would you like to continue ?';
  SRetryStatement = 'Retry the statement';
  SStopOnNextError = 'Continue, stop on the next error';
  SStopNoError = 'Continue, ignore all errors';
  SAbortScript = 'Abort the script';
  SErrCommitNotSupported = 'COMMIT Not supported yet';
  SErrUnknownDirective = 'Unknown directive: %s (args: %s)';
  SScriptAborted = 'Script was aborted after %d statements';
  SScriptCompleted = 'Executed %d statements from script';
  SScriptErrorCount = '%d script statements resulted in errors';

  // Main form
  SSaveData     = 'Save changes';
  SDontSave     = 'Discard changes';
  SDontClose    = 'Do not close editor';
  SConfirmClose = 'Confirm close';
  SDDModified   = 'Data dictionary "%s" has changed.'#13#10+
                  'What do you want to do with the changes?';
  SImportDictInto = 'Import data dictionary';
  SWhichCurrentDictToUse = 'A data dictionary is active.'+
                           'Would you like to import into this data dictionary ?';
  SUseCurrentDict = 'Yes, use the active dictionary';
  SUseNewDict     = 'No, import in a new dictionary';
  SNewTable       = 'Create new table';
  SNewTableName   = 'Enter a name for the new table:';
  SNewSequence    = 'Create new sequence';
  SNewSequenceName  = 'Enter a name for the new sequence:';
  SNewDomain      = 'Create new domain';
  SNewDomainName  = 'Enter a name for the new domain:';
  SNewField       = 'Create new field in table %s';
  SNewFieldName   = 'Enter a name for the new field:';
  SNewIndex       = 'Create new index on table %s';
  SNewIndexName   = 'Enter a name for the new index:';
  SNewForeignKey  = 'Create new foreign key in table %s';
  SNewForeignKeyName   = 'Enter a name for the new foreign key:';
  SSelectDBFDir   = 'Select a directory with DBF files';
  SNewConnection  = 'New connection';
  SConnectionDescription = 'Enter a descriptive name for the connection';
  SConnectionNameExists = 'There is already a connection named "%s"'#13#10+
                          'Would you like to override the connection data ?';
  SUnknownDictionary = 'Unknown data dictionary: %s';
  SUnknownConnection = 'Unknown connection: %s';
  SCreateConnection = 'Would you like to create a new connection for this database ?';
  //
  sld_Lazarusdatabasedesktop = 'Lazarus Database Desktop';
  sld_Menufile               = '&File';
  sld_Menuedit               = '&Edit';
  sld_Menudictionary         = '&Dictionary';
  sld_Menuconnections        = 'Connections';
  sld_Menudictionaryimport   = '&Import';
  sld_View = 'View';
  //
  sld_Actionsave           = '&Save';
  sld_ActionsaveH          = 'Save Data Dictionary';
  sld_Actionnew            = '&New';
  sld_ActionnewH           = 'Create a new Data Dictionary';
  sld_Actionexit           = 'E&xit';
  sld_ActionexitH          = 'Quit this program';
  sld_Actionopen           = '&Open ...';
  sld_ActionopenH          = 'Open a new Data Dictionary';
  sld_Actionclose          = '&Close';
  sld_ActioncloseH         = 'Close current Data Dictionary';
  sld_Actioncloseall       = 'Close &All';
  sld_ActioncloseallH      = 'Close all Data Dictionaries';
  sld_Actionsaveas         = 'Save &as';
  sld_ActionsaveasH        = 'Save data dictionary as';
  sld_Actionopenrecentdatadict  = 'Open';
  sld_ActionopenrecentdatadictH = 'Open selected recent data dictionary';
  sld_Actiondeleterecentdatadict= '&Delete';
  //
  sld_Actioncut            = 'Cu&t';
  sld_ActioncutH           = 'Cut';
  sld_Actioncopy           = '&Copy';
  sld_ActioncopyH          = 'Copy';
  sld_Actionpaste          = '&Paste';
  sld_ActionpasteH         = 'Paste';
  //
  sld_Actionnewtable       = 'New &table';
  sld_ActionnewtableH      = 'Create a new table';
  sld_Actionnewfield       = 'New &field';
  sld_ActionnewfieldH      = 'Create a new field in the current table';
  sld_Actiondeleteobject   = 'Delete &Object';
  sld_ActiondeleteobjectH  = 'Delete the currently selected object';
  sld_Actiongeneratesql    = '&Generate SQL';
  sld_ActiongeneratesqlH   = 'Generate SQL statements for the current table';
  sld_Actionnewindex       = 'New index';
  sld_ActionnewindexH      = 'Add new index to current table';
  sld_Actioncreatecode     = 'Create &code';
  sld_ActioncreatecodeH    = 'Create code from definition or data';
  sld_Actionaddsequence    = 'New sequence';
  sld_ActionaddsequenceH   = 'Add a sequence';
  sld_Actionaddforeignkey  = 'New Foreign Key';
  sld_ActionaddforeignkeyH = 'Add a foreign key to the table';
  sld_Actionadddomain      = 'New domain';
  sld_ActionadddomainH     = 'Add a domain to the data dictionary';
  //
  sld_Actionnewconnection     = '&New connection';
  sld_Actiondeleteconnection  = '&Delete connection';
  sld_Actioncopyconnection    = '&Copy connection';
  sld_Actionopenconnection    = '&Open connection';
  sld_ActionopenconnectionH   = 'Open selected recent connection';
  //
  sld_Separator               = '-';
  //
  sld_Dictionaries         = 'Dictionaries';
  sld_Connections          = 'Connections';
  sld_ConnectionsDictionaries = 'Connections/Dictionaries';
  //
  sld_Recentlv1            = 'Name';
  sld_Recentlv2            = 'Filename';
  sld_Recentlv3            = 'Last used on';
  //
  sld_Connectionlv1        = 'Name';
  sld_Connectionlv2        = 'Driver';
  sld_Connectionlv3        = 'Last used';
  sld_Connectionlv4        = 'Description';
  //
  sld_opendatadictionarytitle      = 'Open data dictionary';
  sld_opendatadictionaryfilter     = 'Data dictionary files (fdd)|*.fdd|Ini files|*.ini|All files|*.*';
  sld_savefileastitle              = 'Save file as';
  sld_savefileasfilter             = 'Data dictionary files (fdd)|*.fdd|Ini files|*.ini|All files|*.*';
  //
  sld_Fromconnection       = 'From connection';
  //
  sld_LegacyView = 'Legacy List View';

implementation

end.