My work so far...
This commit is contained in:
12
ChangeLog
12
ChangeLog
@@ -5,6 +5,18 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2003-01-06 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||
* server_privileges.php3:
|
||||
- Interface cosmetic;
|
||||
- Smaller bugfixes;
|
||||
- Added a db / table privileges editor.
|
||||
* server_privileges.php3, server_links.inc.php3: XHTML fixes.
|
||||
* server_privileges.php3, libraries/server_privileges.js:
|
||||
- Optimized some JS functions for the new interface;
|
||||
- Added ability to create new MySQL users via GRANT (feature #502465).
|
||||
* Documentation.html, translators.html, libraries/defines_php.lib.php3:
|
||||
Incremented version number to 2.4.0-dev.
|
||||
|
||||
2003-01-05 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||
* Documentation.html: Added a note about "bug" #662602 (FAQ 3.4).
|
||||
|
||||
|
@@ -95,6 +95,10 @@ a.h1:link {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font
|
||||
a.h1:active {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_biggest']; ?>; font-weight: bold; color: #000000}
|
||||
a.h1:visited {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_biggest']; ?>; font-weight: bold; color: #000000}
|
||||
a.h1:hover {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_biggest']; ?>; font-weight: bold; color: #FF0000}
|
||||
a.h2:link {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_bigger']; ?>; font-weight: bold; color: #000000}
|
||||
a.h2:active {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_bigger']; ?>; font-weight: bold; color: #000000}
|
||||
a.h2:visited {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_bigger']; ?>; font-weight: bold; color: #000000}
|
||||
a.h2:hover {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_bigger']; ?>; font-weight: bold; color: #FF0000}
|
||||
a.drop:link {font-family: <?php echo $GLOBALS['right_font_family']; ?>; color: #ff0000}
|
||||
a.drop:visited {font-family: <?php echo $GLOBALS['right_font_family']; ?>; color: #ff0000}
|
||||
a.drop:hover {font-family: <?php echo $GLOBALS['right_font_family']; ?>; color: #ffffff; background-color:#ff0000; text-decoration: none}
|
||||
@@ -190,6 +194,18 @@ var jsPasswordNotSame = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strPassw
|
||||
</script>
|
||||
<script src="libraries/user_details.js" type="text/javascript" language="javascript"></script>
|
||||
<?php
|
||||
} else if (isset($js_to_run) && $js_to_run == 'server_privileges.js') {
|
||||
echo "\n";
|
||||
?>
|
||||
// js form validation stuff
|
||||
var jsHostEmpty = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strHostEmpty']); ?>';
|
||||
var jsUserEmpty = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strUserEmpty']); ?>';
|
||||
var jsPasswordEmpty = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strPasswordEmpty']); ?>';
|
||||
var jsPasswordNotSame = '<?php echo str_replace('\'', '\\\'', $GLOBALS['strPasswordNotSame']); ?>';
|
||||
//-->
|
||||
</script>
|
||||
<script src="libraries/server_privileges.js" type="text/javascript" language="javascript"></script>
|
||||
<?php
|
||||
} else if (isset($js_to_run) && $js_to_run == 'indexes.js') {
|
||||
echo "\n";
|
||||
?>
|
||||
|
@@ -533,4 +533,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -534,4 +534,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -534,4 +534,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -535,4 +535,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -548,4 +548,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -547,4 +547,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -547,4 +547,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -548,4 +548,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -546,4 +546,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -547,4 +547,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -546,4 +546,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -523,4 +523,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -524,4 +524,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -546,4 +546,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -545,4 +545,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -544,4 +544,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -543,4 +543,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -546,4 +546,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -547,4 +547,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -546,4 +546,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -527,4 +527,16 @@ $strZeroRemovesTheLimit = 'Pozn
|
||||
$strZip = '"zazipov<6F>no"';
|
||||
// To translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -528,4 +528,16 @@ $strZeroRemovesTheLimit = 'Poznámka: Nastavení těchto parametrů na 0 (nulu)
|
||||
$strZip = '"zazipováno"';
|
||||
// To translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -527,4 +527,16 @@ $strZeroRemovesTheLimit = 'Pozn
|
||||
$strZip = '"zazipov<6F>no"';
|
||||
// To translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -541,4 +541,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -542,4 +542,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -535,4 +535,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -536,4 +536,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -520,4 +520,16 @@ $strYes = 'Yes';
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
||||
$strZip = '"zipped"';
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -521,4 +521,16 @@ $strYes = 'Yes';
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
||||
$strZip = '"zipped"';
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -522,4 +522,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -523,4 +523,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -543,4 +543,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -544,4 +544,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -166,7 +166,7 @@ $strFieldsEnclosedBy = 'Champs entour
|
||||
$strFieldsEscapedBy = 'Caract<63>re sp<73>cial';
|
||||
$strFieldsTerminatedBy = 'Champs termin<69>s par';
|
||||
$strFixed = 'fixe';
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin obtient la liste des privil<69>ges directement <20> partir des tables MySQL. Le contenu de ces tables peut <20>tre diff<66>rent des privil<69>ges effectifs, si des changements manuels ont <20>t<EFBFBD> apport<72>s. Dans ce cas, vous devriez %srecharger les privil<69>ges%s avant de continuer.';
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin obtient la liste des privil<69>ges directement <20> partir des tables MySQL. Le contenu de ces tables peut <20>tre diff<66>rent des privil<69>ges effectifs, si des changements manuels ont <20>t<EFBFBD> apport<72>s. Dans ce cas, vous devriez %srecharger les privil<69>ges%s avant de continuer.';
|
||||
$strFlushTable = 'Recharger la table ("FLUSH")';
|
||||
$strFormEmpty = 'Formulaire incomplet !';
|
||||
$strFormat = 'format';
|
||||
@@ -522,4 +522,16 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl
|
||||
$strZip = '"zipp<70>"';
|
||||
// To translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -167,7 +167,7 @@ $strFieldsEnclosedBy = 'Champs entourés par';
|
||||
$strFieldsEscapedBy = 'Caractère spécial';
|
||||
$strFieldsTerminatedBy = 'Champs terminés par';
|
||||
$strFixed = 'fixe';
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin obtient la liste des privilèges directement à partir des tables MySQL. Le contenu de ces tables peut être différent des privilèges effectifs, si des changements manuels ont été apportés. Dans ce cas, vous devriez %srecharger les privilèges%s avant de continuer.';
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin obtient la liste des privilèges directement à partir des tables MySQL. Le contenu de ces tables peut être différent des privilèges effectifs, si des changements manuels ont été apportés. Dans ce cas, vous devriez %srecharger les privilèges%s avant de continuer.';
|
||||
$strFlushTable = 'Recharger la table ("FLUSH")';
|
||||
$strFormEmpty = 'Formulaire incomplet !';
|
||||
$strFormat = 'format';
|
||||
@@ -523,4 +523,16 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
|
||||
$strZip = '"zippé"';
|
||||
// To translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -120,7 +120,7 @@ $strDatabases = 'Bancos de Datos';
|
||||
$strDatabasesStats = 'Estat<61>sticas dos bancos de datos';
|
||||
$strDefault = 'Padr<64>n';
|
||||
$strDelete = 'Eliminar';
|
||||
$strDeleteAndFlush = 'Eliminar os usuarios e recarregar os privilexios a continuaci<63>n.';
|
||||
$strDeleteAndFlush = 'Eliminar os usuarios e recarregar os privilexios a continuaci<63>n.';
|
||||
$strDeleteAndFlushDescr = 'Este <20> o modo m<>is limpo, mais pode que recarregar os privilexios leve un pouco de tempo.';
|
||||
$strDeleteFailed = 'Non foi posible eliminar!';
|
||||
$strDeleteUserMessage = 'Acaba de eliminar o usuario %s.';
|
||||
@@ -291,7 +291,7 @@ $strOptionalControls = 'Opcional. Controla como se han de ler e escreber os cara
|
||||
$strOptionally = 'OPCIONAL';
|
||||
$strOptions = 'Opci<63>ns';
|
||||
$strOr = 'ou';
|
||||
$strOriginalInterface = 'interface orixinal';
|
||||
$strOriginalInterface = 'interface orixinal';
|
||||
$strOverhead = 'De m<>is (Overhead)';
|
||||
|
||||
$strPHP40203 = 'Est<73> a usar PHP 4.2.3, que cont<6E>n un erro importante relacionado coas cadeas multi-byte (mbstring). Consulte o informe de erros n<>mero 19404. Non se recomenda usar esta versi<73>n do PHP co phpMyAdmin.';
|
||||
@@ -333,7 +333,7 @@ $strPrivDescFile = 'Permite importar e exportar datos desde e para ficheiros.';
|
||||
$strPrivDescGrant = 'Permite acrescentar usuarios e privilexios sen recarregar as tabelas de privilexios.';
|
||||
$strPrivDescIndex = 'Permite crear e eliminar <20>ndices.';
|
||||
$strPrivDescInsert = 'Permite inserir e substituir datos.';
|
||||
$strPrivDescLockTables = 'Permite bloquear tabelas do f<>o en uso';
|
||||
$strPrivDescLockTables = 'Permite bloquear tabelas do f<>o en uso';
|
||||
$strPrivDescMaxConnections = 'Limita o n<>mero de conexi<78>ns novas por hora que pode abrir un usuario.';
|
||||
$strPrivDescMaxQuestions = 'Limita o n<>mero de procuras por hora que pode enviar un usuario.';
|
||||
$strPrivDescMaxUpdates = 'Limita o n<>mero de comandos que modifiquen unha tabela ou database por hora que pode executar un usuario.';
|
||||
@@ -526,4 +526,16 @@ $strZeroRemovesTheLimit = 'Nota: Se estas opci
|
||||
$strZip = 'comprimido no formato "zipped"';
|
||||
// To translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -121,7 +121,7 @@ $strDatabases = 'Bancos de Datos';
|
||||
$strDatabasesStats = 'Estatísticas dos bancos de datos';
|
||||
$strDefault = 'Padrón';
|
||||
$strDelete = 'Eliminar';
|
||||
$strDeleteAndFlush = 'Eliminar os usuarios e recarregar os privilexios a continuación.';
|
||||
$strDeleteAndFlush = 'Eliminar os usuarios e recarregar os privilexios a continuación.';
|
||||
$strDeleteAndFlushDescr = 'Este é o modo máis limpo, mais pode que recarregar os privilexios leve un pouco de tempo.';
|
||||
$strDeleteFailed = 'Non foi posible eliminar!';
|
||||
$strDeleteUserMessage = 'Acaba de eliminar o usuario %s.';
|
||||
@@ -292,7 +292,7 @@ $strOptionalControls = 'Opcional. Controla como se han de ler e escreber os cara
|
||||
$strOptionally = 'OPCIONAL';
|
||||
$strOptions = 'Opcións';
|
||||
$strOr = 'ou';
|
||||
$strOriginalInterface = 'interface orixinal';
|
||||
$strOriginalInterface = 'interface orixinal';
|
||||
$strOverhead = 'De máis (Overhead)';
|
||||
|
||||
$strPHP40203 = 'Está a usar PHP 4.2.3, que contén un erro importante relacionado coas cadeas multi-byte (mbstring). Consulte o informe de erros número 19404. Non se recomenda usar esta versión do PHP co phpMyAdmin.';
|
||||
@@ -334,7 +334,7 @@ $strPrivDescFile = 'Permite importar e exportar datos desde e para ficheiros.';
|
||||
$strPrivDescGrant = 'Permite acrescentar usuarios e privilexios sen recarregar as tabelas de privilexios.';
|
||||
$strPrivDescIndex = 'Permite crear e eliminar índices.';
|
||||
$strPrivDescInsert = 'Permite inserir e substituir datos.';
|
||||
$strPrivDescLockTables = 'Permite bloquear tabelas do fío en uso';
|
||||
$strPrivDescLockTables = 'Permite bloquear tabelas do fío en uso';
|
||||
$strPrivDescMaxConnections = 'Limita o número de conexións novas por hora que pode abrir un usuario.';
|
||||
$strPrivDescMaxQuestions = 'Limita o número de procuras por hora que pode enviar un usuario.';
|
||||
$strPrivDescMaxUpdates = 'Limita o número de comandos que modifiquen unha tabela ou database por hora que pode executar un usuario.';
|
||||
@@ -527,4 +527,16 @@ $strZeroRemovesTheLimit = 'Nota: Se estas opcións se configuran como 0 (cero) e
|
||||
$strZip = 'comprimido no formato "zipped"';
|
||||
// To translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -546,4 +546,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
$strDumpXRows = 'Dump %s row(s) starting at record # %s.'; //to translate
|
||||
$strExportToXML = 'Export to XML format'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -33,6 +33,8 @@ $strAddDeleteColumn = 'Spalten hinzuf
|
||||
$strAddDeleteRow = 'Zeilen hinzuf<75>gen/entfernen';
|
||||
$strAddNewField = 'Neue Felder hinzuf<75>gen';
|
||||
$strAddPriv = 'Rechte hinzuf<75>gen';
|
||||
$strAddPrivilegesOnDb = 'Rechte zu folgender Datenbank hinzuf<75>gen';
|
||||
$strAddPrivilegesOnTbl = 'Rechte zu folgender Tabelle hinzuf<75>gen';
|
||||
$strAddPrivMessage = 'Rechte wurden hinzugef<65>gt';
|
||||
$strAddSearchConditions = 'Suchkondition (Argumente f<>r den WHERE-Ausdruck):';
|
||||
$strAddToIndex = '%s Spalten zum Index hinzuf<75>gen';
|
||||
@@ -92,6 +94,7 @@ $strChoosePage = 'Bitte w
|
||||
$strColComFeat = 'Darstellung von Spaltenkommentaren';
|
||||
$strColumn = 'Spalte';
|
||||
$strColumnNames = 'Spaltennamen';
|
||||
$strColumnPrivileges = 'Spaltenspezifische Rechte';
|
||||
$strCommand = 'Befehl';
|
||||
$strComments = 'Kommentare';
|
||||
$strCompleteInserts = 'Vollst<73>ndige \'INSERT\'s';
|
||||
@@ -121,6 +124,7 @@ $strDatabaseHasBeenDropped = 'Datenbank %s wurde gel
|
||||
$strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):';
|
||||
$strDatabases = 'Datenbanken';
|
||||
$strDatabasesStats = 'Statistiken <20>ber alle Datenbanken';
|
||||
$strDbPrivileges = 'Datenbankspezifische Rechte';
|
||||
$strDefault = 'Standard';
|
||||
$strDelete = 'L<>schen';
|
||||
$strDeleteAndFlush = 'Die Benutzer l<>schen und die Benutzertabellen anschlie<69>end neu laden.';
|
||||
@@ -236,10 +240,12 @@ $strLines = 'Zeilen';
|
||||
$strLinesTerminatedBy = 'Zeilen getrennt mit';
|
||||
$strLinkNotFound = 'Der Verweis wurde nicht gefunden.';
|
||||
$strLinksTo = 'Verweise';
|
||||
$strLocalhost = 'Lokal';
|
||||
$strLocationTextfile = 'Datei';
|
||||
$strLogPassword = 'Kennwort:';
|
||||
$strLogUsername = 'Benutzername:';
|
||||
$strLogin = 'Login';
|
||||
$strLoginInformation = 'Logininformationen';
|
||||
$strLogout = 'Neu einloggen';
|
||||
|
||||
$strMissingBracket = 'Fehlende Klammer';
|
||||
@@ -482,10 +488,12 @@ $strTableOfContents = 'Inhalt';
|
||||
$strTableStructure = 'Tabellenstruktur f<>r Tabelle';
|
||||
$strTableType = 'Tabellentyp';
|
||||
$strTables = '%s Tabellen';
|
||||
$strTblPrivileges = 'Tabellenspezifische Rechte';
|
||||
$strTextAreaLength = 'Wegen seiner L<>nge ist dieses<br />Feld vielleicht nicht editierbar.';
|
||||
$strTheContent = 'Der Inhalt Ihrer Datei wurde eingef<65>gt.';
|
||||
$strTheContents = 'Der Inhalt der CSV-Datei ersetzt die Eintr<74>ge mit den gleichen Prim<69>r- oder Unique-Schl<68>sseln.';
|
||||
$strTheTerminator = 'Der Trenner zwischen den Feldern.';
|
||||
$strThisHost = 'Dieser Host';
|
||||
$strThreadSuccessfullyKilled = 'Der Prozess %s wurde erfolgreich abgebrochen.';
|
||||
$strTime = 'Dauer';
|
||||
$strTotal = 'insgesamt';
|
||||
@@ -504,11 +512,14 @@ $strUsage = 'Verbrauch';
|
||||
$strUseBackquotes = ' Tabellen- und Feldnamen in einfachen Anf<6E>hrungszeichen ';
|
||||
$strUseTables = 'Verwendete Tabellen';
|
||||
$strUser = 'Benutzer';
|
||||
$strUserAlreadyExists = 'Der Benutzer %s existiert bereits!';
|
||||
$strUserEmpty = 'Kein Benutzername eingegeben!';
|
||||
$strUserName = 'Benutzername';
|
||||
$strUserNotFound = 'Der gew<65>hlte Benutzer wurde in der Benutzertabelle nicht gefunden.';
|
||||
$strUserOverview = 'Benutzer<65>bersicht';
|
||||
$strUsers = 'Benutzer';
|
||||
$strUsersDeleted = 'Die gew<65>hlten Benutzer wurden gel<65>scht.';
|
||||
$strUseTextField = 'Textfeld verwenden';
|
||||
|
||||
$strValidateSQL = 'SQL validieren';
|
||||
$strValidatorError = 'Bei der Initialisierung des SQL-Validators ist ein Fehler aufgetreten. Bitte <20>berpr<70>fen Sie, ob Sie die in der %sDokumentation%s beschriebenen php-Erweiterungen installiert haben.';
|
||||
|
@@ -34,6 +34,8 @@ $strAddDeleteColumn = 'Spalten hinzufügen/entfernen';
|
||||
$strAddDeleteRow = 'Zeilen hinzufügen/entfernen';
|
||||
$strAddNewField = 'Neue Felder hinzufügen';
|
||||
$strAddPriv = 'Rechte hinzufügen';
|
||||
$strAddPrivilegesOnDb = 'Rechte zu folgender Datenbank hinzufügen';
|
||||
$strAddPrivilegesOnTbl = 'Rechte zu folgender Tabelle hinzufügen';
|
||||
$strAddPrivMessage = 'Rechte wurden hinzugefügt';
|
||||
$strAddSearchConditions = 'Suchkondition (Argumente für den WHERE-Ausdruck):';
|
||||
$strAddToIndex = '%s Spalten zum Index hinzufügen';
|
||||
@@ -93,6 +95,7 @@ $strChoosePage = 'Bitte wählen Sie die zu bearbeitende Seite.';
|
||||
$strColComFeat = 'Darstellung von Spaltenkommentaren';
|
||||
$strColumn = 'Spalte';
|
||||
$strColumnNames = 'Spaltennamen';
|
||||
$strColumnPrivileges = 'Spaltenspezifische Rechte';
|
||||
$strCommand = 'Befehl';
|
||||
$strComments = 'Kommentare';
|
||||
$strCompleteInserts = 'Vollständige \'INSERT\'s';
|
||||
@@ -122,6 +125,7 @@ $strDatabaseHasBeenDropped = 'Datenbank %s wurde gelöscht.';
|
||||
$strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):';
|
||||
$strDatabases = 'Datenbanken';
|
||||
$strDatabasesStats = 'Statistiken über alle Datenbanken';
|
||||
$strDbPrivileges = 'Datenbankspezifische Rechte';
|
||||
$strDefault = 'Standard';
|
||||
$strDelete = 'Löschen';
|
||||
$strDeleteAndFlush = 'Die Benutzer löschen und die Benutzertabellen anschließend neu laden.';
|
||||
@@ -237,10 +241,12 @@ $strLines = 'Zeilen';
|
||||
$strLinesTerminatedBy = 'Zeilen getrennt mit';
|
||||
$strLinkNotFound = 'Der Verweis wurde nicht gefunden.';
|
||||
$strLinksTo = 'Verweise';
|
||||
$strLocalhost = 'Lokal';
|
||||
$strLocationTextfile = 'Datei';
|
||||
$strLogPassword = 'Kennwort:';
|
||||
$strLogUsername = 'Benutzername:';
|
||||
$strLogin = 'Login';
|
||||
$strLoginInformation = 'Logininformationen';
|
||||
$strLogout = 'Neu einloggen';
|
||||
|
||||
$strMissingBracket = 'Fehlende Klammer';
|
||||
@@ -483,10 +489,12 @@ $strTableOfContents = 'Inhalt';
|
||||
$strTableStructure = 'Tabellenstruktur für Tabelle';
|
||||
$strTableType = 'Tabellentyp';
|
||||
$strTables = '%s Tabellen';
|
||||
$strTblPrivileges = 'Tabellenspezifische Rechte';
|
||||
$strTextAreaLength = 'Wegen seiner Länge ist dieses<br />Feld vielleicht nicht editierbar.';
|
||||
$strTheContent = 'Der Inhalt Ihrer Datei wurde eingefügt.';
|
||||
$strTheContents = 'Der Inhalt der CSV-Datei ersetzt die Einträge mit den gleichen Primär- oder Unique-Schlüsseln.';
|
||||
$strTheTerminator = 'Der Trenner zwischen den Feldern.';
|
||||
$strThisHost = 'Dieser Host';
|
||||
$strThreadSuccessfullyKilled = 'Der Prozess %s wurde erfolgreich abgebrochen.';
|
||||
$strTime = 'Dauer';
|
||||
$strTotal = 'insgesamt';
|
||||
@@ -505,11 +513,14 @@ $strUsage = 'Verbrauch';
|
||||
$strUseBackquotes = ' Tabellen- und Feldnamen in einfachen Anführungszeichen ';
|
||||
$strUseTables = 'Verwendete Tabellen';
|
||||
$strUser = 'Benutzer';
|
||||
$strUserAlreadyExists = 'Der Benutzer %s existiert bereits!';
|
||||
$strUserEmpty = 'Kein Benutzername eingegeben!';
|
||||
$strUserName = 'Benutzername';
|
||||
$strUserNotFound = 'Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden.';
|
||||
$strUserOverview = 'Benutzerübersicht';
|
||||
$strUsers = 'Benutzer';
|
||||
$strUsersDeleted = 'Die gewählten Benutzer wurden gelöscht.';
|
||||
$strUseTextField = 'Textfeld verwenden';
|
||||
|
||||
$strValidateSQL = 'SQL validieren';
|
||||
$strValidatorError = 'Bei der Initialisierung des SQL-Validators ist ein Fehler aufgetreten. Bitte überprüfen Sie, ob Sie die in der %sDokumentation%s beschriebenen php-Erweiterungen installiert haben.';
|
||||
|
@@ -545,4 +545,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -546,4 +546,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -543,4 +543,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -557,4 +557,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -531,4 +531,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -532,4 +532,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -539,4 +539,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -540,4 +540,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -526,4 +526,16 @@ $strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
|
||||
$strZip = '"compresso con zip"';
|
||||
// To translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -527,4 +527,16 @@ $strZeroRemovesTheLimit = 'N.B.: 0 (zero) significa nessun limite.';
|
||||
$strZip = '"compresso con zip"';
|
||||
// To translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -536,4 +536,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -536,4 +536,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -536,4 +536,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -545,4 +545,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -547,4 +547,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -546,4 +546,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -522,4 +522,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -521,4 +521,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -542,4 +542,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -543,4 +543,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -531,4 +531,16 @@ $strShowDatadictAs = 'Data Dictionary Format'; //to translate
|
||||
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -532,4 +532,16 @@ $strShowDatadictAs = 'Data Dictionary Format'; //to translate
|
||||
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -530,4 +530,16 @@ $strUserOverview = 'User overview'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -531,4 +531,16 @@ $strUserOverview = 'User overview'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -542,4 +542,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -543,4 +543,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -529,4 +529,16 @@ $strUserOverview = 'User overview'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -530,4 +530,16 @@ $strUserOverview = 'User overview'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -529,4 +529,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -527,4 +527,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -528,4 +528,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -527,4 +527,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -549,4 +549,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -548,4 +548,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -541,4 +541,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -542,4 +542,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -541,4 +541,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -531,4 +531,16 @@ $strUserOverview = 'User overview'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -532,4 +532,16 @@ $strUserOverview = 'User overview'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -531,4 +531,16 @@ $strUserOverview = 'User overview'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -539,4 +539,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -540,4 +540,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -521,4 +521,16 @@ $strZeroRemovesTheLimit = 'Anm: Genom att s
|
||||
$strZip = '"zippad"';
|
||||
// To translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -522,4 +522,16 @@ $strZeroRemovesTheLimit = 'Anm: Genom att sätta dessa alternativ till 0 (noll)
|
||||
$strZip = '"zippad"';
|
||||
// To translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
?>
|
||||
|
@@ -530,4 +530,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -531,4 +531,16 @@ $strRevokeAndDelete = 'Revoke all active privileges from the users and delete th
|
||||
$strRevokeAndDeleteDescr = 'The users will still have the USAGE privilege until the privileges are reloaded.'; //to translate
|
||||
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -544,4 +544,16 @@ $strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -545,4 +545,16 @@ $strWebServerUploadDirectory = 'web-server upload directory'; //to translate
|
||||
$strWebServerUploadDirectoryError = 'The directory you set for upload work cannot be reached'; //to translate
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -531,4 +531,16 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
@@ -530,4 +530,28 @@ $strUsersDeleted = 'The selected users have been deleted successfully.'; //to tr
|
||||
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
$strOriginalInterface = 'original interface'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
|
||||
$strAddPrivilegesOnDb = 'Add privileges on the following database'; //to translate
|
||||
$strAddPrivilegesOnTbl = 'Add privileges on the following table'; //to translate
|
||||
$strColumnPrivileges = 'Column-specific privileges'; //to translate
|
||||
$strDbPrivileges = 'Database-specific privileges'; //to translate
|
||||
$strLocalhost = 'Local';
|
||||
$strLoginInformation = 'Login Information'; //to translate
|
||||
$strTblPrivileges = 'Table-specific privileges'; //to translate
|
||||
$strThisHost = 'This Host'; //to translate
|
||||
$strUserNotFound = 'The selected user was not found in the privilege table.'; //to translate
|
||||
$strUserAlreadyExists = 'The user %s already exists!'; //to translate
|
||||
$strUseTextField = 'Use text field'; //to translate
|
||||
?>
|
||||
|
86
libraries/server_privileges.js
Normal file
86
libraries/server_privileges.js
Normal file
@@ -0,0 +1,86 @@
|
||||
/* $Id$ */
|
||||
|
||||
|
||||
/**
|
||||
* Validates the password field in a form
|
||||
*
|
||||
* @param object the form
|
||||
*
|
||||
* @return boolean whether the field value is valid or not
|
||||
*/
|
||||
function checkPassword(the_form)
|
||||
{
|
||||
// Did the user select 'no password'?
|
||||
if (typeof(the_form.elements['nopass']) != 'undefined' && the_form.elements['nopass'][0].checked) {
|
||||
return true;
|
||||
} else if (typeof(the_form.elements['pred_password']) != 'undefined' && the_form.elements['pred_password'].value == 'none') {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Validates
|
||||
if (the_form.elements['pma_pw'].value == '') {
|
||||
alert(jsPasswordEmpty);
|
||||
the_form.elements['pma_pw2'].value = '';
|
||||
the_form.elements['pma_pw'].focus();
|
||||
return false;
|
||||
} else if (the_form.elements['pma_pw'].value != the_form.elements['pma_pw2'].value) {
|
||||
alert(jsPasswordNotSame);
|
||||
the_form.elements['pma_pw'].value = '';
|
||||
the_form.elements['pma_pw2'].value = '';
|
||||
the_form.elements['pma_pw'].focus();
|
||||
return false;
|
||||
} // end if...else if
|
||||
|
||||
return true;
|
||||
} // end of the 'checkPassword()' function
|
||||
|
||||
|
||||
/**
|
||||
* Validates the "add a user" form
|
||||
*
|
||||
* @return boolean whether the form is validated or not
|
||||
*/
|
||||
function checkAddUser(the_form)
|
||||
{
|
||||
if (the_form.elements['pred_hostname'].value == 'userdefined' && the_form.elements['hostname'].value == '') {
|
||||
alert(jsHostEmpty);
|
||||
the_form.elements['hostname'].focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
if (the_form.elements['pred_username'].value == 'userdefined' && the_form.elements['username'].value == '') {
|
||||
alert(jsUserEmpty);
|
||||
the_form.elements['username'].focus();
|
||||
return false;
|
||||
}
|
||||
|
||||
return checkPassword(the_form);
|
||||
} // end of the 'checkAddUser()' function
|
||||
|
||||
|
||||
/**
|
||||
* Checks/unchecks all checkboxes
|
||||
*
|
||||
* @param string the form name
|
||||
* @param atring the name of the array with the checlboxes
|
||||
* @param boolean whether to check or to uncheck the element
|
||||
*
|
||||
* @return boolean always true
|
||||
*/
|
||||
function setCheckboxes(the_form, the_checkboxes, do_check)
|
||||
{
|
||||
var elts = document.forms[the_form].elements[the_checkboxes + '[]'];
|
||||
var elts_cnt = (typeof(elts.length) != 'undefined')
|
||||
? elts.length
|
||||
: 0;
|
||||
|
||||
if (elts_cnt) {
|
||||
for (var i = 0; i < elts_cnt; i++) {
|
||||
elts[i].checked = do_check;
|
||||
} // end for
|
||||
} else {
|
||||
elts.checked = do_check;
|
||||
} // end if... else
|
||||
|
||||
return true;
|
||||
} // end of the 'setCheckboxes()' function
|
@@ -49,4 +49,5 @@ echo PMA_printTab($strServerTabProcesslist, 'server_processlist.php3', $url_quer
|
||||
?>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
<br />
|
||||
|
||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user