1
|
|
|
<?php |
2
|
|
|
|
3
|
|
|
/** |
4
|
|
|
* PHPPgAdmin 6.0.0 |
5
|
|
|
*/ |
6
|
|
|
|
7
|
|
|
namespace PHPPgAdmin\Translations; |
8
|
|
|
|
9
|
|
|
/** |
10
|
|
|
* Class providing translation for Ukrainian language. |
11
|
|
|
*/ |
12
|
|
|
class English extends AbstractLang |
13
|
|
|
{ |
14
|
|
|
public function __construct() |
15
|
|
|
{ |
16
|
|
|
$lang = $this->lang; // Language and character set |
17
|
|
|
$lang['applang'] = 'English'; |
18
|
|
|
$lang['applocale'] = 'en-US'; |
19
|
|
|
$lang['applangdir'] = 'ltr'; |
20
|
|
|
// Welcome |
21
|
|
|
$lang['strintro'] = 'Welcome to phpPgAdmin6.'; |
22
|
|
|
$lang['strppahome'] = 'phpPgAdmin6 Homepage'; |
23
|
|
|
$lang['strpgsqlhome'] = 'PostgreSQL Homepage'; |
24
|
|
|
$lang['strpgsqlhome_url'] = 'http://www.postgresql.org/'; |
25
|
|
|
$lang['strlocaldocs'] = 'PostgreSQL Documentation (local)'; |
26
|
|
|
$lang['strreportbug'] = 'Report a Bug'; |
27
|
|
|
$lang['strviewfaq'] = 'View online FAQ'; |
28
|
|
|
$lang['strviewfaq_url'] = 'https://github.com/HuasoFoundries/phpPgAdmin6/blob/develop/docs/FAQ.md'; |
29
|
|
|
// Basic strings |
30
|
|
|
$lang['strlogin'] = 'Login'; |
31
|
|
|
$lang['strloginfailed'] = 'Login failed'; |
32
|
|
|
$lang['strlogindisallowed'] = 'Login disallowed for security reasons.'; |
33
|
|
|
$lang['strserver'] = 'Server'; |
34
|
|
|
$lang['strservers'] = 'Servers'; |
35
|
|
|
$lang['strgroupservers'] = 'Servers in group "%s"'; |
36
|
|
|
$lang['strallservers'] = 'All servers'; |
37
|
|
|
$lang['strintroduction'] = 'Introduction'; |
38
|
|
|
$lang['strhost'] = 'Host'; |
39
|
|
|
$lang['strport'] = 'Port'; |
40
|
|
|
$lang['strlogout'] = 'Logout'; |
41
|
|
|
$lang['strowner'] = 'Owner'; |
42
|
|
|
$lang['straction'] = 'Action'; |
43
|
|
|
$lang['stractions'] = 'Actions'; |
44
|
|
|
$lang['strname'] = 'Name'; |
45
|
|
|
$lang['strdefinition'] = 'Definition'; |
46
|
|
|
$lang['strproperties'] = 'Properties'; |
47
|
|
|
$lang['strbrowse'] = 'Browse'; |
48
|
|
|
$lang['strenable'] = 'Enable'; |
49
|
|
|
$lang['strdisable'] = 'Disable'; |
50
|
|
|
$lang['strdrop'] = 'Drop'; |
51
|
|
|
$lang['strdropped'] = 'Dropped'; |
52
|
|
|
$lang['strnull'] = 'Null'; |
53
|
|
|
$lang['strnotnull'] = 'Not Null'; |
54
|
|
|
$lang['strprev'] = '< Prev'; |
55
|
|
|
$lang['strnext'] = 'Next >'; |
56
|
|
|
$lang['strfirst'] = '<< First'; |
57
|
|
|
$lang['strlast'] = 'Last >>'; |
58
|
|
|
$lang['strfailed'] = 'Failed'; |
59
|
|
|
$lang['strcreate'] = 'Create'; |
60
|
|
|
$lang['strcreated'] = 'Created'; |
61
|
|
|
$lang['strcomment'] = 'Comment'; |
62
|
|
|
$lang['strlength'] = 'Length'; |
63
|
|
|
$lang['strdefault'] = 'Default'; |
64
|
|
|
$lang['stralter'] = 'Alter'; |
65
|
|
|
$lang['strok'] = 'OK'; |
66
|
|
|
$lang['strcancel'] = 'Cancel'; |
67
|
|
|
$lang['strkill'] = 'Kill'; |
68
|
|
|
$lang['strac'] = 'Enable AutoComplete'; |
69
|
|
|
$lang['strsave'] = 'Save'; |
70
|
|
|
$lang['strreset'] = 'Reset'; |
71
|
|
|
$lang['strrestart'] = 'Restart'; |
72
|
|
|
$lang['strinsert'] = 'Insert'; |
73
|
|
|
$lang['strselect'] = 'Select'; |
74
|
|
|
$lang['strdelete'] = 'Delete'; |
75
|
|
|
$lang['strupdate'] = 'Update'; |
76
|
|
|
$lang['strreferences'] = 'References'; |
77
|
|
|
$lang['stryes'] = 'Yes'; |
78
|
|
|
$lang['strno'] = 'No'; |
79
|
|
|
$lang['strtrue'] = 'TRUE'; |
80
|
|
|
$lang['strfalse'] = 'FALSE'; |
81
|
|
|
$lang['stredit'] = 'Edit'; |
82
|
|
|
$lang['strcolumn'] = 'Column'; |
83
|
|
|
$lang['strcolumns'] = 'Columns'; |
84
|
|
|
$lang['strrows'] = 'row(s)'; |
85
|
|
|
$lang['strrowsaff'] = 'row(s) affected.'; |
86
|
|
|
$lang['strobjects'] = 'object(s)'; |
87
|
|
|
$lang['strback'] = 'Back'; |
88
|
|
|
$lang['strqueryresults'] = 'Query Results'; |
89
|
|
|
$lang['strshow'] = 'Show'; |
90
|
|
|
$lang['strempty'] = 'Empty'; |
91
|
|
|
$lang['strlanguage'] = 'Language'; |
92
|
|
|
$lang['strencoding'] = 'Encoding'; |
93
|
|
|
$lang['strvalue'] = 'Value'; |
94
|
|
|
$lang['strunique'] = 'Unique'; |
95
|
|
|
$lang['strprimary'] = 'Primary'; |
96
|
|
|
$lang['strexport'] = 'Export'; |
97
|
|
|
$lang['strimport'] = 'Import'; |
98
|
|
|
$lang['strallowednulls'] = 'Allowed NULL characters'; |
99
|
|
|
$lang['strbackslashn'] = '\N'; |
100
|
|
|
$lang['stremptystring'] = 'Empty string/field'; |
101
|
|
|
$lang['strsql'] = 'SQL'; |
102
|
|
|
$lang['stradmin'] = 'Admin'; |
103
|
|
|
$lang['strvacuum'] = 'Vacuum'; |
104
|
|
|
$lang['stranalyze'] = 'Analyze'; |
105
|
|
|
$lang['strclusterindex'] = 'Cluster'; |
106
|
|
|
$lang['strclustered'] = 'Clustered?'; |
107
|
|
|
$lang['strreindex'] = 'Reindex'; |
108
|
|
|
$lang['strexecute'] = 'Execute'; |
109
|
|
|
$lang['stradd'] = 'Add'; |
110
|
|
|
$lang['strevent'] = 'Event'; |
111
|
|
|
$lang['strwhere'] = 'Where'; |
112
|
|
|
$lang['strinstead'] = 'Do Instead'; |
113
|
|
|
$lang['strwhen'] = 'When'; |
114
|
|
|
$lang['strformat'] = 'Format'; |
115
|
|
|
$lang['strdata'] = 'Data'; |
116
|
|
|
$lang['strconfirm'] = 'Confirm'; |
117
|
|
|
$lang['strexpression'] = 'Expression'; |
118
|
|
|
$lang['strellipsis'] = '...'; |
119
|
|
|
$lang['strseparator'] = ': '; |
120
|
|
|
$lang['strexpand'] = 'Expand'; |
121
|
|
|
$lang['strcollapse'] = 'Collapse'; |
122
|
|
|
$lang['strfind'] = 'Find'; |
123
|
|
|
$lang['stroptions'] = 'Options'; |
124
|
|
|
$lang['strrefresh'] = 'Refresh'; |
125
|
|
|
$lang['strdownload'] = 'Download'; |
126
|
|
|
$lang['strdownloadgzipped'] = 'Download compressed with gzip'; |
127
|
|
|
$lang['strinfo'] = 'Info'; |
128
|
|
|
$lang['stroids'] = 'OIDs'; |
129
|
|
|
$lang['stradvanced'] = 'Advanced'; |
130
|
|
|
$lang['strvariables'] = 'Variables'; |
131
|
|
|
$lang['strprocess'] = 'Process'; |
132
|
|
|
$lang['strprocesses'] = 'Processes'; |
133
|
|
|
$lang['strblocked'] = 'Blocked'; |
134
|
|
|
$lang['strsetting'] = 'Setting'; |
135
|
|
|
$lang['streditsql'] = 'Edit SQL'; |
136
|
|
|
$lang['strruntime'] = 'Total runtime: %s ms'; |
137
|
|
|
$lang['strpaginate'] = 'Paginate results'; |
138
|
|
|
$lang['struploadscript'] = 'or upload an SQL script:'; |
139
|
|
|
$lang['strstarttime'] = 'Start Time'; |
140
|
|
|
$lang['strfile'] = 'File'; |
141
|
|
|
$lang['strfileimported'] = 'File imported.'; |
142
|
|
|
$lang['strtrycred'] = 'Use these credentials for all servers'; |
143
|
|
|
$lang['strconfdropcred'] = 'For security reason, disconnecting will destroy your shared login information. Are you sure you want to disconnect ?'; |
144
|
|
|
$lang['stractionsonmultiplelines'] = 'Actions on multiple lines'; |
145
|
|
|
$lang['strselectall'] = 'Select all'; |
146
|
|
|
$lang['strunselectall'] = 'Unselect all'; |
147
|
|
|
$lang['strlocale'] = 'Locale'; |
148
|
|
|
$lang['strcollation'] = 'Collation'; |
149
|
|
|
$lang['strctype'] = 'Character Type'; |
150
|
|
|
$lang['strdefaultvalues'] = 'Default values'; |
151
|
|
|
$lang['strnewvalues'] = 'New values'; |
152
|
|
|
$lang['strstart'] = 'Start'; |
153
|
|
|
$lang['strstop'] = 'Stop'; |
154
|
|
|
$lang['strgotoppage'] = 'back to top'; |
155
|
|
|
$lang['strtheme'] = 'Theme'; |
156
|
|
|
$lang['strcluster'] = 'Cluster'; |
157
|
|
|
// Admin |
158
|
|
|
$lang['stradminondatabase'] = 'The following administrative tasks apply on the whole %s database.'; |
159
|
|
|
$lang['stradminontable'] = 'The following administrative tasks apply on the table %s.'; |
160
|
|
|
// User-supplied SQL history |
161
|
|
|
$lang['strhistory'] = 'History'; |
162
|
|
|
$lang['strnohistory'] = 'No history.'; |
163
|
|
|
$lang['strclearhistory'] = 'Clear history'; |
164
|
|
|
$lang['strdelhistory'] = 'Delete from history'; |
165
|
|
|
$lang['strconfdelhistory'] = 'Really remove this request from history?'; |
166
|
|
|
$lang['strconfclearhistory'] = 'Really clear history?'; |
167
|
|
|
$lang['strnodatabaseselected'] = 'Please, select a database.'; |
168
|
|
|
// Database sizes |
169
|
|
|
$lang['strnoaccess'] = 'No Access'; |
170
|
|
|
$lang['strsize'] = 'Size'; |
171
|
|
|
$lang['strbytes'] = 'bytes'; |
172
|
|
|
$lang['strkb'] = 'kB'; |
173
|
|
|
$lang['strmb'] = 'MB'; |
174
|
|
|
$lang['strgb'] = 'GB'; |
175
|
|
|
$lang['strtb'] = 'TB'; |
176
|
|
|
// Error handling |
177
|
|
|
$lang['strnoframes'] = 'This application works best with a frames-enabled browser, but can be used without frames by following the link below.'; |
178
|
|
|
$lang['strnoframeslink'] = 'Use without frames'; |
179
|
|
|
$lang['strbadconfig'] = 'Your config.inc.php is out of date. You will need to regenerate it from the new config.inc.php-dist.'; |
180
|
|
|
$lang['strnotloaded'] = 'Your PHP installation does not support PostgreSQL. You need to recompile PHP using the --with-pgsql configure option.'; |
181
|
|
|
$lang['strpostgresqlversionnotsupported'] = 'Version of PostgreSQL not supported. Please upgrade to version %s or later.'; |
182
|
|
|
$lang['strbadschema'] = 'Invalid schema specified.'; |
183
|
|
|
$lang['strbadencoding'] = 'Failed to set client encoding in database.'; |
184
|
|
|
$lang['strsqlerror'] = 'SQL error:'; |
185
|
|
|
$lang['strinstatement'] = 'In statement:'; |
186
|
|
|
$lang['strinvalidparam'] = 'Invalid script parameters.'; |
187
|
|
|
$lang['strnodata'] = 'No rows found.'; |
188
|
|
|
$lang['strnoobjects'] = 'No objects found.'; |
189
|
|
|
$lang['strrownotunique'] = 'No unique identifier for this row.'; |
190
|
|
|
$lang['strnouploads'] = 'File uploads are disabled.'; |
191
|
|
|
$lang['strimporterror'] = 'Import error.'; |
192
|
|
|
$lang['strimporterror-fileformat'] = 'Import error: Failed to automatically determine the file format.'; |
193
|
|
|
$lang['strimporterrorline'] = 'Import error on line %s.'; |
194
|
|
|
$lang['strimporterrorline-badcolumnnum'] = 'Import error on line %s: Line does not possess the correct number of columns.'; |
195
|
|
|
$lang['strimporterror-uploadedfile'] = 'Import error: File could not be uploaded to the server'; |
196
|
|
|
$lang['strcannotdumponwindows'] = 'Dumping of complex table and schema names on Windows is not supported.'; |
197
|
|
|
$lang['strinvalidserverparam'] = 'Attempt to connect with invalid server parameter, possibly someone is trying to hack your system.'; |
198
|
|
|
$lang['strnoserversupplied'] = 'No server supplied!'; |
199
|
|
|
$lang['strbadpgdumppath'] = 'Export error: Failed to execute pg_dump (given path in your conf/config.inc.php : %s). Please, fix this path in your configuration and relog.'; |
200
|
|
|
$lang['strbadpgdumpallpath'] = 'Export error: Failed to execute pg_dumpall (given path in your conf/config.inc.php : %s). Please, fix this path in your configuration and relog.'; |
201
|
|
|
$lang['strconnectionfail'] = 'Can not connect to server.'; |
202
|
|
|
// Tables |
203
|
|
|
$lang['strtable'] = 'Table'; |
204
|
|
|
$lang['strtables'] = 'Tables'; |
205
|
|
|
$lang['strshowalltables'] = 'Show all tables'; |
206
|
|
|
$lang['strnotables'] = 'No tables found.'; |
207
|
|
|
$lang['strnotable'] = 'No table found.'; |
208
|
|
|
$lang['strcreatetable'] = 'Create table'; |
209
|
|
|
$lang['strcreatetablelike'] = 'Create table like'; |
210
|
|
|
$lang['strcreatetablelikeparent'] = 'Source table'; |
211
|
|
|
$lang['strcreatelikewithdefaults'] = 'INCLUDE DEFAULTS'; |
212
|
|
|
$lang['strcreatelikewithconstraints'] = 'INCLUDE CONSTRAINTS'; |
213
|
|
|
$lang['strcreatelikewithindexes'] = 'INCLUDE INDEXES'; |
214
|
|
|
$lang['strtablename'] = 'Table name'; |
215
|
|
|
$lang['strtableneedsname'] = 'You must give a name for your table.'; |
216
|
|
|
$lang['strtablelikeneedslike'] = 'You must give a table to copy properties from.'; |
217
|
|
|
$lang['strtableneedsfield'] = 'You must specify at least one field.'; |
218
|
|
|
$lang['strtableneedscols'] = 'You must specify a valid number of columns.'; |
219
|
|
|
$lang['strtablecreated'] = 'Table created.'; |
220
|
|
|
$lang['strtablecreatedbad'] = 'Table creation failed.'; |
221
|
|
|
$lang['strconfdroptable'] = 'Are you sure you want to drop the table "%s"?'; |
222
|
|
|
$lang['strtabledropped'] = 'Table dropped.'; |
223
|
|
|
$lang['strtabledroppedbad'] = 'Table drop failed.'; |
224
|
|
|
$lang['strconfemptytable'] = 'Are you sure you want to empty the table "%s"?'; |
225
|
|
|
$lang['strtableemptied'] = 'Table emptied.'; |
226
|
|
|
$lang['strtableemptiedbad'] = 'Table empty failed.'; |
227
|
|
|
$lang['strinsertrow'] = 'Insert row'; |
228
|
|
|
$lang['strrowinserted'] = 'Row inserted.'; |
229
|
|
|
$lang['strrowinsertedbad'] = 'Row insert failed.'; |
230
|
|
|
$lang['strnofkref'] = 'There is no matching value in the foreign key %s.'; |
231
|
|
|
$lang['strrowduplicate'] = 'Row insert failed, attempted to do duplicate insert.'; |
232
|
|
|
$lang['streditrow'] = 'Edit row'; |
233
|
|
|
$lang['strrowupdated'] = 'Row updated.'; |
234
|
|
|
$lang['strrowupdatedbad'] = 'Row update failed.'; |
235
|
|
|
$lang['strdeleterow'] = 'Delete Row'; |
236
|
|
|
$lang['strconfdeleterow'] = 'Are you sure you want to delete this row?'; |
237
|
|
|
$lang['strrowdeleted'] = 'Row deleted.'; |
238
|
|
|
$lang['strrowdeletedbad'] = 'Row deletion failed.'; |
239
|
|
|
$lang['strinsertandrepeat'] = 'Insert & Repeat'; |
240
|
|
|
$lang['strnumcols'] = 'Number of columns'; |
241
|
|
|
$lang['strcolneedsname'] = 'You must specify a name for the column'; |
242
|
|
|
$lang['strselectallfields'] = 'Select all fields'; |
243
|
|
|
$lang['strselectneedscol'] = 'You must show at least one column.'; |
244
|
|
|
$lang['strselectunary'] = 'Unary operators cannot have values.'; |
245
|
|
|
$lang['strcolumnaltered'] = 'Column altered.'; |
246
|
|
|
$lang['strcolumnalteredbad'] = 'Column alteration failed.'; |
247
|
|
|
$lang['strconfdropcolumn'] = 'Are you sure you want to drop column "%s" from table "%s"?'; |
248
|
|
|
$lang['strcolumndropped'] = 'Column dropped.'; |
249
|
|
|
$lang['strcolumndroppedbad'] = 'Column drop failed.'; |
250
|
|
|
$lang['straddcolumn'] = 'Add column'; |
251
|
|
|
$lang['strcolumnadded'] = 'Column added.'; |
252
|
|
|
$lang['strcolumnaddedbad'] = 'Column add failed.'; |
253
|
|
|
$lang['strcascade'] = 'CASCADE'; |
254
|
|
|
$lang['strtablealtered'] = 'Table altered.'; |
255
|
|
|
$lang['strtablealteredbad'] = 'Table alteration failed.'; |
256
|
|
|
$lang['strdataonly'] = 'Data only'; |
257
|
|
|
$lang['strstructureonly'] = 'Structure only'; |
258
|
|
|
$lang['strstructureanddata'] = 'Structure and data'; |
259
|
|
|
$lang['strtabbed'] = 'Tabbed'; |
260
|
|
|
$lang['strauto'] = 'Auto'; |
261
|
|
|
$lang['strconfvacuumtable'] = 'Are you sure you want to vacuum "%s"?'; |
262
|
|
|
$lang['strconfanalyzetable'] = 'Are you sure you want to analyze "%s"?'; |
263
|
|
|
$lang['strconfreindextable'] = 'Are you sure you want to reindex "%s"?'; |
264
|
|
|
$lang['strconfclustertable'] = 'Are you sure you want to cluster "%s"?'; |
265
|
|
|
$lang['strestimatedrowcount'] = 'Estimated row count'; |
266
|
|
|
$lang['strspecifytabletoanalyze'] = 'You must specify at least one table to analyze.'; |
267
|
|
|
$lang['strspecifytabletoempty'] = 'You must specify at least one table to empty.'; |
268
|
|
|
$lang['strspecifytabletodrop'] = 'You must specify at least one table to drop.'; |
269
|
|
|
$lang['strspecifytabletovacuum'] = 'You must specify at least one table to vacuum.'; |
270
|
|
|
$lang['strspecifytabletoreindex'] = 'You must specify at least one table to reindex.'; |
271
|
|
|
$lang['strspecifytabletocluster'] = 'You must specify at least one table to cluster.'; |
272
|
|
|
$lang['strnofieldsforinsert'] = 'You cannot insert a row into a table with no column.'; |
273
|
|
|
// Columns |
274
|
|
|
$lang['strcolprop'] = 'Column properties'; |
275
|
|
|
$lang['strnotableprovided'] = 'No table provided!'; |
276
|
|
|
// Users |
277
|
|
|
$lang['struser'] = 'User'; |
278
|
|
|
$lang['strusers'] = 'Users'; |
279
|
|
|
$lang['strusername'] = 'Username'; |
280
|
|
|
$lang['strpassword'] = 'Password'; |
281
|
|
|
$lang['strsuper'] = 'Superuser?'; |
282
|
|
|
$lang['strcreatedb'] = 'Create DB?'; |
283
|
|
|
$lang['strexpires'] = 'Expires'; |
284
|
|
|
$lang['strsessiondefaults'] = 'Session defaults'; |
285
|
|
|
$lang['strnousers'] = 'No users found.'; |
286
|
|
|
$lang['struserupdated'] = 'User updated.'; |
287
|
|
|
$lang['struserupdatedbad'] = 'User update failed.'; |
288
|
|
|
$lang['strshowallusers'] = 'Show all users'; |
289
|
|
|
$lang['strcreateuser'] = 'Create user'; |
290
|
|
|
$lang['struserneedsname'] = 'You must give a name for your user.'; |
291
|
|
|
$lang['strusercreated'] = 'User created.'; |
292
|
|
|
$lang['strusercreatedbad'] = 'Failed to create user.'; |
293
|
|
|
$lang['strconfdropuser'] = 'Are you sure you want to drop the user "%s"?'; |
294
|
|
|
$lang['struserdropped'] = 'User dropped.'; |
295
|
|
|
$lang['struserdroppedbad'] = 'Failed to drop user.'; |
296
|
|
|
$lang['straccount'] = 'Account'; |
297
|
|
|
$lang['strchangepassword'] = 'Change password'; |
298
|
|
|
$lang['strpasswordchanged'] = 'Password changed.'; |
299
|
|
|
$lang['strpasswordchangedbad'] = 'Failed to change password.'; |
300
|
|
|
$lang['strpasswordshort'] = 'Password is too short.'; |
301
|
|
|
$lang['strpasswordconfirm'] = 'Password does not match confirmation.'; |
302
|
|
|
// Groups |
303
|
|
|
$lang['strgroup'] = 'Group'; |
304
|
|
|
$lang['strgroups'] = 'Groups'; |
305
|
|
|
$lang['strgroupgroups'] = 'Groups in group "%s"'; |
306
|
|
|
$lang['strshowallgroups'] = 'Show all groups'; |
307
|
|
|
$lang['strnogroup'] = 'Group not found.'; |
308
|
|
|
$lang['strnogroups'] = 'No groups found.'; |
309
|
|
|
$lang['strcreategroup'] = 'Create group'; |
310
|
|
|
$lang['strgroupneedsname'] = 'You must give a name for your group.'; |
311
|
|
|
$lang['strgroupcreated'] = 'Group created.'; |
312
|
|
|
$lang['strgroupcreatedbad'] = 'Group creation failed.'; |
313
|
|
|
$lang['strconfdropgroup'] = 'Are you sure you want to drop the group "%s"?'; |
314
|
|
|
$lang['strgroupdropped'] = 'Group dropped.'; |
315
|
|
|
$lang['strgroupdroppedbad'] = 'Group drop failed.'; |
316
|
|
|
$lang['strmembers'] = 'Members'; |
317
|
|
|
$lang['strmemberof'] = 'Member of'; |
318
|
|
|
$lang['stradminmembers'] = 'Admin members'; |
319
|
|
|
$lang['straddmember'] = 'Add member'; |
320
|
|
|
$lang['strmemberadded'] = 'Member added.'; |
321
|
|
|
$lang['strmemberaddedbad'] = 'Member add failed.'; |
322
|
|
|
$lang['strdropmember'] = 'Drop member'; |
323
|
|
|
$lang['strconfdropmember'] = 'Are you sure you want to drop the member "%s" from the group "%s"?'; |
324
|
|
|
$lang['strmemberdropped'] = 'Member dropped.'; |
325
|
|
|
$lang['strmemberdroppedbad'] = 'Member drop failed.'; |
326
|
|
|
// Roles |
327
|
|
|
$lang['strrole'] = 'Role'; |
328
|
|
|
$lang['strroles'] = 'Roles'; |
329
|
|
|
$lang['strshowallroles'] = 'Show all roles'; |
330
|
|
|
$lang['strnoroles'] = 'No roles found.'; |
331
|
|
|
$lang['strinheritsprivs'] = 'Inherits privileges?'; |
332
|
|
|
$lang['strcreaterole'] = 'Create role'; |
333
|
|
|
$lang['strcancreaterole'] = 'Can create role?'; |
334
|
|
|
$lang['strrolecreated'] = 'Role created.'; |
335
|
|
|
$lang['strrolecreatedbad'] = 'Create role failed.'; |
336
|
|
|
$lang['strrolealtered'] = 'Role altered.'; |
337
|
|
|
$lang['strrolealteredbad'] = 'Role alter failed.'; |
338
|
|
|
$lang['strcanlogin'] = 'Can login?'; |
339
|
|
|
$lang['strconnlimit'] = 'Connection limit'; |
340
|
|
|
$lang['strdroprole'] = 'Drop role'; |
341
|
|
|
$lang['strconfdroprole'] = 'Are you sure you want to drop the role "%s"?'; |
342
|
|
|
$lang['strroledropped'] = 'Role dropped.'; |
343
|
|
|
$lang['strroledroppedbad'] = 'Role drop failed.'; |
344
|
|
|
$lang['strnolimit'] = 'No limit'; |
345
|
|
|
$lang['strnever'] = 'Never'; |
346
|
|
|
$lang['strroleneedsname'] = 'You must give a name for the role.'; |
347
|
|
|
// Privileges |
348
|
|
|
$lang['strprivilege'] = 'Privilege'; |
349
|
|
|
$lang['strprivileges'] = 'Privileges'; |
350
|
|
|
$lang['strnoprivileges'] = 'This object has default owner privileges.'; |
351
|
|
|
$lang['strgrant'] = 'Grant'; |
352
|
|
|
$lang['strrevoke'] = 'Revoke'; |
353
|
|
|
$lang['strgranted'] = 'Privileges changed.'; |
354
|
|
|
$lang['strgrantfailed'] = 'Failed to change privileges.'; |
355
|
|
|
$lang['strgrantbad'] = 'You must specify at least one user or group and at least one privilege.'; |
356
|
|
|
$lang['strgrantor'] = 'Grantor'; |
357
|
|
|
$lang['strasterisk'] = '*'; |
358
|
|
|
// Databases |
359
|
|
|
$lang['strdatabase'] = 'Database'; |
360
|
|
|
$lang['strdatabases'] = 'Databases'; |
361
|
|
|
$lang['strshowalldatabases'] = 'Show all databases'; |
362
|
|
|
$lang['strnodatabases'] = 'No databases found.'; |
363
|
|
|
$lang['strcreatedatabase'] = 'Create database'; |
364
|
|
|
$lang['strdatabasename'] = 'Database name'; |
365
|
|
|
$lang['strdatabaseneedsname'] = 'You must give a name for your database.'; |
366
|
|
|
$lang['strdatabasecreated'] = 'Database created.'; |
367
|
|
|
$lang['strdatabasecreatedbad'] = 'Database creation failed.'; |
368
|
|
|
$lang['strconfdropdatabase'] = 'Are you sure you want to drop the database "%s"?'; |
369
|
|
|
$lang['strdatabasedropped'] = 'Database dropped.'; |
370
|
|
|
$lang['strdatabasedroppedbad'] = 'Database drop failed.'; |
371
|
|
|
$lang['strentersql'] = 'Enter the SQL to execute below:'; |
372
|
|
|
$lang['strsqlexecuted'] = 'SQL executed.'; |
373
|
|
|
$lang['strvacuumgood'] = 'Vacuum complete.'; |
374
|
|
|
$lang['strvacuumbad'] = 'Vacuum failed.'; |
375
|
|
|
$lang['stranalyzegood'] = 'Analyze complete.'; |
376
|
|
|
$lang['stranalyzebad'] = 'Analyze failed.'; |
377
|
|
|
$lang['strreindexgood'] = 'Reindex complete.'; |
378
|
|
|
$lang['strreindexbad'] = 'Reindex failed.'; |
379
|
|
|
$lang['strfull'] = 'Full'; |
380
|
|
|
$lang['strfreeze'] = 'Freeze'; |
381
|
|
|
$lang['strforce'] = 'Force'; |
382
|
|
|
$lang['strsignalsent'] = 'Signal sent.'; |
383
|
|
|
$lang['strsignalsentbad'] = 'Sending signal failed.'; |
384
|
|
|
$lang['strallobjects'] = 'All objects'; |
385
|
|
|
$lang['strdatabasealtered'] = 'Database altered.'; |
386
|
|
|
$lang['strdatabasealteredbad'] = 'Database alter failed.'; |
387
|
|
|
$lang['strspecifydatabasetodrop'] = 'You must specify at least one database to drop.'; |
388
|
|
|
$lang['strtemplatedb'] = 'Template'; |
389
|
|
|
$lang['strconfanalyzedatabase'] = 'Are you sure you want to analyze all tables in database "%s"?'; |
390
|
|
|
$lang['strconfvacuumdatabase'] = 'Are you sure you want to vacuum all tables in database "%s"?'; |
391
|
|
|
$lang['strconfreindexdatabase'] = 'Are you sure you want to reindex all tables in database "%s"?'; |
392
|
|
|
$lang['strconfclusterdatabase'] = 'Are you sure you want to cluster all tables in database "%s"?'; |
393
|
|
|
// Views |
394
|
|
|
$lang['strview'] = 'View'; |
395
|
|
|
$lang['strviews'] = 'Views'; |
396
|
|
|
$lang['strshowallviews'] = 'Show all views'; |
397
|
|
|
$lang['strnoview'] = 'No view found.'; |
398
|
|
|
$lang['strnoviews'] = 'No views found.'; |
399
|
|
|
$lang['strcreateview'] = 'Create view'; |
400
|
|
|
$lang['strviewname'] = 'View name'; |
401
|
|
|
$lang['strviewneedsname'] = 'You must give a name for your view.'; |
402
|
|
|
$lang['strviewneedsdef'] = 'You must give a definition for your view.'; |
403
|
|
|
$lang['strviewneedsfields'] = 'You must give the columns you want selected in your view.'; |
404
|
|
|
$lang['strviewcreated'] = 'View created.'; |
405
|
|
|
$lang['strviewcreatedbad'] = 'View creation failed.'; |
406
|
|
|
$lang['strconfdropview'] = 'Are you sure you want to drop the view "%s"?'; |
407
|
|
|
$lang['strviewdropped'] = 'View dropped.'; |
408
|
|
|
$lang['strviewdroppedbad'] = 'View drop failed.'; |
409
|
|
|
$lang['strviewupdated'] = 'View updated.'; |
410
|
|
|
$lang['strviewupdatedbad'] = 'View update failed.'; |
411
|
|
|
$lang['strviewlink'] = 'Linking keys'; |
412
|
|
|
$lang['strviewconditions'] = 'Additional conditions'; |
413
|
|
|
$lang['strcreateviewwiz'] = 'Create view with wizard'; |
414
|
|
|
$lang['strcreatematviewwiz'] = 'Create materialized view with wizard'; |
415
|
|
|
|
416
|
|
|
$lang['strrenamedupfields'] = 'Rename duplicate fields'; |
417
|
|
|
$lang['strdropdupfields'] = 'Drop duplicate fields'; |
418
|
|
|
$lang['strerrordupfields'] = 'Error on duplicate fields'; |
419
|
|
|
$lang['strviewaltered'] = 'View altered.'; |
420
|
|
|
$lang['strviewalteredbad'] = 'View alteration failed.'; |
421
|
|
|
$lang['strspecifyviewtodrop'] = 'You must specify at least one view to drop.'; |
422
|
|
|
// Sequences |
423
|
|
|
$lang['strsequence'] = 'Sequence'; |
424
|
|
|
$lang['strsequences'] = 'Sequences'; |
425
|
|
|
$lang['strshowallsequences'] = 'Show all sequences'; |
426
|
|
|
$lang['strnosequence'] = 'No sequence found.'; |
427
|
|
|
$lang['strnosequences'] = 'No sequences found.'; |
428
|
|
|
$lang['strcreatesequence'] = 'Create sequence'; |
429
|
|
|
$lang['strlastvalue'] = 'Last value'; |
430
|
|
|
$lang['strincrementby'] = 'Increment by'; |
431
|
|
|
$lang['strstartvalue'] = 'Start value'; |
432
|
|
|
$lang['strrestartvalue'] = 'Restart value'; |
433
|
|
|
$lang['strmaxvalue'] = 'Max value'; |
434
|
|
|
$lang['strminvalue'] = 'Min value'; |
435
|
|
|
$lang['strcachevalue'] = 'Cache value'; |
436
|
|
|
$lang['strlogcount'] = 'Log count'; |
437
|
|
|
$lang['strcancycle'] = 'Can cycle?'; |
438
|
|
|
$lang['striscalled'] = 'Will increment last value before returning next value (is_called)?'; |
439
|
|
|
$lang['strsequenceneedsname'] = 'You must specify a name for your sequence.'; |
440
|
|
|
$lang['strsequencecreated'] = 'Sequence created.'; |
441
|
|
|
$lang['strsequencecreatedbad'] = 'Sequence creation failed.'; |
442
|
|
|
$lang['strconfdropsequence'] = 'Are you sure you want to drop sequence "%s"?'; |
443
|
|
|
$lang['strsequencedropped'] = 'Sequence dropped.'; |
444
|
|
|
$lang['strsequencedroppedbad'] = 'Sequence drop failed.'; |
445
|
|
|
$lang['strsequencerestart'] = 'Sequence restarted.'; |
446
|
|
|
$lang['strsequencerestartbad'] = 'Sequence restart failed.'; |
447
|
|
|
$lang['strsequencereset'] = 'Sequence reset.'; |
448
|
|
|
$lang['strsequenceresetbad'] = 'Sequence reset failed.'; |
449
|
|
|
$lang['strsequencealtered'] = 'Sequence altered.'; |
450
|
|
|
$lang['strsequencealteredbad'] = 'Sequence alteration failed.'; |
451
|
|
|
$lang['strsetval'] = 'Set value'; |
452
|
|
|
$lang['strsequencesetval'] = 'Sequence value set.'; |
453
|
|
|
$lang['strsequencesetvalbad'] = 'Sequence value set failed.'; |
454
|
|
|
$lang['strnextval'] = 'Increment value'; |
455
|
|
|
$lang['strsequencenextval'] = 'Sequence incremented.'; |
456
|
|
|
$lang['strsequencenextvalbad'] = 'Sequence increment failed.'; |
457
|
|
|
$lang['strspecifysequencetodrop'] = 'You must specify at least one sequence to drop.'; |
458
|
|
|
// Indexes |
459
|
|
|
$lang['strindex'] = 'Index'; |
460
|
|
|
$lang['strindexes'] = 'Indexes'; |
461
|
|
|
$lang['strindexname'] = 'Index name'; |
462
|
|
|
$lang['strshowallindexes'] = 'Show all indexes'; |
463
|
|
|
$lang['strnoindex'] = 'No index found.'; |
464
|
|
|
$lang['strnoindexes'] = 'No indexes found.'; |
465
|
|
|
$lang['strcreateindex'] = 'Create index'; |
466
|
|
|
$lang['strtabname'] = 'Tab name'; |
467
|
|
|
$lang['strcolumnname'] = 'Column name'; |
468
|
|
|
$lang['strindexneedsname'] = 'You must give a name for your index.'; |
469
|
|
|
$lang['strindexneedscols'] = 'Indexes require a valid number of columns.'; |
470
|
|
|
$lang['strindexcreated'] = 'Index created.'; |
471
|
|
|
$lang['strindexcreatedbad'] = 'Index creation failed.'; |
472
|
|
|
$lang['strconfdropindex'] = 'Are you sure you want to drop the index "%s"?'; |
473
|
|
|
$lang['strindexdropped'] = 'Index dropped.'; |
474
|
|
|
$lang['strindexdroppedbad'] = 'Index drop failed.'; |
475
|
|
|
$lang['strkeyname'] = 'Key name'; |
476
|
|
|
$lang['struniquekey'] = 'Unique key'; |
477
|
|
|
$lang['strprimarykey'] = 'Primary key'; |
478
|
|
|
$lang['strindextype'] = 'Type of index'; |
479
|
|
|
$lang['strtablecolumnlist'] = 'Columns in table'; |
480
|
|
|
$lang['strindexcolumnlist'] = 'Columns in index'; |
481
|
|
|
$lang['strconfcluster'] = 'Are you sure you want to cluster on "%s"?'; |
482
|
|
|
$lang['strclusteredgood'] = 'Cluster complete.'; |
483
|
|
|
$lang['strclusteredbad'] = 'Cluster failed.'; |
484
|
|
|
$lang['strconcurrently'] = 'Concurrently'; |
485
|
|
|
$lang['strnoclusteravailable'] = 'Table not clustered on an index.'; |
486
|
|
|
// Rules |
487
|
|
|
$lang['strrules'] = 'Rules'; |
488
|
|
|
$lang['strrule'] = 'Rule'; |
489
|
|
|
$lang['strshowallrules'] = 'Show all rules'; |
490
|
|
|
$lang['strnorule'] = 'No rule found.'; |
491
|
|
|
$lang['strnorules'] = 'No rules found.'; |
492
|
|
|
$lang['strcreaterule'] = 'Create rule'; |
493
|
|
|
$lang['strrulename'] = 'Rule name'; |
494
|
|
|
$lang['strruleneedsname'] = 'You must specify a name for your rule.'; |
495
|
|
|
$lang['strrulecreated'] = 'Rule created.'; |
496
|
|
|
$lang['strrulecreatedbad'] = 'Rule creation failed.'; |
497
|
|
|
$lang['strconfdroprule'] = 'Are you sure you want to drop the rule "%s" on "%s"?'; |
498
|
|
|
$lang['strruledropped'] = 'Rule dropped.'; |
499
|
|
|
$lang['strruledroppedbad'] = 'Rule drop failed.'; |
500
|
|
|
// Constraints |
501
|
|
|
$lang['strconstraint'] = 'Constraint'; |
502
|
|
|
$lang['strconstraints'] = 'Constraints'; |
503
|
|
|
$lang['strshowallconstraints'] = 'Show all constraints'; |
504
|
|
|
$lang['strnoconstraints'] = 'No constraints found.'; |
505
|
|
|
$lang['strcreateconstraint'] = 'Create constraint'; |
506
|
|
|
$lang['strconstraintcreated'] = 'Constraint created.'; |
507
|
|
|
$lang['strconstraintcreatedbad'] = 'Constraint creation failed.'; |
508
|
|
|
$lang['strconfdropconstraint'] = 'Are you sure you want to drop the constraint "%s" on "%s"?'; |
509
|
|
|
$lang['strconstraintdropped'] = 'Constraint dropped.'; |
510
|
|
|
$lang['strconstraintdroppedbad'] = 'Constraint drop failed.'; |
511
|
|
|
$lang['straddcheck'] = 'Add check'; |
512
|
|
|
$lang['strcheckneedsdefinition'] = 'Check constraint needs a definition.'; |
513
|
|
|
$lang['strcheckadded'] = 'Check constraint added.'; |
514
|
|
|
$lang['strcheckaddedbad'] = 'Failed to add check constraint.'; |
515
|
|
|
$lang['straddpk'] = 'Add primary key'; |
516
|
|
|
$lang['strpkneedscols'] = 'Primary key requires at least one column.'; |
517
|
|
|
$lang['strpkadded'] = 'Primary key added.'; |
518
|
|
|
$lang['strpkaddedbad'] = 'Failed to add primary key.'; |
519
|
|
|
$lang['stradduniq'] = 'Add unique key'; |
520
|
|
|
$lang['struniqneedscols'] = 'Unique key requires at least one column.'; |
521
|
|
|
$lang['struniqadded'] = 'Unique key added.'; |
522
|
|
|
$lang['struniqaddedbad'] = 'Failed to add unique key.'; |
523
|
|
|
$lang['straddfk'] = 'Add foreign key'; |
524
|
|
|
$lang['strfkneedscols'] = 'Foreign key requires at least one column.'; |
525
|
|
|
$lang['strfkneedstarget'] = 'Foreign key requires a target table.'; |
526
|
|
|
$lang['strfkadded'] = 'Foreign key added.'; |
527
|
|
|
$lang['strfkaddedbad'] = 'Failed to add foreign key.'; |
528
|
|
|
$lang['strfktarget'] = 'Target table'; |
529
|
|
|
$lang['strfkcolumnlist'] = 'Columns in key'; |
530
|
|
|
$lang['strondelete'] = 'ON DELETE'; |
531
|
|
|
$lang['stronupdate'] = 'ON UPDATE'; |
532
|
|
|
// Functions |
533
|
|
|
$lang['strfunction'] = 'Function'; |
534
|
|
|
$lang['strfunctions'] = 'Functions'; |
535
|
|
|
$lang['strshowallfunctions'] = 'Show all functions'; |
536
|
|
|
$lang['strnofunction'] = 'No function found.'; |
537
|
|
|
$lang['strnofunctions'] = 'No functions found.'; |
538
|
|
|
$lang['strcreateplfunction'] = 'Create SQL/PL function'; |
539
|
|
|
$lang['strcreateinternalfunction'] = 'Create internal function'; |
540
|
|
|
$lang['strcreatecfunction'] = 'Create C function'; |
541
|
|
|
$lang['strfunctionname'] = 'Function name'; |
542
|
|
|
$lang['strreturns'] = 'Returns'; |
543
|
|
|
$lang['strproglanguage'] = 'Programming language'; |
544
|
|
|
$lang['strfunctionneedsname'] = 'You must give a name for your function.'; |
545
|
|
|
$lang['strfunctionneedsdef'] = 'You must give a definition for your function.'; |
546
|
|
|
$lang['strfunctioncreated'] = 'Function created.'; |
547
|
|
|
$lang['strfunctioncreatedbad'] = 'Function creation failed.'; |
548
|
|
|
$lang['strconfdropfunction'] = 'Are you sure you want to drop the function "%s"?'; |
549
|
|
|
$lang['strfunctiondropped'] = 'Function dropped.'; |
550
|
|
|
$lang['strfunctiondroppedbad'] = 'Function drop failed.'; |
551
|
|
|
$lang['strfunctionupdated'] = 'Function updated.'; |
552
|
|
|
$lang['strfunctionupdatedbad'] = 'Function update failed.'; |
553
|
|
|
$lang['strobjectfile'] = 'Object File'; |
554
|
|
|
$lang['strlinksymbol'] = 'Link Symbol'; |
555
|
|
|
$lang['strarguments'] = 'Arguments'; |
556
|
|
|
$lang['strargmode'] = 'Mode'; |
557
|
|
|
$lang['strargtype'] = 'Type'; |
558
|
|
|
$lang['strargadd'] = 'Add another argument'; |
559
|
|
|
$lang['strargremove'] = 'Remove this argument'; |
560
|
|
|
$lang['strargnoargs'] = 'This function will not take any arguments.'; |
561
|
|
|
$lang['strargenableargs'] = 'Enable arguments being passed to this function.'; |
562
|
|
|
$lang['strargnorowabove'] = 'There needs to be a row above this row.'; |
563
|
|
|
$lang['strargnorowbelow'] = 'There needs to be a row below this row.'; |
564
|
|
|
$lang['strargraise'] = 'Move up.'; |
565
|
|
|
$lang['strarglower'] = 'Move down.'; |
566
|
|
|
$lang['strargremoveconfirm'] = 'Are you sure you want to remove this argument? This CANNOT be undone.'; |
567
|
|
|
$lang['strfunctioncosting'] = 'Function Costing'; |
568
|
|
|
$lang['strresultrows'] = 'Result Rows'; |
569
|
|
|
$lang['strexecutioncost'] = 'Execution Cost'; |
570
|
|
|
$lang['strspecifyfunctiontodrop'] = 'You must specify at least one function to drop.'; |
571
|
|
|
// Triggers |
572
|
|
|
$lang['strtrigger'] = 'Trigger'; |
573
|
|
|
$lang['strtriggers'] = 'Triggers'; |
574
|
|
|
$lang['strshowalltriggers'] = 'Show all triggers'; |
575
|
|
|
$lang['strnotrigger'] = 'No trigger found.'; |
576
|
|
|
$lang['strnotriggers'] = 'No triggers found.'; |
577
|
|
|
$lang['strcreatetrigger'] = 'Create trigger'; |
578
|
|
|
$lang['strtriggerneedsname'] = 'You must specify a name for your trigger.'; |
579
|
|
|
$lang['strtriggerneedsfunc'] = 'You must specify a function for your trigger.'; |
580
|
|
|
$lang['strtriggercreated'] = 'Trigger created.'; |
581
|
|
|
$lang['strtriggercreatedbad'] = 'Trigger creation failed.'; |
582
|
|
|
$lang['strconfdroptrigger'] = 'Are you sure you want to drop the trigger "%s" on "%s"?'; |
583
|
|
|
$lang['strconfenabletrigger'] = 'Are you sure you want to enable the trigger "%s" on "%s"?'; |
584
|
|
|
$lang['strconfdisabletrigger'] = 'Are you sure you want to disable the trigger "%s" on "%s"?'; |
585
|
|
|
$lang['strtriggerdropped'] = 'Trigger dropped.'; |
586
|
|
|
$lang['strtriggerdroppedbad'] = 'Trigger drop failed.'; |
587
|
|
|
$lang['strtriggerenabled'] = 'Trigger enabled.'; |
588
|
|
|
$lang['strtriggerenabledbad'] = 'Trigger enable failed.'; |
589
|
|
|
$lang['strtriggerdisabled'] = 'Trigger disabled.'; |
590
|
|
|
$lang['strtriggerdisabledbad'] = 'Trigger disable failed.'; |
591
|
|
|
$lang['strtriggeraltered'] = 'Trigger altered.'; |
592
|
|
|
$lang['strtriggeralteredbad'] = 'Trigger alteration failed.'; |
593
|
|
|
$lang['strforeach'] = 'For each'; |
594
|
|
|
// Types |
595
|
|
|
$lang['strtype'] = 'Type'; |
596
|
|
|
$lang['strtypes'] = 'Types'; |
597
|
|
|
$lang['strshowalltypes'] = 'Show all types'; |
598
|
|
|
$lang['strnotype'] = 'No type found.'; |
599
|
|
|
$lang['strnotypes'] = 'No types found.'; |
600
|
|
|
$lang['strcreatetype'] = 'Create type'; |
601
|
|
|
$lang['strcreatecomptype'] = 'Create composite type'; |
602
|
|
|
$lang['strcreateenumtype'] = 'Create enum type'; |
603
|
|
|
$lang['strtypeneedsfield'] = 'You must specify at least one field.'; |
604
|
|
|
$lang['strtypeneedsvalue'] = 'You must specify at least one value.'; |
605
|
|
|
$lang['strtypeneedscols'] = 'You must specify a valid number of fields.'; |
606
|
|
|
$lang['strtypeneedsvals'] = 'You must specify a valid number of values.'; |
607
|
|
|
$lang['strinputfn'] = 'Input function'; |
608
|
|
|
$lang['stroutputfn'] = 'Output function'; |
609
|
|
|
$lang['strpassbyval'] = 'Passed by val?'; |
610
|
|
|
$lang['stralignment'] = 'Alignment'; |
611
|
|
|
$lang['strelement'] = 'Element'; |
612
|
|
|
$lang['strdelimiter'] = 'Delimiter'; |
613
|
|
|
$lang['strstorage'] = 'Storage'; |
614
|
|
|
$lang['strfield'] = 'Field'; |
615
|
|
|
$lang['strnumfields'] = 'Num. of fields'; |
616
|
|
|
$lang['strnumvalues'] = 'Num. of values'; |
617
|
|
|
$lang['strtypeneedsname'] = 'You must give a name for your type.'; |
618
|
|
|
$lang['strtypeneedslen'] = 'You must give a length for your type.'; |
619
|
|
|
$lang['strtypecreated'] = 'Type created.'; |
620
|
|
|
$lang['strtypecreatedbad'] = 'Type creation failed.'; |
621
|
|
|
$lang['strconfdroptype'] = 'Are you sure you want to drop the type "%s"?'; |
622
|
|
|
$lang['strtypedropped'] = 'Type dropped.'; |
623
|
|
|
$lang['strtypedroppedbad'] = 'Type drop failed.'; |
624
|
|
|
$lang['strflavor'] = 'Flavor'; |
625
|
|
|
$lang['strbasetype'] = 'Base'; |
626
|
|
|
$lang['strcompositetype'] = 'Composite'; |
627
|
|
|
$lang['strpseudotype'] = 'Pseudo'; |
628
|
|
|
$lang['strenum'] = 'Enum'; |
629
|
|
|
$lang['strenumvalues'] = 'Enum values'; |
630
|
|
|
// Schemas |
631
|
|
|
$lang['strschema'] = 'Schema'; |
632
|
|
|
$lang['strschemas'] = 'Schemas'; |
633
|
|
|
$lang['strshowallschemas'] = 'Show all schemas'; |
634
|
|
|
$lang['strnoschema'] = 'No schema found.'; |
635
|
|
|
$lang['strnoschemas'] = 'No schemas found.'; |
636
|
|
|
$lang['strcreateschema'] = 'Create schema'; |
637
|
|
|
$lang['strschemaname'] = 'Schema name'; |
638
|
|
|
$lang['strschemaneedsname'] = 'You must give a name for your schema.'; |
639
|
|
|
$lang['strschemacreated'] = 'Schema created.'; |
640
|
|
|
$lang['strschemacreatedbad'] = 'Schema creation failed.'; |
641
|
|
|
$lang['strconfdropschema'] = 'Are you sure you want to drop the schema "%s"?'; |
642
|
|
|
$lang['strschemadropped'] = 'Schema dropped.'; |
643
|
|
|
$lang['strschemadroppedbad'] = 'Schema drop failed.'; |
644
|
|
|
$lang['strschemaaltered'] = 'Schema altered.'; |
645
|
|
|
$lang['strschemaalteredbad'] = 'Schema alteration failed.'; |
646
|
|
|
$lang['strsearchpath'] = 'Schema search path'; |
647
|
|
|
$lang['strspecifyschematodrop'] = 'You must specify at least one schema to drop.'; |
648
|
|
|
// Reports // Domains |
649
|
|
|
$lang['strdomain'] = 'Domain'; |
650
|
|
|
$lang['strdomains'] = 'Domains'; |
651
|
|
|
$lang['strshowalldomains'] = 'Show all domains'; |
652
|
|
|
$lang['strnodomains'] = 'No domains found.'; |
653
|
|
|
$lang['strcreatedomain'] = 'Create domain'; |
654
|
|
|
$lang['strdomaindropped'] = 'Domain dropped.'; |
655
|
|
|
$lang['strdomaindroppedbad'] = 'Domain drop failed.'; |
656
|
|
|
$lang['strconfdropdomain'] = 'Are you sure you want to drop the domain "%s"?'; |
657
|
|
|
$lang['strdomainneedsname'] = 'You must give a name for your domain.'; |
658
|
|
|
$lang['strdomaincreated'] = 'Domain created.'; |
659
|
|
|
$lang['strdomaincreatedbad'] = 'Domain creation failed.'; |
660
|
|
|
$lang['strdomainaltered'] = 'Domain altered.'; |
661
|
|
|
$lang['strdomainalteredbad'] = 'Domain alteration failed.'; |
662
|
|
|
// Operators |
663
|
|
|
$lang['stroperator'] = 'Operator'; |
664
|
|
|
$lang['stroperators'] = 'Operators'; |
665
|
|
|
$lang['strshowalloperators'] = 'Show all operators'; |
666
|
|
|
$lang['strnooperator'] = 'No operator found.'; |
667
|
|
|
$lang['strnooperators'] = 'No operators found.'; |
668
|
|
|
$lang['strcreateoperator'] = 'Create operator'; |
669
|
|
|
$lang['strleftarg'] = 'Left Arg Type'; |
670
|
|
|
$lang['strrightarg'] = 'Right Arg Type'; |
671
|
|
|
$lang['strcommutator'] = 'Commutator'; |
672
|
|
|
$lang['strnegator'] = 'Negator'; |
673
|
|
|
$lang['strrestrict'] = 'Restrict'; |
674
|
|
|
$lang['strjoin'] = 'Join'; |
675
|
|
|
$lang['strhashes'] = 'Hashes'; |
676
|
|
|
$lang['strmerges'] = 'Merges'; |
677
|
|
|
$lang['strleftsort'] = 'Left sort'; |
678
|
|
|
$lang['strrightsort'] = 'Right sort'; |
679
|
|
|
$lang['strlessthan'] = 'Less than'; |
680
|
|
|
$lang['strgreaterthan'] = 'Greater than'; |
681
|
|
|
$lang['stroperatorneedsname'] = 'You must give a name for your operator.'; |
682
|
|
|
$lang['stroperatorcreated'] = 'Operator created.'; |
683
|
|
|
$lang['stroperatorcreatedbad'] = 'Operator creation failed.'; |
684
|
|
|
$lang['strconfdropoperator'] = 'Are you sure you want to drop the operator "%s"?'; |
685
|
|
|
$lang['stroperatordropped'] = 'Operator dropped.'; |
686
|
|
|
$lang['stroperatordroppedbad'] = 'Operator drop failed.'; |
687
|
|
|
// Casts |
688
|
|
|
$lang['strcasts'] = 'Casts'; |
689
|
|
|
$lang['strnocasts'] = 'No casts found.'; |
690
|
|
|
$lang['strsourcetype'] = 'Source type'; |
691
|
|
|
$lang['strtargettype'] = 'Target type'; |
692
|
|
|
$lang['strimplicit'] = 'Implicit'; |
693
|
|
|
$lang['strinassignment'] = 'In assignment'; |
694
|
|
|
$lang['strbinarycompat'] = '(Binary compatible)'; |
695
|
|
|
// Conversions |
696
|
|
|
$lang['strconversions'] = 'Conversions'; |
697
|
|
|
$lang['strnoconversions'] = 'No conversions found.'; |
698
|
|
|
$lang['strsourceencoding'] = 'Source encoding'; |
699
|
|
|
$lang['strtargetencoding'] = 'Target encoding'; |
700
|
|
|
// Languages |
701
|
|
|
$lang['strlanguages'] = 'Languages'; |
702
|
|
|
$lang['strnolanguages'] = 'No languages found.'; |
703
|
|
|
$lang['strtrusted'] = 'Trusted'; |
704
|
|
|
// Info |
705
|
|
|
$lang['strnoinfo'] = 'No information available.'; |
706
|
|
|
$lang['strreferringtables'] = 'Referring tables'; |
707
|
|
|
$lang['strparenttables'] = 'Parent tables'; |
708
|
|
|
$lang['strchildtables'] = 'Child tables'; |
709
|
|
|
// Aggregates |
710
|
|
|
$lang['straggregate'] = 'Aggregate'; |
711
|
|
|
$lang['straggregates'] = 'Aggregates'; |
712
|
|
|
$lang['strnoaggregates'] = 'No aggregates found.'; |
713
|
|
|
$lang['stralltypes'] = '(All types)'; |
714
|
|
|
$lang['strcreateaggregate'] = 'Create aggregate'; |
715
|
|
|
$lang['straggrbasetype'] = 'Input data type'; |
716
|
|
|
$lang['straggrsfunc'] = 'State transition function'; |
717
|
|
|
$lang['straggrstype'] = 'Data type for state value'; |
718
|
|
|
$lang['straggrffunc'] = 'Final function'; |
719
|
|
|
$lang['straggrinitcond'] = 'Initial condition'; |
720
|
|
|
$lang['straggrsortop'] = 'Sort operator'; |
721
|
|
|
$lang['strconfdropaggregate'] = 'Are you sure you want to drop the aggregate "%s"?'; |
722
|
|
|
$lang['straggregatedropped'] = 'Aggregate dropped.'; |
723
|
|
|
$lang['straggregatedroppedbad'] = 'Aggregate drop failed.'; |
724
|
|
|
$lang['straggraltered'] = 'Aggregate altered.'; |
725
|
|
|
$lang['straggralteredbad'] = 'Aggregate alteration failed.'; |
726
|
|
|
$lang['straggrneedsname'] = 'You must specify a name for the aggregate.'; |
727
|
|
|
$lang['straggrneedsbasetype'] = 'You must specify the input data type for the aggregate.'; |
728
|
|
|
$lang['straggrneedssfunc'] = 'You must specify the name of the state transition function for the aggregate.'; |
729
|
|
|
$lang['straggrneedsstype'] = 'You must specify the data type for the aggregate\'s state value.'; |
730
|
|
|
$lang['straggrcreated'] = 'Aggregate created.'; |
731
|
|
|
$lang['straggrcreatedbad'] = 'Aggregate creation failed.'; |
732
|
|
|
$lang['straggrshowall'] = 'Show all aggregates'; |
733
|
|
|
// Operator Classes |
734
|
|
|
$lang['stropclasses'] = 'Op Classes'; |
735
|
|
|
$lang['strnoopclasses'] = 'No operator classes found.'; |
736
|
|
|
$lang['straccessmethod'] = 'Access method'; |
737
|
|
|
// Stats and performance |
738
|
|
|
$lang['strrowperf'] = 'Row Performance'; |
739
|
|
|
$lang['strioperf'] = 'I/O Performance'; |
740
|
|
|
$lang['stridxrowperf'] = 'Index Row Performance'; |
741
|
|
|
$lang['stridxioperf'] = 'Index I/O Performance'; |
742
|
|
|
$lang['strpercent'] = '%'; |
743
|
|
|
$lang['strsequential'] = 'Sequential'; |
744
|
|
|
$lang['strscan'] = 'Scan'; |
745
|
|
|
$lang['strread'] = 'Read'; |
746
|
|
|
$lang['strfetch'] = 'Fetch'; |
747
|
|
|
$lang['strheap'] = 'Heap'; |
748
|
|
|
$lang['strtoast'] = 'TOAST'; |
749
|
|
|
$lang['strtoastindex'] = 'TOAST Index'; |
750
|
|
|
$lang['strcache'] = 'Cache'; |
751
|
|
|
$lang['strdisk'] = 'Disk'; |
752
|
|
|
$lang['strrows2'] = 'Rows'; |
753
|
|
|
// Tablespaces |
754
|
|
|
$lang['strtablespace'] = 'Tablespace'; |
755
|
|
|
$lang['strtablespaces'] = 'Tablespaces'; |
756
|
|
|
$lang['strshowalltablespaces'] = 'Show all tablespaces'; |
757
|
|
|
$lang['strnotablespaces'] = 'No tablespaces found.'; |
758
|
|
|
$lang['strcreatetablespace'] = 'Create tablespace'; |
759
|
|
|
$lang['strlocation'] = 'Location'; |
760
|
|
|
$lang['strtablespaceneedsname'] = 'You must give a name for your tablespace.'; |
761
|
|
|
$lang['strtablespaceneedsloc'] = 'You must give a directory in which to create the tablespace.'; |
762
|
|
|
$lang['strtablespacecreated'] = 'Tablespace created.'; |
763
|
|
|
$lang['strtablespacecreatedbad'] = 'Tablespace creation failed.'; |
764
|
|
|
$lang['strconfdroptablespace'] = 'Are you sure you want to drop the tablespace "%s"?'; |
765
|
|
|
$lang['strtablespacedropped'] = 'Tablespace dropped.'; |
766
|
|
|
$lang['strtablespacedroppedbad'] = 'Tablespace drop failed.'; |
767
|
|
|
$lang['strtablespacealtered'] = 'Tablespace altered.'; |
768
|
|
|
$lang['strtablespacealteredbad'] = 'Tablespace alteration failed.'; |
769
|
|
|
// Miscellaneous |
770
|
|
|
$lang['strtopbar'] = '%s running on %s:%s -- You are logged in as user "%s"'; |
771
|
|
|
$lang['strtimefmt'] = 'jS M, Y g:iA'; |
772
|
|
|
$lang['strhelp'] = 'Help'; |
773
|
|
|
$lang['strhelpicon'] = '?'; |
774
|
|
|
$lang['strhelppagebrowser'] = 'Help page browser'; |
775
|
|
|
$lang['strselecthelppage'] = 'Select a help page'; |
776
|
|
|
$lang['strinvalidhelppage'] = 'Invalid help page.'; |
777
|
|
|
$lang['strlogintitle'] = 'Login to %s'; |
778
|
|
|
$lang['strlogoutmsg'] = 'Logged out of %s'; |
779
|
|
|
$lang['strloading'] = 'Loading...'; |
780
|
|
|
$lang['strerrorloading'] = 'Error Loading'; |
781
|
|
|
$lang['strclicktoreload'] = 'Click to reload'; |
782
|
|
|
// Autovacuum |
783
|
|
|
$lang['strautovacuum'] = 'Autovacuum'; |
784
|
|
|
$lang['strturnedon'] = 'Turned On'; |
785
|
|
|
$lang['strturnedoff'] = 'Turned Off'; |
786
|
|
|
$lang['strenabled'] = 'Enabled'; |
787
|
|
|
$lang['strnovacuumconf'] = 'No autovacuum configuration found.'; |
788
|
|
|
$lang['strvacuumbasethreshold'] = 'Vacuum Base Threshold'; |
789
|
|
|
$lang['strvacuumscalefactor'] = 'Vacuum Scale Factor'; |
790
|
|
|
$lang['stranalybasethreshold'] = 'Analyze Base Threshold'; |
791
|
|
|
$lang['stranalyzescalefactor'] = 'Analyze Scale Factor'; |
792
|
|
|
$lang['strvacuumcostdelay'] = 'Vacuum Cost Delay'; |
793
|
|
|
$lang['strvacuumcostlimit'] = 'Vacuum Cost Limit'; |
794
|
|
|
$lang['strvacuumpertable'] = 'Autovacuum setup per table'; |
795
|
|
|
$lang['straddvacuumtable'] = 'Add autovacuum setup for a table'; |
796
|
|
|
$lang['streditvacuumtable'] = 'Edit autovacuum setup for table %s'; |
797
|
|
|
$lang['strdelvacuumtable'] = 'Delete autovacuum setup for table %s ?'; |
798
|
|
|
$lang['strvacuumtablereset'] = 'Autovacuum setup for table %s reset to default values'; |
799
|
|
|
$lang['strdelvacuumtablefail'] = 'Fail to remove the autovacuum setup for table %s'; |
800
|
|
|
$lang['strsetvacuumtablesaved'] = 'Autovacuum setup for table %s saved.'; |
801
|
|
|
$lang['strsetvacuumtablefail'] = 'Autovacuum setup for table %s failed.'; |
802
|
|
|
$lang['strspecifydelvacuumtable'] = 'You must specify the table you want remove the autovacuum parameters from.'; |
803
|
|
|
$lang['strspecifyeditvacuumtable'] = 'You must specify the table you want to edit the autovacuum parameters from.'; |
804
|
|
|
$lang['strnotdefaultinred'] = 'Not default values are in red.'; |
805
|
|
|
// Table-level Locks |
806
|
|
|
$lang['strlocks'] = 'Locks'; |
807
|
|
|
$lang['strtransaction'] = 'Transaction ID'; |
808
|
|
|
$lang['strvirtualtransaction'] = 'Virtual Transaction ID'; |
809
|
|
|
$lang['strprocessid'] = 'Process ID'; |
810
|
|
|
$lang['strmode'] = 'Lock mode'; |
811
|
|
|
$lang['strislockheld'] = 'Is lock held?'; |
812
|
|
|
// Prepared transactions |
813
|
|
|
$lang['strpreparedxacts'] = 'Prepared transactions'; |
814
|
|
|
$lang['strxactid'] = 'Transaction ID'; |
815
|
|
|
$lang['strgid'] = 'Global ID'; |
816
|
|
|
// Fulltext search |
817
|
|
|
$lang['strfulltext'] = 'Full Text Search'; |
818
|
|
|
$lang['strftsconfig'] = 'FTS configuration'; |
819
|
|
|
$lang['strftsconfigs'] = 'Configurations'; |
820
|
|
|
$lang['strftscreateconfig'] = 'Create FTS configuration'; |
821
|
|
|
$lang['strftscreatedict'] = 'Create dictionary'; |
822
|
|
|
$lang['strftscreatedicttemplate'] = 'Create dictionary template'; |
823
|
|
|
$lang['strftscreateparser'] = 'Create parser'; |
824
|
|
|
$lang['strftsnoconfigs'] = 'No FTS configuration found.'; |
825
|
|
|
$lang['strftsconfigdropped'] = 'FTS configuration dropped.'; |
826
|
|
|
$lang['strftsconfigdroppedbad'] = 'FTS configuration drop failed.'; |
827
|
|
|
$lang['strconfdropftsconfig'] = 'Are you sure you want to drop the FTS configuration "%s"?'; |
828
|
|
|
$lang['strconfdropftsdict'] = 'Are you sure you want to drop the FTS dictionary "%s"?'; |
829
|
|
|
$lang['strconfdropftsmapping'] = 'Are you sure you want to drop mapping "%s" of FTS configuration "%s"?'; |
830
|
|
|
$lang['strftstemplate'] = 'Template'; |
831
|
|
|
$lang['strftsparser'] = 'Parser'; |
832
|
|
|
$lang['strftsconfigneedsname'] = 'You must give a name for your FTS configuration.'; |
833
|
|
|
$lang['strftsconfigcreated'] = 'FTS configuration created.'; |
834
|
|
|
$lang['strftsconfigcreatedbad'] = 'FTS configuration creation failed.'; |
835
|
|
|
$lang['strftsmapping'] = 'Mapping'; |
836
|
|
|
$lang['strftsdicts'] = 'Dictionaries'; |
837
|
|
|
$lang['strftsdict'] = 'Dictionary'; |
838
|
|
|
$lang['strftsemptymap'] = 'Empty FTS configuration map.'; |
839
|
|
|
$lang['strftsconfigaltered'] = 'FTS configuration altered.'; |
840
|
|
|
$lang['strftsconfigalteredbad'] = 'FTS configuration alter failed.'; |
841
|
|
|
$lang['strftsconfigmap'] = 'FTS configuration map'; |
842
|
|
|
$lang['strftsparsers'] = 'FTS parsers'; |
843
|
|
|
$lang['strftsnoparsers'] = 'No FTS parsers available.'; |
844
|
|
|
$lang['strftsnodicts'] = 'No FTS dictionaries available.'; |
845
|
|
|
$lang['strftsdictcreated'] = 'FTS dictionary created.'; |
846
|
|
|
$lang['strftsdictcreatedbad'] = 'FTS dictionary creation failed.'; |
847
|
|
|
$lang['strftslexize'] = 'Lexize'; |
848
|
|
|
$lang['strftsinit'] = 'Init'; |
849
|
|
|
$lang['strftsoptionsvalues'] = 'Options and values'; |
850
|
|
|
$lang['strftsdictneedsname'] = 'You must give a name for your FTS dictionary.'; |
851
|
|
|
$lang['strftsdictdropped'] = 'FTS dictionary dropped.'; |
852
|
|
|
$lang['strftsdictdroppedbad'] = 'FTS dictionary drop failed.'; |
853
|
|
|
$lang['strftsdictaltered'] = 'FTS dictionary altered.'; |
854
|
|
|
$lang['strftsdictalteredbad'] = 'FTS dictionary alter failed.'; |
855
|
|
|
$lang['strftsaddmapping'] = 'Add new mapping'; |
856
|
|
|
$lang['strftsspecifymappingtodrop'] = 'You must specify at least one mapping to drop.'; |
857
|
|
|
$lang['strftsspecifyconfigtoalter'] = 'You must specify a FTS configuration to alter'; |
858
|
|
|
$lang['strftsmappingdropped'] = 'FTS mapping dropped.'; |
859
|
|
|
$lang['strftsmappingdroppedbad'] = 'FTS mapping drop failed.'; |
860
|
|
|
$lang['strftsnodictionaries'] = 'No dictionaries found.'; |
861
|
|
|
$lang['strftsmappingaltered'] = 'FTS mapping altered.'; |
862
|
|
|
$lang['strftsmappingalteredbad'] = 'FTS mapping alter failed.'; |
863
|
|
|
$lang['strftsmappingadded'] = 'FTS mapping added.'; |
864
|
|
|
$lang['strftsmappingaddedbad'] = 'FTS mapping add failed.'; |
865
|
|
|
$lang['strftstabconfigs'] = 'Configurations'; |
866
|
|
|
$lang['strftstabdicts'] = 'Dictionaries'; |
867
|
|
|
$lang['strftstabparsers'] = 'Parsers'; |
868
|
|
|
$lang['strftscantparsercopy'] = 'Can\'t specify both parser and template during text search configuration creation.'; |
869
|
|
|
// Plugins |
870
|
|
|
$lang['strpluginnotfound'] = 'Error: plugin \'%s\' not found. Check if this plugin exists in the plugins/ directory, or if this plugins has a plugin.php file. Plugin\'s names are case sensitive'; |
871
|
|
|
$lang['stractionnotfound'] = 'Error: action \'%s\' not found in the \'%s\' plugin, or it was not specified as an action.'; |
872
|
|
|
$lang['strhooknotfound'] = 'Error: hook \'%s\' is not avaliable.'; |
873
|
|
|
|
874
|
|
|
$this->lang = $lang; |
875
|
|
|
} |
876
|
|
|
} |
877
|
|
|
|