Whitespace cleanup.
This commit is contained in:
@@ -22,45 +22,45 @@ require_once './libraries/common.inc.php';
|
|||||||
// But this one is needed for PMA_escapeJsString()
|
// But this one is needed for PMA_escapeJsString()
|
||||||
require_once './libraries/js_escape.lib.php';
|
require_once './libraries/js_escape.lib.php';
|
||||||
|
|
||||||
$js_messages['strClickToSelect'] = __('Click to select');
|
$js_messages['strClickToSelect'] = __('Click to select');
|
||||||
$js_messages['strClickToUnselect'] = __('Click to unselect');
|
$js_messages['strClickToUnselect'] = __('Click to unselect');
|
||||||
$js_messages['strNoDropDatabases'] = __('"DROP DATABASE" statements are disabled.');
|
$js_messages['strNoDropDatabases'] = __('"DROP DATABASE" statements are disabled.');
|
||||||
|
|
||||||
/* For confirmations */
|
/* For confirmations */
|
||||||
$js_messages['strDoYouReally'] = __('Do you really want to ');
|
$js_messages['strDoYouReally'] = __('Do you really want to ');
|
||||||
$js_messages['strDropDatabaseStrongWarning'] = __('You are about to DESTROY a complete database!');
|
$js_messages['strDropDatabaseStrongWarning'] = __('You are about to DESTROY a complete database!');
|
||||||
|
|
||||||
/* For blobstreaming */
|
/* For blobstreaming */
|
||||||
$js_messages['strBLOBRepositoryDisableStrongWarning'] = __('You are about to DISABLE a BLOB Repository!');
|
$js_messages['strBLOBRepositoryDisableStrongWarning'] = __('You are about to DISABLE a BLOB Repository!');
|
||||||
$js_messages['strBLOBRepositoryDisableAreYouSure'] = sprintf(__('Are you sure you want to disable all BLOB references for database %s?'), $GLOBALS['db']);
|
$js_messages['strBLOBRepositoryDisableAreYouSure'] = sprintf(__('Are you sure you want to disable all BLOB references for database %s?'), $GLOBALS['db']);
|
||||||
|
|
||||||
/* For indexes */
|
/* For indexes */
|
||||||
$js_messages['strFormEmpty'] = __('Missing value in the form!');
|
$js_messages['strFormEmpty'] = __('Missing value in the form!');
|
||||||
$js_messages['strNotNumber'] = __('This is not a number!');
|
$js_messages['strNotNumber'] = __('This is not a number!');
|
||||||
|
|
||||||
/* For server_privileges.js */
|
/* For server_privileges.js */
|
||||||
$js_messages['strHostEmpty'] = __('The host name is empty!');
|
$js_messages['strHostEmpty'] = __('The host name is empty!');
|
||||||
$js_messages['strUserEmpty'] = __('The user name is empty!');
|
$js_messages['strUserEmpty'] = __('The user name is empty!');
|
||||||
$js_messages['strPasswordEmpty'] = __('The password is empty!');
|
$js_messages['strPasswordEmpty'] = __('The password is empty!');
|
||||||
$js_messages['strPasswordNotSame'] = __('The passwords aren\'t the same!');
|
$js_messages['strPasswordNotSame'] = __('The passwords aren\'t the same!');
|
||||||
|
|
||||||
/* For inline query editing */
|
/* For inline query editing */
|
||||||
$js_messages['strGo'] = __('Go');
|
$js_messages['strGo'] = __('Go');
|
||||||
$js_messages['strCancel'] = __('Cancel');
|
$js_messages['strCancel'] = __('Cancel');
|
||||||
|
|
||||||
/* Designer */
|
/* Designer */
|
||||||
$js_messages['strModifications'] = __('Modifications have been saved');
|
$js_messages['strModifications'] = __('Modifications have been saved');
|
||||||
$js_messages['strRelationDeleted'] = __('Relation deleted');
|
$js_messages['strRelationDeleted'] = __('Relation deleted');
|
||||||
$js_messages['strForeignKeyRelationAdded'] = __('FOREIGN KEY relation added');
|
$js_messages['strForeignKeyRelationAdded'] = __('FOREIGN KEY relation added');
|
||||||
$js_messages['strInternalRelationAdded'] = __('Internal relation added');
|
$js_messages['strInternalRelationAdded'] = __('Internal relation added');
|
||||||
$js_messages['strErrorRelationAdded'] = __('Error: Relation not added.');
|
$js_messages['strErrorRelationAdded'] = __('Error: Relation not added.');
|
||||||
$js_messages['strErrorRelationExists'] = __('Error: relation already exists.');
|
$js_messages['strErrorRelationExists'] = __('Error: relation already exists.');
|
||||||
$js_messages['strErrorSaveTable'] = __('Error saving coordinates for Designer.');
|
$js_messages['strErrorSaveTable'] = __('Error saving coordinates for Designer.');
|
||||||
$js_messages['strGeneralRelationFeat:strDisabled'] = __('General relation features') . ': ' . __('Disabled');
|
$js_messages['strGeneralRelationFeat:strDisabled'] = __('General relation features') . ': ' . __('Disabled');
|
||||||
$js_messages['strSelectReferencedKey'] = __('Select referenced key');
|
$js_messages['strSelectReferencedKey'] = __('Select referenced key');
|
||||||
$js_messages['strSelectForeignKey'] = __('Select Foreign Key');
|
$js_messages['strSelectForeignKey'] = __('Select Foreign Key');
|
||||||
$js_messages['strPleaseSelectPrimaryOrUniqueKey'] = __('Please select the primary key or a unique key');
|
$js_messages['strPleaseSelectPrimaryOrUniqueKey'] = __('Please select the primary key or a unique key');
|
||||||
$js_messages['strChangeDisplay'] = __('Choose field to display');
|
$js_messages['strChangeDisplay'] = __('Choose field to display');
|
||||||
|
|
||||||
echo "var PMA_messages = new Array();\n";
|
echo "var PMA_messages = new Array();\n";
|
||||||
foreach ($js_messages as $name => $js_message) {
|
foreach ($js_messages as $name => $js_message) {
|
||||||
|
Reference in New Issue
Block a user