My work so far...
This commit is contained in:
12
ChangeLog
12
ChangeLog
@@ -5,6 +5,18 @@ phpMyAdmin - Changelog
|
|||||||
$Id$
|
$Id$
|
||||||
$Source$
|
$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>
|
2003-01-05 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||||
* Documentation.html: Added a note about "bug" #662602 (FAQ 3.4).
|
* 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: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: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.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: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: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}
|
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>
|
||||||
<script src="libraries/user_details.js" type="text/javascript" language="javascript"></script>
|
<script src="libraries/user_details.js" type="text/javascript" language="javascript"></script>
|
||||||
<?php
|
<?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') {
|
} else if (isset($js_to_run) && $js_to_run == 'indexes.js') {
|
||||||
echo "\n";
|
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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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"';
|
$strZip = '"zazipov<6F>no"';
|
||||||
// To translate
|
// 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"';
|
$strZip = '"zazipováno"';
|
||||||
// To translate
|
// 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"';
|
$strZip = '"zazipov<6F>no"';
|
||||||
// To translate
|
// 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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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.';
|
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
||||||
$strZip = '"zipped"';
|
$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.';
|
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.';
|
||||||
$strZip = '"zipped"';
|
$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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
||||||
?>
|
?>
|
||||||
|
@@ -522,4 +522,16 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enl
|
|||||||
$strZip = '"zipp<70>"';
|
$strZip = '"zipp<70>"';
|
||||||
// To translate
|
// 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 @@ $strZeroRemovesTheLimit = 'Note: Une valeur de 0 (zero) enlève la limite.';
|
|||||||
$strZip = '"zippé"';
|
$strZip = '"zippé"';
|
||||||
// To translate
|
// 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 = 'Nota: Se estas opci
|
|||||||
$strZip = 'comprimido no formato "zipped"';
|
$strZip = 'comprimido no formato "zipped"';
|
||||||
// To translate
|
// 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 = 'Nota: Se estas opcións se configuran como 0 (cero) e
|
|||||||
$strZip = 'comprimido no formato "zipped"';
|
$strZip = 'comprimido no formato "zipped"';
|
||||||
// To translate
|
// 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
|
$strOriginalInterface = 'original interface'; //to translate
|
||||||
$strDumpXRows = 'Dump %s row(s) starting at record # %s.'; //to translate
|
$strDumpXRows = 'Dump %s row(s) starting at record # %s.'; //to translate
|
||||||
$strExportToXML = 'Export to XML format'; //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';
|
$strAddDeleteRow = 'Zeilen hinzuf<75>gen/entfernen';
|
||||||
$strAddNewField = 'Neue Felder hinzuf<75>gen';
|
$strAddNewField = 'Neue Felder hinzuf<75>gen';
|
||||||
$strAddPriv = 'Rechte 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';
|
$strAddPrivMessage = 'Rechte wurden hinzugef<65>gt';
|
||||||
$strAddSearchConditions = 'Suchkondition (Argumente f<>r den WHERE-Ausdruck):';
|
$strAddSearchConditions = 'Suchkondition (Argumente f<>r den WHERE-Ausdruck):';
|
||||||
$strAddToIndex = '%s Spalten zum Index hinzuf<75>gen';
|
$strAddToIndex = '%s Spalten zum Index hinzuf<75>gen';
|
||||||
@@ -92,6 +94,7 @@ $strChoosePage = 'Bitte w
|
|||||||
$strColComFeat = 'Darstellung von Spaltenkommentaren';
|
$strColComFeat = 'Darstellung von Spaltenkommentaren';
|
||||||
$strColumn = 'Spalte';
|
$strColumn = 'Spalte';
|
||||||
$strColumnNames = 'Spaltennamen';
|
$strColumnNames = 'Spaltennamen';
|
||||||
|
$strColumnPrivileges = 'Spaltenspezifische Rechte';
|
||||||
$strCommand = 'Befehl';
|
$strCommand = 'Befehl';
|
||||||
$strComments = 'Kommentare';
|
$strComments = 'Kommentare';
|
||||||
$strCompleteInserts = 'Vollst<73>ndige \'INSERT\'s';
|
$strCompleteInserts = 'Vollst<73>ndige \'INSERT\'s';
|
||||||
@@ -121,6 +124,7 @@ $strDatabaseHasBeenDropped = 'Datenbank %s wurde gel
|
|||||||
$strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):';
|
$strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):';
|
||||||
$strDatabases = 'Datenbanken';
|
$strDatabases = 'Datenbanken';
|
||||||
$strDatabasesStats = 'Statistiken <20>ber alle Datenbanken';
|
$strDatabasesStats = 'Statistiken <20>ber alle Datenbanken';
|
||||||
|
$strDbPrivileges = 'Datenbankspezifische Rechte';
|
||||||
$strDefault = 'Standard';
|
$strDefault = 'Standard';
|
||||||
$strDelete = 'L<>schen';
|
$strDelete = 'L<>schen';
|
||||||
$strDeleteAndFlush = 'Die Benutzer l<>schen und die Benutzertabellen anschlie<69>end neu laden.';
|
$strDeleteAndFlush = 'Die Benutzer l<>schen und die Benutzertabellen anschlie<69>end neu laden.';
|
||||||
@@ -236,10 +240,12 @@ $strLines = 'Zeilen';
|
|||||||
$strLinesTerminatedBy = 'Zeilen getrennt mit';
|
$strLinesTerminatedBy = 'Zeilen getrennt mit';
|
||||||
$strLinkNotFound = 'Der Verweis wurde nicht gefunden.';
|
$strLinkNotFound = 'Der Verweis wurde nicht gefunden.';
|
||||||
$strLinksTo = 'Verweise';
|
$strLinksTo = 'Verweise';
|
||||||
|
$strLocalhost = 'Lokal';
|
||||||
$strLocationTextfile = 'Datei';
|
$strLocationTextfile = 'Datei';
|
||||||
$strLogPassword = 'Kennwort:';
|
$strLogPassword = 'Kennwort:';
|
||||||
$strLogUsername = 'Benutzername:';
|
$strLogUsername = 'Benutzername:';
|
||||||
$strLogin = 'Login';
|
$strLogin = 'Login';
|
||||||
|
$strLoginInformation = 'Logininformationen';
|
||||||
$strLogout = 'Neu einloggen';
|
$strLogout = 'Neu einloggen';
|
||||||
|
|
||||||
$strMissingBracket = 'Fehlende Klammer';
|
$strMissingBracket = 'Fehlende Klammer';
|
||||||
@@ -482,10 +488,12 @@ $strTableOfContents = 'Inhalt';
|
|||||||
$strTableStructure = 'Tabellenstruktur f<>r Tabelle';
|
$strTableStructure = 'Tabellenstruktur f<>r Tabelle';
|
||||||
$strTableType = 'Tabellentyp';
|
$strTableType = 'Tabellentyp';
|
||||||
$strTables = '%s Tabellen';
|
$strTables = '%s Tabellen';
|
||||||
|
$strTblPrivileges = 'Tabellenspezifische Rechte';
|
||||||
$strTextAreaLength = 'Wegen seiner L<>nge ist dieses<br />Feld vielleicht nicht editierbar.';
|
$strTextAreaLength = 'Wegen seiner L<>nge ist dieses<br />Feld vielleicht nicht editierbar.';
|
||||||
$strTheContent = 'Der Inhalt Ihrer Datei wurde eingef<65>gt.';
|
$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.';
|
$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.';
|
$strTheTerminator = 'Der Trenner zwischen den Feldern.';
|
||||||
|
$strThisHost = 'Dieser Host';
|
||||||
$strThreadSuccessfullyKilled = 'Der Prozess %s wurde erfolgreich abgebrochen.';
|
$strThreadSuccessfullyKilled = 'Der Prozess %s wurde erfolgreich abgebrochen.';
|
||||||
$strTime = 'Dauer';
|
$strTime = 'Dauer';
|
||||||
$strTotal = 'insgesamt';
|
$strTotal = 'insgesamt';
|
||||||
@@ -504,11 +512,14 @@ $strUsage = 'Verbrauch';
|
|||||||
$strUseBackquotes = ' Tabellen- und Feldnamen in einfachen Anf<6E>hrungszeichen ';
|
$strUseBackquotes = ' Tabellen- und Feldnamen in einfachen Anf<6E>hrungszeichen ';
|
||||||
$strUseTables = 'Verwendete Tabellen';
|
$strUseTables = 'Verwendete Tabellen';
|
||||||
$strUser = 'Benutzer';
|
$strUser = 'Benutzer';
|
||||||
|
$strUserAlreadyExists = 'Der Benutzer %s existiert bereits!';
|
||||||
$strUserEmpty = 'Kein Benutzername eingegeben!';
|
$strUserEmpty = 'Kein Benutzername eingegeben!';
|
||||||
$strUserName = 'Benutzername';
|
$strUserName = 'Benutzername';
|
||||||
|
$strUserNotFound = 'Der gew<65>hlte Benutzer wurde in der Benutzertabelle nicht gefunden.';
|
||||||
$strUserOverview = 'Benutzer<65>bersicht';
|
$strUserOverview = 'Benutzer<65>bersicht';
|
||||||
$strUsers = 'Benutzer';
|
$strUsers = 'Benutzer';
|
||||||
$strUsersDeleted = 'Die gew<65>hlten Benutzer wurden gel<65>scht.';
|
$strUsersDeleted = 'Die gew<65>hlten Benutzer wurden gel<65>scht.';
|
||||||
|
$strUseTextField = 'Textfeld verwenden';
|
||||||
|
|
||||||
$strValidateSQL = 'SQL validieren';
|
$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.';
|
$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';
|
$strAddDeleteRow = 'Zeilen hinzufügen/entfernen';
|
||||||
$strAddNewField = 'Neue Felder hinzufügen';
|
$strAddNewField = 'Neue Felder hinzufügen';
|
||||||
$strAddPriv = 'Rechte 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';
|
$strAddPrivMessage = 'Rechte wurden hinzugefügt';
|
||||||
$strAddSearchConditions = 'Suchkondition (Argumente für den WHERE-Ausdruck):';
|
$strAddSearchConditions = 'Suchkondition (Argumente für den WHERE-Ausdruck):';
|
||||||
$strAddToIndex = '%s Spalten zum Index hinzufügen';
|
$strAddToIndex = '%s Spalten zum Index hinzufügen';
|
||||||
@@ -93,6 +95,7 @@ $strChoosePage = 'Bitte wählen Sie die zu bearbeitende Seite.';
|
|||||||
$strColComFeat = 'Darstellung von Spaltenkommentaren';
|
$strColComFeat = 'Darstellung von Spaltenkommentaren';
|
||||||
$strColumn = 'Spalte';
|
$strColumn = 'Spalte';
|
||||||
$strColumnNames = 'Spaltennamen';
|
$strColumnNames = 'Spaltennamen';
|
||||||
|
$strColumnPrivileges = 'Spaltenspezifische Rechte';
|
||||||
$strCommand = 'Befehl';
|
$strCommand = 'Befehl';
|
||||||
$strComments = 'Kommentare';
|
$strComments = 'Kommentare';
|
||||||
$strCompleteInserts = 'Vollständige \'INSERT\'s';
|
$strCompleteInserts = 'Vollständige \'INSERT\'s';
|
||||||
@@ -122,6 +125,7 @@ $strDatabaseHasBeenDropped = 'Datenbank %s wurde gelöscht.';
|
|||||||
$strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):';
|
$strDatabaseWildcard = 'Datenbank (Platzhalter sind erlaubt):';
|
||||||
$strDatabases = 'Datenbanken';
|
$strDatabases = 'Datenbanken';
|
||||||
$strDatabasesStats = 'Statistiken über alle Datenbanken';
|
$strDatabasesStats = 'Statistiken über alle Datenbanken';
|
||||||
|
$strDbPrivileges = 'Datenbankspezifische Rechte';
|
||||||
$strDefault = 'Standard';
|
$strDefault = 'Standard';
|
||||||
$strDelete = 'Löschen';
|
$strDelete = 'Löschen';
|
||||||
$strDeleteAndFlush = 'Die Benutzer löschen und die Benutzertabellen anschließend neu laden.';
|
$strDeleteAndFlush = 'Die Benutzer löschen und die Benutzertabellen anschließend neu laden.';
|
||||||
@@ -237,10 +241,12 @@ $strLines = 'Zeilen';
|
|||||||
$strLinesTerminatedBy = 'Zeilen getrennt mit';
|
$strLinesTerminatedBy = 'Zeilen getrennt mit';
|
||||||
$strLinkNotFound = 'Der Verweis wurde nicht gefunden.';
|
$strLinkNotFound = 'Der Verweis wurde nicht gefunden.';
|
||||||
$strLinksTo = 'Verweise';
|
$strLinksTo = 'Verweise';
|
||||||
|
$strLocalhost = 'Lokal';
|
||||||
$strLocationTextfile = 'Datei';
|
$strLocationTextfile = 'Datei';
|
||||||
$strLogPassword = 'Kennwort:';
|
$strLogPassword = 'Kennwort:';
|
||||||
$strLogUsername = 'Benutzername:';
|
$strLogUsername = 'Benutzername:';
|
||||||
$strLogin = 'Login';
|
$strLogin = 'Login';
|
||||||
|
$strLoginInformation = 'Logininformationen';
|
||||||
$strLogout = 'Neu einloggen';
|
$strLogout = 'Neu einloggen';
|
||||||
|
|
||||||
$strMissingBracket = 'Fehlende Klammer';
|
$strMissingBracket = 'Fehlende Klammer';
|
||||||
@@ -483,10 +489,12 @@ $strTableOfContents = 'Inhalt';
|
|||||||
$strTableStructure = 'Tabellenstruktur für Tabelle';
|
$strTableStructure = 'Tabellenstruktur für Tabelle';
|
||||||
$strTableType = 'Tabellentyp';
|
$strTableType = 'Tabellentyp';
|
||||||
$strTables = '%s Tabellen';
|
$strTables = '%s Tabellen';
|
||||||
|
$strTblPrivileges = 'Tabellenspezifische Rechte';
|
||||||
$strTextAreaLength = 'Wegen seiner Länge ist dieses<br />Feld vielleicht nicht editierbar.';
|
$strTextAreaLength = 'Wegen seiner Länge ist dieses<br />Feld vielleicht nicht editierbar.';
|
||||||
$strTheContent = 'Der Inhalt Ihrer Datei wurde eingefügt.';
|
$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.';
|
$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.';
|
$strTheTerminator = 'Der Trenner zwischen den Feldern.';
|
||||||
|
$strThisHost = 'Dieser Host';
|
||||||
$strThreadSuccessfullyKilled = 'Der Prozess %s wurde erfolgreich abgebrochen.';
|
$strThreadSuccessfullyKilled = 'Der Prozess %s wurde erfolgreich abgebrochen.';
|
||||||
$strTime = 'Dauer';
|
$strTime = 'Dauer';
|
||||||
$strTotal = 'insgesamt';
|
$strTotal = 'insgesamt';
|
||||||
@@ -505,11 +513,14 @@ $strUsage = 'Verbrauch';
|
|||||||
$strUseBackquotes = ' Tabellen- und Feldnamen in einfachen Anführungszeichen ';
|
$strUseBackquotes = ' Tabellen- und Feldnamen in einfachen Anführungszeichen ';
|
||||||
$strUseTables = 'Verwendete Tabellen';
|
$strUseTables = 'Verwendete Tabellen';
|
||||||
$strUser = 'Benutzer';
|
$strUser = 'Benutzer';
|
||||||
|
$strUserAlreadyExists = 'Der Benutzer %s existiert bereits!';
|
||||||
$strUserEmpty = 'Kein Benutzername eingegeben!';
|
$strUserEmpty = 'Kein Benutzername eingegeben!';
|
||||||
$strUserName = 'Benutzername';
|
$strUserName = 'Benutzername';
|
||||||
|
$strUserNotFound = 'Der gewählte Benutzer wurde in der Benutzertabelle nicht gefunden.';
|
||||||
$strUserOverview = 'Benutzerübersicht';
|
$strUserOverview = 'Benutzerübersicht';
|
||||||
$strUsers = 'Benutzer';
|
$strUsers = 'Benutzer';
|
||||||
$strUsersDeleted = 'Die gewählten Benutzer wurden gelöscht.';
|
$strUsersDeleted = 'Die gewählten Benutzer wurden gelöscht.';
|
||||||
|
$strUseTextField = 'Textfeld verwenden';
|
||||||
|
|
||||||
$strValidateSQL = 'SQL validieren';
|
$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.';
|
$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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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"';
|
$strZip = '"compresso con zip"';
|
||||||
// To translate
|
// 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"';
|
$strZip = '"compresso con zip"';
|
||||||
// To translate
|
// 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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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
|
$strVar = 'Variable'; //to translate
|
||||||
|
|
||||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //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"';
|
$strZip = '"zippad"';
|
||||||
// To translate
|
// 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"';
|
$strZip = '"zippad"';
|
||||||
// To translate
|
// 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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$strUsersDeleted = 'The selected users have been deleted successfully.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$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
|
$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
|
$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
|
$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
|
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||||
$strOriginalInterface = 'original interface'; //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
|
@@ -50,3 +50,4 @@ echo PMA_printTab($strServerTabProcesslist, 'server_processlist.php3', $url_quer
|
|||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
<br />
|
<br />
|
||||||
|
|
||||||
|
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user