Translation update done using Pootle.
[phpmyadmin/ammaryasirr.git] / js / messages.php
blob4d9be93b1d5f252b13414af5da3d3a3f5011eaaf
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['strClickToSelect'] = __('Click to select');
28 $js_messages['strClickToUnselect'] = __('Click to unselect');
29 $js_messages['strNoDropDatabases'] = $cfg['AllowUserDropDatabase'] ? '' : __('"DROP DATABASE" statements are disabled.');
31 /* For confirmations */
32 $js_messages['strDoYouReally'] = __('Do you really want to ');
33 $js_messages['strDropDatabaseStrongWarning'] = __('You are about to DESTROY a complete database!');
34 $js_messages['strDropTableStrongWarning'] = __('You are about to DESTROY a complete table!');
35 $js_messages['strTruncateTableStrongWarning'] = __('You are about to TRUNCATE a complete table!');
36 $js_messages['strDeleteTrackingData'] = __('Delete tracking data for this table');
37 $js_messages['strDeletingTrackingData'] = __('Deleting tracking data');
38 $js_messages['strDroppingPrimaryKeyIndex'] = __('Dropping Primary Key/Index');
39 $js_messages['strOperationTakesLongTime'] = __('This operation could take a long time. Proceed anyway?');
41 /* For blobstreaming */
42 $js_messages['strBLOBRepositoryDisableStrongWarning'] = __('You are about to DISABLE a BLOB Repository!');
43 $js_messages['strBLOBRepositoryDisableAreYouSure'] = sprintf(__('Are you sure you want to disable all BLOB references for database %s?'), PMA_escapeJsString($GLOBALS['db']));
45 /* For indexes */
46 $js_messages['strFormEmpty'] = __('Missing value in the form!');
47 $js_messages['strNotNumber'] = __('This is not a number!');
49 /* Charts */
50 /* l10n: Default description for the y-Axis of Charts */
51 $js_messages['strTotalCount'] = __('Total count');
53 /* For server_privileges.js */
54 $js_messages['strHostEmpty'] = __('The host name is empty!');
55 $js_messages['strUserEmpty'] = __('The user name is empty!');
56 $js_messages['strPasswordEmpty'] = __('The password is empty!');
57 $js_messages['strPasswordNotSame'] = __('The passwords aren\'t the same!');
58 $js_messages['strAddUser'] = __('Add user');
59 $js_messages['strReloadingPrivileges'] = __('Reloading Privileges');
60 $js_messages['strRemovingSelectedUsers'] = __('Removing Selected Users');
61 $js_messages['strClose'] = __('Close');
63 /* for server_status.js */
64 $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['strSystemCPUUsage'] = __('System CPU Usage');
95 $js_messages['strSystemMemory'] = __('System memory');
96 $js_messages['strSystemSwap'] = __('System swap');
97 $js_messages['strMiB'] = __('MiB');
98 $js_messages['strKiB'] = __('KiB');
100 $js_messages['strAverageLoad'] = __('Average load');
101 $js_messages['strTotalMemory'] = __('Total memory');
102 $js_messages['strCachedMemory'] = __('Cached memory');
103 $js_messages['strBufferedMemory'] = __('Buffered memory');
104 $js_messages['strFreeMemory'] = __('Free memory');
105 $js_messages['strUsedMemory'] = __('Used memory');
107 $js_messages['strTotalSwap'] = __('Total Swap');
108 $js_messages['strCachedSwap'] = __('Cached Swap');
109 $js_messages['strUsedSwap'] = __('Used Swap');
110 $js_messages['strFreeSwap'] = __('Free Swap');
112 $js_messages['strBytesSent'] = __('Bytes sent');
113 $js_messages['strBytesReceived'] = __('Bytes received');
114 $js_messages['strConnections'] = __('Connections');
115 $js_messages['strProcesses'] = __('Processes');
117 /* l10n: Questions is the name of a MySQL Status variable */
118 $js_messages['strQuestions'] = __('Questions');
119 $js_messages['strTraffic'] = __('Traffic');
120 $js_messages['strSettings'] = __('Settings');
121 $js_messages['strRemoveChart'] = __('Remove chart');
122 $js_messages['strEditChart'] = __('Edit title and labels');
123 $js_messages['strAddChart'] = __('Add chart to grid');
124 $js_messages['strClose'] = __('Close');
125 $js_messages['strAddOneSeriesWarning'] = __('Please add at least one variable to the series');
126 $js_messages['strNone'] = __('None');
127 $js_messages['strResumeMonitor'] = __('Resume monitor');
128 $js_messages['strPauseMonitor'] = __('Pause monitor');
129 /* Monitor: Instructions Dialog */
130 $js_messages['strBothLogOn'] = __('general_log and slow_query_log are enabled.');
131 $js_messages['strGenLogOn'] = __('general_log is enabled.');
132 $js_messages['strSlowLogOn'] = __('slow_query_log is enabled.');
133 $js_messages['strBothLogOff'] = __('slow_query_log and general_log are disabled.');
134 $js_messages['strLogOutNotTable'] = __('log_output is not set to TABLE.');
135 $js_messages['strLogOutIsTable'] = __('log_output is set to TABLE.');
136 $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.');
137 $js_messages['strLongQueryTimeSet'] = __('long_query_time is set to %d second(s).');
138 $js_messages['strSettingsAppliedGlobal'] = __('Following settings will be applied globally and reset to default on server restart:');
139 /* l10n: %s is FILE or TABLE */
140 $js_messages['strSetLogOutput'] = __('Set log_output to %s');
141 /* l10n: Enable in this context means setting a status variable to ON */
142 $js_messages['strEnableVar'] = __('Enable %s');
143 /* l10n: Disable in this context means setting a status variable to OFF */
144 $js_messages['strDisableVar'] = __('Disable %s');
145 /* l10n: %d seconds */
146 $js_messages['setSetLongQueryTime'] = __('Set long_query_time to %ds');
147 $js_messages['strNoSuperUser'] = __('You can\'t change these variables. Please log in as root or contact your database administrator.');
148 $js_messages['strChangeSettings'] = __('Change settings');
149 $js_messages['strCurrentSettings'] = __('Current settings');
151 $js_messages['strChartTitle'] = __('Chart Title');
152 /* l10n: As in differential values */
153 $js_messages['strDifferential'] = __('Differential');
154 $js_messages['strDividedBy'] = __('Divided by %s:');
156 $js_messages['strFromSlowLog'] = __('From slow log');
157 $js_messages['strFromGeneralLog'] = __('From general log');
158 $js_messages['strAnalysingLogs'] = __('Analysing & loading logs. This may take a while.');
159 $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.');
160 $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.');
161 $js_messages['strLogDataLoaded'] = __('Log data loaded. Queries executed in this time span:');
163 $js_messages['strJumpToTable'] = __('Jump to Log table');
164 $js_messages['strNoDataFound'] = __('Log analysed, but no data found in this time span.');
166 /* l10n: A collection of available filters */
167 $js_messages['strFilters'] = __('Filters');
168 /* l10n: Filter as in "Start Filtering" */
169 $js_messages['strFilter'] = __('Filter');
170 $js_messages['strFilterByWordRegexp'] = __('Filter queries by word/regexp:');
171 $js_messages['strIgnoreWhereAndGroup'] = __('Group queries, ignoring variable data in WHERE clauses');
172 $js_messages['strSumRows'] = __('Sum of grouped rows:');
173 $js_messages['strTotal'] = __('Total:');
175 $js_messages['strLoadingLogs'] = __('Loading logs');
176 $js_messages['strRefreshFailed'] = __('Monitor refresh failed');
177 $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.');
178 $js_messages['strReloadPage'] = __('Reload page');
180 $js_messages['strAffectedRows'] = __('Affected rows: ');
182 $js_messages['strFailedParsingConfig'] = __('Failed parsing config file. It doesn\'t seem to be valid JSON code');
183 $js_messages['strFailedBuildingGrid'] = __('Failed building chart grid with imported config. Resetting to default config...');
184 $js_messages['strImport'] = __('Import');
186 /* For inline query editing */
187 $js_messages['strGo'] = __('Go');
188 $js_messages['strCancel'] = __('Cancel');
190 /* For Ajax Notifications */
191 $js_messages['strLoading'] = __('Loading');
192 $js_messages['strProcessingRequest'] = __('Processing Request');
193 $js_messages['strErrorProcessingRequest'] = __('Error in Processing Request');
194 $js_messages['strDroppingColumn'] = __('Dropping Column');
195 $js_messages['strAddingPrimaryKey'] = __('Adding Primary Key');
196 $js_messages['strOK'] = __('OK');
198 /* For db_operations.js */
199 $js_messages['strRenamingDatabases'] = __('Renaming Databases');
200 $js_messages['strReloadDatabase'] = __('Reload Database');
201 $js_messages['strCopyingDatabase'] = __('Copying Database');
202 $js_messages['strChangingCharset'] = __('Changing Charset');
203 $js_messages['strTableMustHaveAtleastOneColumn'] = __('Table must have at least one column');
204 $js_messages['strCreateTable'] = __('Create Table');
205 $js_messages['strYes'] = __('Yes');
206 $js_messages['strNo'] = __('No');
208 /* For db_stucture.js */
209 $js_messages['strInsertTable'] = __('Insert Table');
210 $js_messages['strHideIndexes'] = __('Hide indexes');
211 $js_messages['strShowIndexes'] = __('Show indexes');
213 /* For db_search.js */
214 $js_messages['strSearching'] = __('Searching');
215 $js_messages['strHideSearchResults'] = __('Hide search results');
216 $js_messages['strShowSearchResults'] = __('Show search results');
217 $js_messages['strBrowsing'] = __('Browsing');
218 $js_messages['strDeleting'] = __('Deleting');
220 /* For db_routines.js */
221 $js_messages['MissingReturn'] = __('The definition of a stored function must contain a RETURN statement!');
223 /* For import.js */
224 $js_messages['strImportCSV'] = __('Note: If the file contains multiple tables, they will be combined into one');
226 /* For sql.js */
227 $js_messages['strHideQueryBox'] = __('Hide query box');
228 $js_messages['strShowQueryBox'] = __('Show query box');
229 $js_messages['strInlineEdit'] = __('Inline Edit');
230 $js_messages['strEdit'] = __('Edit');
231 $js_messages['strSave'] = __('Save');
232 $js_messages['strHide'] = __('Hide');
233 $js_messages['strNoRowSelected'] = __('No rows selected');
234 $js_messages['strChangeTbl'] = __('Change');
235 $js_messages['strQueryExecutionTime'] = __('Query execution time');
237 /* For tbl_select.js */
238 $js_messages['strHideSearchCriteria'] = __('Hide search criteria');
239 $js_messages['strShowSearchCriteria'] = __('Show search criteria');
241 /* For tbl_change.js */
242 $js_messages['strIgnore'] = __('Ignore');
244 /* For tbl_structure.js */
245 $js_messages['strAddColumns'] = __('Add columns');
247 /* Designer (pmd/scripts/move.js) */
248 $js_messages['strSelectReferencedKey'] = __('Select referenced key');
249 $js_messages['strSelectForeignKey'] = __('Select Foreign Key');
250 $js_messages['strPleaseSelectPrimaryOrUniqueKey'] = __('Please select the primary key or a unique key');
251 $js_messages['strChangeDisplay'] = __('Choose column to display');
252 $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?');
254 /* Visual query builder (pmd/scripts/move.js) */
255 $js_messages['strAddOption'] = __('Add an option for column ');
257 /* password generation */
258 $js_messages['strGeneratePassword'] = __('Generate password');
259 $js_messages['strGenerate'] = __('Generate');
260 $js_messages['strChangePassword'] = __('Change Password');
262 /* navigation tabs */
263 $js_messages['strMore'] = __('More');
265 /* update */
266 $js_messages['strNewerVersion'] = __('A newer version of phpMyAdmin is available and you should consider upgrading. The newest version is %s, released on %s.');
267 /* l10n: Latest available phpMyAdmin version */
268 $js_messages['strLatestAvailable'] = __(', latest stable version:');
269 $js_messages['strUpToDate'] = __('up to date');
271 echo "var PMA_messages = new Array();\n";
272 foreach ($js_messages as $name => $js_message) {
273 PMA_printJsValue("PMA_messages['" . $name . "']", $js_message);
276 /* Calendar */
277 echo "var themeCalendarImage = '" . $GLOBALS['pmaThemeImage'] . 'b_calendar.png' . "';\n";
279 /* Image path */
280 echo "var pmaThemeImage = '" . $GLOBALS['pmaThemeImage'] . "';\n";
282 /* Version */
283 echo "var pmaversion = '" . PMA_VERSION . "';\n";
285 echo "if ($.datepicker) {\n";
286 /* l10n: Display text for calendar close link */
287 PMA_printJsValue("$.datepicker.regional['']['closeText']", __('Done'));
288 /* l10n: Display text for previous month link in calendar */
289 PMA_printJsValue("$.datepicker.regional['']['prevText']", __('Prev'));
290 /* l10n: Display text for next month link in calendar */
291 PMA_printJsValue("$.datepicker.regional['']['nextText']", __('Next'));
292 /* l10n: Display text for current month link in calendar */
293 PMA_printJsValue("$.datepicker.regional['']['currentText']", __('Today'));
294 PMA_printJsValue("$.datepicker.regional['']['monthNames']",
295 array(
296 __('January'),
297 __('February'),
298 __('March'),
299 __('April'),
300 __('May'),
301 __('June'),
302 __('July'),
303 __('August'),
304 __('September'),
305 __('October'),
306 __('November'),
307 __('December')));
308 PMA_printJsValue("$.datepicker.regional['']['monthNamesShort']",
309 array(
310 /* l10n: Short month name */
311 __('Jan'),
312 /* l10n: Short month name */
313 __('Feb'),
314 /* l10n: Short month name */
315 __('Mar'),
316 /* l10n: Short month name */
317 __('Apr'),
318 /* l10n: Short month name */
319 _pgettext('Short month name', 'May'),
320 /* l10n: Short month name */
321 __('Jun'),
322 /* l10n: Short month name */
323 __('Jul'),
324 /* l10n: Short month name */
325 __('Aug'),
326 /* l10n: Short month name */
327 __('Sep'),
328 /* l10n: Short month name */
329 __('Oct'),
330 /* l10n: Short month name */
331 __('Nov'),
332 /* l10n: Short month name */
333 __('Dec')));
334 PMA_printJsValue("$.datepicker.regional['']['dayNames']",
335 array(
336 __('Sunday'),
337 __('Monday'),
338 __('Tuesday'),
339 __('Wednesday'),
340 __('Thursday'),
341 __('Friday'),
342 __('Saturday')));
343 PMA_printJsValue("$.datepicker.regional['']['dayNamesShort']",
344 array(
345 /* l10n: Short week day name */
346 __('Sun'),
347 /* l10n: Short week day name */
348 __('Mon'),
349 /* l10n: Short week day name */
350 __('Tue'),
351 /* l10n: Short week day name */
352 __('Wed'),
353 /* l10n: Short week day name */
354 __('Thu'),
355 /* l10n: Short week day name */
356 __('Fri'),
357 /* l10n: Short week day name */
358 __('Sat')));
359 PMA_printJsValue("$.datepicker.regional['']['dayNamesMin']",
360 array(
361 /* l10n: Minimal week day name */
362 __('Su'),
363 /* l10n: Minimal week day name */
364 __('Mo'),
365 /* l10n: Minimal week day name */
366 __('Tu'),
367 /* l10n: Minimal week day name */
368 __('We'),
369 /* l10n: Minimal week day name */
370 __('Th'),
371 /* l10n: Minimal week day name */
372 __('Fr'),
373 /* l10n: Minimal week day name */
374 __('Sa')));
375 /* l10n: Column header for week of the year in calendar */
376 PMA_printJsValue("$.datepicker.regional['']['weekHeader']", __('Wk'));
378 PMA_printJsValue("$.datepicker.regional['']['hourText']", __('Hour'));
379 PMA_printJsValue("$.datepicker.regional['']['minuteText']", __('Minute'));
380 PMA_printJsValue("$.datepicker.regional['']['secondText']", __('Second'));
382 $.extend($.datepicker._defaults, $.datepicker.regional['']);
383 } /* if ($.datepicker) */