Merge branch 'master' of ssh://repo.or.cz/srv/git/phpmyadmin/madhuracj into OpenGIS
[phpmyadmin/madhuracj.git] / js / messages.php
blob26377ac2f24827facf3a034584124aaa68663609
1 <?php
2 /* vim: set expandtab sw=4 ts=4 sts=4: */
3 /**
4 * Exporting of translated messages from PHP to Javascript
6 * @package PhpMyAdmin
7 */
9 chdir('..');
11 // Send correct type:
12 header('Content-Type: text/javascript; charset=UTF-8');
14 // Cache output in client - the nocache query parameter makes sure that this
15 // file is reloaded when config changes
16 header('Expires: ' . gmdate('D, d M Y H:i:s', time() + 3600) . ' GMT');
18 // Avoid loading the full common.inc.php because this would add many
19 // non-js-compatible stuff like DOCTYPE
20 define('PMA_MINIMUM_COMMON', true);
21 require_once './libraries/common.inc.php';
22 // Close session early as we won't write anything there
23 session_write_close();
24 // But this one is needed for PMA_escapeJsString()
25 require_once './libraries/js_escape.lib.php';
27 $js_messages['strNoDropDatabases'] = $cfg['AllowUserDropDatabase'] ? '' : __('"DROP DATABASE" statements are disabled.');
29 /* For confirmations */
30 $js_messages['strDoYouReally'] = __('Do you really want to ');
31 $js_messages['strDropDatabaseStrongWarning'] = __('You are about to DESTROY a complete database!');
32 $js_messages['strDropTableStrongWarning'] = __('You are about to DESTROY a complete table!');
33 $js_messages['strTruncateTableStrongWarning'] = __('You are about to TRUNCATE a complete table!');
34 $js_messages['strDeleteTrackingData'] = __('Delete tracking data for this table');
35 $js_messages['strDeletingTrackingData'] = __('Deleting tracking data');
36 $js_messages['strDroppingPrimaryKeyIndex'] = __('Dropping Primary Key/Index');
37 $js_messages['strOperationTakesLongTime'] = __('This operation could take a long time. Proceed anyway?');
39 /* For blobstreaming */
40 $js_messages['strBLOBRepositoryDisableStrongWarning'] = __('You are about to DISABLE a BLOB Repository!');
41 $js_messages['strBLOBRepositoryDisableAreYouSure'] = sprintf(__('Are you sure you want to disable all BLOB references for database %s?'), PMA_escapeJsString($GLOBALS['db']));
43 /* For indexes */
44 $js_messages['strFormEmpty'] = __('Missing value in the form!');
45 $js_messages['strNotNumber'] = __('This is not a number!');
46 $js_messages['strAddIndex'] = __('Add Index');
47 $js_messages['strEditIndex'] = __('Edit Index');
48 $js_messages['strAddToIndex'] = __('Add %d column(s) to index');
50 /* Charts */
51 /* l10n: Default description for the y-Axis of Charts */
52 $js_messages['strTotalCount'] = __('Total count');
54 /* For server_privileges.js */
55 $js_messages['strHostEmpty'] = __('The host name is empty!');
56 $js_messages['strUserEmpty'] = __('The user name is empty!');
57 $js_messages['strPasswordEmpty'] = __('The password is empty!');
58 $js_messages['strPasswordNotSame'] = __('The passwords aren\'t the same!');
59 $js_messages['strAddUser'] = __('Add user');
60 $js_messages['strReloadingPrivileges'] = __('Reloading Privileges');
61 $js_messages['strRemovingSelectedUsers'] = __('Removing Selected Users');
62 $js_messages['strClose'] = __('Close');
64 /* for server_status.js */
65 $js_messages['strEdit'] = __('Edit');
66 $js_messages['strLiveTrafficChart'] = __('Live traffic chart');
67 $js_messages['strLiveConnChart'] = __('Live conn./process chart');
68 $js_messages['strLiveQueryChart'] = __('Live query chart');
70 $js_messages['strStaticData'] = __('Static data');
71 /* l10n: Total number of queries */
72 $js_messages['strTotal'] = __('Total');
73 /* l10n: Other, small valued, queries */
74 $js_messages['strOther'] = __('Other');
75 /* l10n: Thousands separator */
76 $js_messages['strThousandsSeperator'] = __(',');
77 /* l10n: Decimal separator */
78 $js_messages['strDecimalSeperator'] = __('.');
80 $js_messages['strChartKBSent'] = __('KiB sent since last refresh');
81 $js_messages['strChartKBReceived'] = __('KiB received since last refresh');
82 $js_messages['strChartServerTraffic'] = __('Server traffic (in KiB)');
83 $js_messages['strChartConnections'] = __('Connections since last refresh');
84 $js_messages['strChartProcesses'] = __('Processes');
85 $js_messages['strChartConnectionsTitle'] = __('Connections / Processes');
86 /* l10n: Questions is the name of a MySQL Status variable */
87 $js_messages['strChartIssuedQueries'] = __('Questions since last refresh');
88 /* l10n: Questions is the name of a MySQL Status variable */
89 $js_messages['strChartIssuedQueriesTitle'] = __('Questions (executed statements by the server)');
91 $js_messages['strChartQueryPie'] = __('Query statistics');
93 /* server status monitor */
94 $js_messages['strIncompatibleMonitorConfig'] = __('Local monitor configuration incompatible');
95 $js_messages['strIncompatibleMonitorConfigDescription'] = __('The chart arrangement configuration in your browsers local storage is not compatible anymore to the newer version of the monitor dialog. It is very likely that your current configuration will not work anymore. Please reset your configuration to default in the <i>Settings</i> menu.');
97 $js_messages['strQueryCacheEfficiency'] = __('Query cache efficiency');
98 $js_messages['strQueryCacheUsage'] = __('Query cache usage');
99 $js_messages['strQueryCacheUsed'] = __('Query cache used');
101 $js_messages['strSystemCPUUsage'] = __('System CPU Usage');
102 $js_messages['strSystemMemory'] = __('System memory');
103 $js_messages['strSystemSwap'] = __('System swap');
104 $js_messages['strMiB'] = __('MiB');
105 $js_messages['strKiB'] = __('KiB');
107 $js_messages['strAverageLoad'] = __('Average load');
108 $js_messages['strTotalMemory'] = __('Total memory');
109 $js_messages['strCachedMemory'] = __('Cached memory');
110 $js_messages['strBufferedMemory'] = __('Buffered memory');
111 $js_messages['strFreeMemory'] = __('Free memory');
112 $js_messages['strUsedMemory'] = __('Used memory');
114 $js_messages['strTotalSwap'] = __('Total Swap');
115 $js_messages['strCachedSwap'] = __('Cached Swap');
116 $js_messages['strUsedSwap'] = __('Used Swap');
117 $js_messages['strFreeSwap'] = __('Free Swap');
119 $js_messages['strBytesSent'] = __('Bytes sent');
120 $js_messages['strBytesReceived'] = __('Bytes received');
121 $js_messages['strConnections'] = __('Connections');
122 $js_messages['strProcesses'] = __('Processes');
124 /* summary row */
125 $js_messages['strB'] = __('B');
126 $js_messages['strKiB'] = __('KiB');
127 $js_messages['strMiB'] = __('MiB');
128 $js_messages['strGiB'] = __('GiB');
129 $js_messages['strTiB'] = __('TiB');
130 $js_messages['strPiB'] = __('PiB');
131 $js_messages['strEiB'] = __('EiB');
132 $js_messages['strTables'] = __('%d table(s)');
134 /* l10n: Questions is the name of a MySQL Status variable */
135 $js_messages['strQuestions'] = __('Questions');
136 $js_messages['strTraffic'] = __('Traffic');
137 $js_messages['strSettings'] = __('Settings');
138 $js_messages['strRemoveChart'] = __('Remove chart');
139 $js_messages['strEditChart'] = __('Edit title and labels');
140 $js_messages['strAddChart'] = __('Add chart to grid');
141 $js_messages['strClose'] = __('Close');
142 $js_messages['strAddOneSeriesWarning'] = __('Please add at least one variable to the series');
143 $js_messages['strNone'] = __('None');
144 $js_messages['strResumeMonitor'] = __('Resume monitor');
145 $js_messages['strPauseMonitor'] = __('Pause monitor');
146 /* Monitor: Instructions Dialog */
147 $js_messages['strBothLogOn'] = __('general_log and slow_query_log are enabled.');
148 $js_messages['strGenLogOn'] = __('general_log is enabled.');
149 $js_messages['strSlowLogOn'] = __('slow_query_log is enabled.');
150 $js_messages['strBothLogOff'] = __('slow_query_log and general_log are disabled.');
151 $js_messages['strLogOutNotTable'] = __('log_output is not set to TABLE.');
152 $js_messages['strLogOutIsTable'] = __('log_output is set to TABLE.');
153 $js_messages['strSmallerLongQueryTimeAdvice'] = __('slow_query_log is enabled, but the server logs only queries that take longer than %d seconds. It is advisable to set this long_query_time 0-2 seconds, depending on your system.');
154 $js_messages['strLongQueryTimeSet'] = __('long_query_time is set to %d second(s).');
155 $js_messages['strSettingsAppliedGlobal'] = __('Following settings will be applied globally and reset to default on server restart:');
156 /* l10n: %s is FILE or TABLE */
157 $js_messages['strSetLogOutput'] = __('Set log_output to %s');
158 /* l10n: Enable in this context means setting a status variable to ON */
159 $js_messages['strEnableVar'] = __('Enable %s');
160 /* l10n: Disable in this context means setting a status variable to OFF */
161 $js_messages['strDisableVar'] = __('Disable %s');
162 /* l10n: %d seconds */
163 $js_messages['setSetLongQueryTime'] = __('Set long_query_time to %ds');
164 $js_messages['strNoSuperUser'] = __('You can\'t change these variables. Please log in as root or contact your database administrator.');
165 $js_messages['strChangeSettings'] = __('Change settings');
166 $js_messages['strCurrentSettings'] = __('Current settings');
168 $js_messages['strChartTitle'] = __('Chart Title');
169 /* l10n: As in differential values */
170 $js_messages['strDifferential'] = __('Differential');
171 $js_messages['strDividedBy'] = __('Divided by %s:');
173 $js_messages['strFromSlowLog'] = __('From slow log');
174 $js_messages['strFromGeneralLog'] = __('From general log');
175 $js_messages['strAnalysingLogs'] = __('Analysing & loading logs. This may take a while.');
176 $js_messages['strCountColumnExplanation'] = __('This column shows the amount of identical queries that are grouped together. However only the SQL query itself has been used as a grouping criteria, so the other attributes of queries, such as start time, may differ.');
177 $js_messages['strMoreCountColumnExplanation'] = __('Since grouping of INSERTs queries has been selected, INSERT queries into the same table are also being grouped together, disregarding of the inserted data.');
178 $js_messages['strLogDataLoaded'] = __('Log data loaded. Queries executed in this time span:');
180 $js_messages['strJumpToTable'] = __('Jump to Log table');
181 $js_messages['strNoDataFound'] = __('Log analysed, but no data found in this time span.');
183 /* l10n: A collection of available filters */
184 $js_messages['strFiltersForLogTable'] = __('Log table filter options');
185 /* l10n: Filter as in "Start Filtering" */
186 $js_messages['strFilter'] = __('Filter');
187 $js_messages['strFilterByWordRegexp'] = __('Filter queries by word/regexp:');
188 $js_messages['strIgnoreWhereAndGroup'] = __('Group queries, ignoring variable data in WHERE clauses');
189 $js_messages['strSumRows'] = __('Sum of grouped rows:');
190 $js_messages['strTotal'] = __('Total:');
192 $js_messages['strLoadingLogs'] = __('Loading logs');
193 $js_messages['strRefreshFailed'] = __('Monitor refresh failed');
194 $js_messages['strInvalidResponseExplanation'] = __('While requesting new chart data the server returned an invalid response. This is most likely because your session expired. Reloading the page and reentering your credentials should help.');
195 $js_messages['strReloadPage'] = __('Reload page');
197 $js_messages['strAffectedRows'] = __('Affected rows:');
199 $js_messages['strFailedParsingConfig'] = __('Failed parsing config file. It doesn\'t seem to be valid JSON code.');
200 $js_messages['strFailedBuildingGrid'] = __('Failed building chart grid with imported config. Resetting to default config...');
201 $js_messages['strImport'] = __('Import');
203 $js_messages['strAnalyzeQuery'] = __('Analyse Query');
205 /* Server status advisor */
207 $js_messages['strAdvisorSystem'] = __('Advisor system');
208 $js_messages['strPerformanceIssues'] = __('Possible performance issues');
209 $js_messages['strIssuse'] = __('Issue');
210 $js_messages['strRecommendation'] = __('Recommendation');
211 $js_messages['strRuleDetails'] = __('Rule details');
212 $js_messages['strJustification'] = __('Justification');
213 $js_messages['strFormula'] = __('Used variable / formula');
214 $js_messages['strTest'] = __('Test');
217 /* For inline query editing */
218 $js_messages['strGo'] = __('Go');
219 $js_messages['strCancel'] = __('Cancel');
221 /* For Ajax Notifications */
222 $js_messages['strLoading'] = __('Loading');
223 $js_messages['strProcessingRequest'] = __('Processing Request');
224 $js_messages['strErrorProcessingRequest'] = __('Error in Processing Request');
225 $js_messages['strDroppingColumn'] = __('Dropping Column');
226 $js_messages['strAddingPrimaryKey'] = __('Adding Primary Key');
227 $js_messages['strOK'] = __('OK');
228 $js_messages['strDismiss'] = __('Click to dismiss this notification');
230 /* For db_operations.js */
231 $js_messages['strRenamingDatabases'] = __('Renaming Databases');
232 $js_messages['strReloadDatabase'] = __('Reload Database');
233 $js_messages['strCopyingDatabase'] = __('Copying Database');
234 $js_messages['strChangingCharset'] = __('Changing Charset');
235 $js_messages['strTableMustHaveAtleastOneColumn'] = __('Table must have at least one column');
236 $js_messages['strYes'] = __('Yes');
237 $js_messages['strNo'] = __('No');
239 /* For db_stucture.js */
240 $js_messages['strInsertTable'] = __('Insert Table');
241 $js_messages['strHideIndexes'] = __('Hide indexes');
242 $js_messages['strShowIndexes'] = __('Show indexes');
244 /* For db_search.js */
245 $js_messages['strSearching'] = __('Searching');
246 $js_messages['strHideSearchResults'] = __('Hide search results');
247 $js_messages['strShowSearchResults'] = __('Show search results');
248 $js_messages['strBrowsing'] = __('Browsing');
249 $js_messages['strDeleting'] = __('Deleting');
251 /* For db_routines.js */
252 $js_messages['MissingReturn'] = __('The definition of a stored function must contain a RETURN statement!');
254 /* For ENUM/SET editor*/
255 $js_messages['enum_editor'] = __('ENUM/SET editor');
256 $js_messages['enum_columnVals'] =__('Values for column %s');
257 $js_messages['enum_newColumnVals'] = __('Values for a new column');
258 $js_messages['enum_hint'] =__('Enter each value in a separate field');
259 $js_messages['enum_addValue'] =__('Add %d value(s)');
261 /* For import.js */
262 $js_messages['strImportCSV'] = __('Note: If the file contains multiple tables, they will be combined into one');
264 /* For sql.js */
265 $js_messages['strHideQueryBox'] = __('Hide query box');
266 $js_messages['strShowQueryBox'] = __('Show query box');
267 $js_messages['strEdit'] = __('Edit');
268 $js_messages['strNoRowSelected'] = __('No rows selected');
269 $js_messages['strChangeTbl'] = __('Change');
270 $js_messages['strQueryExecutionTime'] = __('Query execution time');
272 /* For server_variables.js */
273 $js_messages['strSave'] = __('Save');
275 /* For tbl_select.js */
276 $js_messages['strHideSearchCriteria'] = __('Hide search criteria');
277 $js_messages['strShowSearchCriteria'] = __('Show search criteria');
279 /* For tbl_zoom_plot.js */
280 $js_messages['strZoomSearch'] = __('Zoom Search');
281 $js_messages['strDisplayHelp'] = '<ul><li>'
282 . __('Each point represents a data row.')
283 . '</li><li>'
284 . __('Hovering over a point will show its label.')
285 . '</li><li>'
286 . __('Use mousewheel to zoom in or out of the plot.')
287 . '</li><li>'
288 . __('Click and drag the mouse to navigate the plot.')
289 . '</li><li>'
290 . __('Click reset zoom link to come back to original state.')
291 . '</li><li>'
292 . __('Click a data point to view and possibly edit the data row.')
293 . '</li><li>'
294 . __('The plot can be resized by dragging it along the bottom right corner.')
295 . '</li><li>'
296 . __('Strings are converted into integer for plotting')
297 . '</li></ul>';
298 $js_messages['strInputNull'] = '<strong>' . __('Select two columns') . '</strong>';
299 $js_messages['strSameInputs'] = '<strong>' . __('Select two different columns') . '</strong>';
300 $js_messages['strQueryResults'] = __('Query results');
301 $js_messages['strDataPointContent'] = __('Data point content');
303 /* For tbl_change.js */
304 $js_messages['strIgnore'] = __('Ignore');
305 $js_messages['strCopy'] = __('Copy');
306 $js_messages['strX'] = __('X');
307 $js_messages['strY'] = __('Y');
308 $js_messages['strPoint'] = __('Point');
309 $js_messages['strPointN'] = __('Point %d');
310 $js_messages['strLineString'] = __('Linestring');
311 $js_messages['strPolygon'] = __('Polygon');
312 $js_messages['strGeometry'] = __('Geometry');
313 $js_messages['strInnerRing'] = __('Inner Ring');
314 $js_messages['strOuterRing'] = __('Outer Ring');
315 $js_messages['strAddPoint'] = __('Add a point');
316 $js_messages['strAddInnerRing'] = __('Add an inner ring');
317 $js_messages['strAddPolygon'] = __('Add a polygon');
319 /* For tbl_structure.js */
320 $js_messages['strAddColumns'] = __('Add columns');
322 /* Designer (js/pmd/move.js) */
323 $js_messages['strSelectReferencedKey'] = __('Select referenced key');
324 $js_messages['strSelectForeignKey'] = __('Select Foreign Key');
325 $js_messages['strPleaseSelectPrimaryOrUniqueKey'] = __('Please select the primary key or a unique key');
326 $js_messages['strChangeDisplay'] = __('Choose column to display');
327 $js_messages['strLeavingDesigner'] = __('You haven\'t saved the changes in the layout. They will be lost if you don\'t save them. Do you want to continue?');
329 /* Visual query builder (js/pmd/move.js) */
330 $js_messages['strAddOption'] = __('Add an option for column ');
332 /* For makegrid.js (column reordering, show/hide column, grid editing) */
333 $js_messages['strCellEditHint'] = __('Press escape to cancel editing');
334 $js_messages['strSaveCellWarning'] = __('You have edited some data and they have not been saved. Are you sure you want to leave this page before saving the data?');
335 $js_messages['strColOrderHint'] = __('Drag to reorder');
336 $js_messages['strSortHint'] = __('Click to sort');
337 $js_messages['strColMarkHint'] = __('Click to mark/unmark');
338 $js_messages['strColVisibHint'] = __('Click the drop-down arrow<br />to toggle column\'s visibility');
339 $js_messages['strShowAllCol'] = __('Show all');
340 $js_messages['strAlertNonUnique'] = __('This table does not contain a unique column. Features related to the grid edit, checkbox, Edit, Copy and Delete links may not work after saving.');
341 $js_messages['strGridEditFeatureHint'] = __('You can also edit most columns<br />by clicking directly on their content.');
342 $js_messages['strGoToLink'] = __('Go to link');
344 /* password generation */
345 $js_messages['strGeneratePassword'] = __('Generate password');
346 $js_messages['strGenerate'] = __('Generate');
347 $js_messages['strChangePassword'] = __('Change Password');
349 /* navigation tabs */
350 $js_messages['strMore'] = __('More');
352 /* update */
353 $js_messages['strNewerVersion'] = __('A newer version of phpMyAdmin is available and you should consider upgrading. The newest version is %s, released on %s.');
354 /* l10n: Latest available phpMyAdmin version */
355 $js_messages['strLatestAvailable'] = __(', latest stable version:');
356 $js_messages['strUpToDate'] = __('up to date');
359 echo "var PMA_messages = new Array();\n";
360 foreach ($js_messages as $name => $js_message) {
361 PMA_printJsValue("PMA_messages['" . $name . "']", $js_message);
364 /* Calendar */
365 echo "var themeCalendarImage = '" . $GLOBALS['pmaThemeImage'] . 'b_calendar.png' . "';\n";
367 /* Image path */
368 echo "var pmaThemeImage = '" . $GLOBALS['pmaThemeImage'] . "';\n";
370 /* Version */
371 echo "var pmaversion = '" . PMA_VERSION . "';\n";
373 echo "if ($.datepicker) {\n";
374 /* l10n: Display text for calendar close link */
375 PMA_printJsValue("$.datepicker.regional['']['closeText']", __('Done'));
376 /* l10n: Display text for previous month link in calendar */
377 PMA_printJsValue(
378 "$.datepicker.regional['']['prevText']",
379 _pgettext('Previous month', 'Prev')
381 /* l10n: Display text for next month link in calendar */
382 PMA_printJsValue(
383 "$.datepicker.regional['']['nextText']",
384 _pgettext('Next month', 'Next')
386 /* l10n: Display text for current month link in calendar */
387 PMA_printJsValue("$.datepicker.regional['']['currentText']", __('Today'));
388 PMA_printJsValue("$.datepicker.regional['']['monthNames']",
389 array(
390 __('January'),
391 __('February'),
392 __('March'),
393 __('April'),
394 __('May'),
395 __('June'),
396 __('July'),
397 __('August'),
398 __('September'),
399 __('October'),
400 __('November'),
401 __('December')));
402 PMA_printJsValue("$.datepicker.regional['']['monthNamesShort']",
403 array(
404 /* l10n: Short month name */
405 __('Jan'),
406 /* l10n: Short month name */
407 __('Feb'),
408 /* l10n: Short month name */
409 __('Mar'),
410 /* l10n: Short month name */
411 __('Apr'),
412 /* l10n: Short month name */
413 _pgettext('Short month name', 'May'),
414 /* l10n: Short month name */
415 __('Jun'),
416 /* l10n: Short month name */
417 __('Jul'),
418 /* l10n: Short month name */
419 __('Aug'),
420 /* l10n: Short month name */
421 __('Sep'),
422 /* l10n: Short month name */
423 __('Oct'),
424 /* l10n: Short month name */
425 __('Nov'),
426 /* l10n: Short month name */
427 __('Dec')));
428 PMA_printJsValue("$.datepicker.regional['']['dayNames']",
429 array(
430 __('Sunday'),
431 __('Monday'),
432 __('Tuesday'),
433 __('Wednesday'),
434 __('Thursday'),
435 __('Friday'),
436 __('Saturday')));
437 PMA_printJsValue("$.datepicker.regional['']['dayNamesShort']",
438 array(
439 /* l10n: Short week day name */
440 __('Sun'),
441 /* l10n: Short week day name */
442 __('Mon'),
443 /* l10n: Short week day name */
444 __('Tue'),
445 /* l10n: Short week day name */
446 __('Wed'),
447 /* l10n: Short week day name */
448 __('Thu'),
449 /* l10n: Short week day name */
450 __('Fri'),
451 /* l10n: Short week day name */
452 __('Sat')));
453 PMA_printJsValue("$.datepicker.regional['']['dayNamesMin']",
454 array(
455 /* l10n: Minimal week day name */
456 __('Su'),
457 /* l10n: Minimal week day name */
458 __('Mo'),
459 /* l10n: Minimal week day name */
460 __('Tu'),
461 /* l10n: Minimal week day name */
462 __('We'),
463 /* l10n: Minimal week day name */
464 __('Th'),
465 /* l10n: Minimal week day name */
466 __('Fr'),
467 /* l10n: Minimal week day name */
468 __('Sa')));
469 /* l10n: Column header for week of the year in calendar */
470 PMA_printJsValue("$.datepicker.regional['']['weekHeader']", __('Wk'));
472 $.extend($.datepicker._defaults, $.datepicker.regional['']);
473 } /* if ($.datepicker) */
475 <?php
476 echo "if ($.timepicker) {\n";
477 PMA_printJsValue("$.timepicker.regional['']['timeText']", __('Time'));
478 PMA_printJsValue("$.timepicker.regional['']['hourText']", __('Hour'));
479 PMA_printJsValue("$.timepicker.regional['']['minuteText']", __('Minute'));
480 PMA_printJsValue("$.timepicker.regional['']['secondText']", __('Second'));
482 $.extend($.timepicker._defaults, $.timepicker.regional['']);
483 } /* if ($.timepicker) */