Reduce the name of this class
[phpmyadmin/crack.git] / js / messages.php
blob761f810dc889fcb0412e2bbd2ae0d77dce5b4fe6
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 // But this one is needed for PMA_escapeJsString()
23 require_once './libraries/js_escape.lib.php';
25 $js_messages['strClickToSelect'] = __('Click to select');
26 $js_messages['strClickToUnselect'] = __('Click to unselect');
27 $js_messages['strNoDropDatabases'] = __('"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['strDroppingEvent'] = __('Dropping Event');
33 $js_messages['strDroppingProcedure'] = __('Dropping Procedure');
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!');
47 /* For server_privileges.js */
48 $js_messages['strHostEmpty'] = __('The host name is empty!');
49 $js_messages['strUserEmpty'] = __('The user name is empty!');
50 $js_messages['strPasswordEmpty'] = __('The password is empty!');
51 $js_messages['strPasswordNotSame'] = __('The passwords aren\'t the same!');
52 $js_messages['strAddNewUser'] = __('Add a New User');
53 $js_messages['strCreateUser'] = __('Create User');
54 $js_messages['strReloadingPrivileges'] = __('Reloading Privileges');
55 $js_messages['strRemovingSelectedUsers'] = __('Removing Selected Users');
56 $js_messages['strClose'] = __('Close');
58 /* For inline query editing */
59 $js_messages['strGo'] = __('Go');
60 $js_messages['strCancel'] = __('Cancel');
62 /* For Ajax Notifications */
63 $js_messages['strLoading'] = __('Loading');
64 $js_messages['strProcessingRequest'] = __('Processing Request');
65 $js_messages['strErrorProcessingRequest'] = __('Error in Processing Request');
66 $js_messages['strDroppingColumn'] = __('Dropping Column');
67 $js_messages['strAddingPrimaryKey'] = __('Adding Primary Key');
68 $js_messages['strOK'] = __('OK');
70 /* For db_operations.js */
71 $js_messages['strRenamingDatabases'] = __('Renaming Databases');
72 $js_messages['strReloadDatabase'] = __('Reload Database');
73 $js_messages['strCopyingDatabase'] = __('Copying Database');
74 $js_messages['strChangingCharset'] = __('Changing Charset');
75 $js_messages['strTableMustHaveAtleastOneColumn'] = __('Table must have at least one column');
76 $js_messages['strCreateTable'] = __('Create Table');
77 $js_messages['strYes'] = __('Yes');
78 $js_messages['strNo'] = __('No');
80 /* For db_search.js */
81 $js_messages['strSearching'] = __('Searching');
83 /* For sql.js */
84 $js_messages['strHideQueryBox'] = __('Hide query box');
85 $js_messages['strShowQueryBox'] = __('Show query box');
86 $js_messages['strInlineEdit'] = __('Inline Edit');
88 /* For tbl_change.js */
89 $js_messages['strIgnore'] = __('Ignore');
91 /* Designer (pmd/scripts/move.js) */
92 $js_messages['strSelectReferencedKey'] = __('Select referenced key');
93 $js_messages['strSelectForeignKey'] = __('Select Foreign Key');
94 $js_messages['strPleaseSelectPrimaryOrUniqueKey'] = __('Please select the primary key or a unique key');
95 $js_messages['strChangeDisplay'] = __('Choose column to display');
97 /* Visual query builder (pmd/scripts/move.js) */
98 $js_messages['strAddOption'] = __('Add an option for column ');
100 /* password generation */
101 $js_messages['strGeneratePassword'] = __('Generate password');
102 $js_messages['strGenerate'] = __('Generate');
103 $js_messages['strChangePassword'] = __('Change Password');
105 /* navigation tabs */
106 $js_messages['strMore'] = __('More');
108 echo "var PMA_messages = new Array();\n";
109 foreach ($js_messages as $name => $js_message) {
110 PMA_printJsValue("PMA_messages['" . $name . "']", $js_message);
113 /* Calendar */
114 echo "if ($.datepicker) {\n";
115 /* l10n: Display text for calendar close link */
116 PMA_printJsValue("$.datepicker.regional['']['closeText']", __('Done'));
117 /* l10n: Display text for previous month link in calendar */
118 PMA_printJsValue("$.datepicker.regional['']['prevText']", __('Prev'));
119 /* l10n: Display text for next month link in calendar */
120 PMA_printJsValue("$.datepicker.regional['']['nextText']", __('Next'));
121 /* l10n: Display text for current month link in calendar */
122 PMA_printJsValue("$.datepicker.regional['']['currentText']", __('Today'));
123 PMA_printJsValue("$.datepicker.regional['']['monthNames']",
124 array(
125 __('January'),
126 __('February'),
127 __('March'),
128 __('April'),
129 __('May'),
130 __('June'),
131 __('July'),
132 __('August'),
133 __('September'),
134 __('October'),
135 __('November'),
136 __('December')));
137 PMA_printJsValue("$.datepicker.regional['']['monthNamesShort']",
138 array(
139 /* l10n: Short month name */
140 __('Jan'),
141 /* l10n: Short month name */
142 __('Feb'),
143 /* l10n: Short month name */
144 __('Mar'),
145 /* l10n: Short month name */
146 __('Apr'),
147 /* l10n: Short month name */
148 _pgettext('Short month name', 'May'),
149 /* l10n: Short month name */
150 __('Jun'),
151 /* l10n: Short month name */
152 __('Jul'),
153 /* l10n: Short month name */
154 __('Aug'),
155 /* l10n: Short month name */
156 __('Sep'),
157 /* l10n: Short month name */
158 __('Oct'),
159 /* l10n: Short month name */
160 __('Nov'),
161 /* l10n: Short month name */
162 __('Dec')));
163 PMA_printJsValue("$.datepicker.regional['']['dayNames']",
164 array(
165 __('Sunday'),
166 __('Monday'),
167 __('Tuesday'),
168 __('Wednesday'),
169 __('Thursday'),
170 __('Friday'),
171 __('Saturday')));
172 PMA_printJsValue("$.datepicker.regional['']['dayNamesShort']",
173 array(
174 /* l10n: Short week day name */
175 __('Sun'),
176 /* l10n: Short week day name */
177 __('Mon'),
178 /* l10n: Short week day name */
179 __('Tue'),
180 /* l10n: Short week day name */
181 __('Wed'),
182 /* l10n: Short week day name */
183 __('Thu'),
184 /* l10n: Short week day name */
185 __('Fri'),
186 /* l10n: Short week day name */
187 __('Sat')));
188 PMA_printJsValue("$.datepicker.regional['']['dayNamesMin']",
189 array(
190 /* l10n: Minimal week day name */
191 __('Su'),
192 /* l10n: Minimal week day name */
193 __('Mo'),
194 /* l10n: Minimal week day name */
195 __('Tu'),
196 /* l10n: Minimal week day name */
197 __('We'),
198 /* l10n: Minimal week day name */
199 __('Th'),
200 /* l10n: Minimal week day name */
201 __('Fr'),
202 /* l10n: Minimal week day name */
203 __('Sa')));
204 /* l10n: Column header for week of the year in calendar */
205 PMA_printJsValue("$.datepicker.regional['']['weekHeader']", __('Wk'));
207 PMA_printJsValue("$.datepicker.regional['']['hourText']", __('Hour'));
208 PMA_printJsValue("$.datepicker.regional['']['minuteText']", __('Minute'));
209 PMA_printJsValue("$.datepicker.regional['']['secondText']", __('Second'));
211 $.extend($.datepicker._defaults, $.datepicker.regional['']);
212 } /* if ($.datepicker) */