Started rewriting the user administration
This commit is contained in:
11
ChangeLog
11
ChangeLog
@@ -5,6 +5,17 @@ phpMyAdmin - Changelog
|
||||
$Id$
|
||||
$Source$
|
||||
|
||||
2002-12-18 Alexander M. Turek <rabus@users.sourceforge.net>
|
||||
* main.php3, header.inc.php3, server_privileges.php3, server_links.php3,
|
||||
lang/*.inc.php3: Started rewriting the user administration; changes:
|
||||
- Use GRANT / REVOKE for privilege changes (feature #502465);
|
||||
- Support for the new privilege system introduced with MySQL 4.0.2-beta;
|
||||
- Support for user resource limits;
|
||||
- Improved user friendliness.
|
||||
Currently, it can only display and edit global privileges.
|
||||
* libraries/common.lib.php3: Undefined index.
|
||||
* lang/slovenian-*.inc.php3: Updates, thanks again to Kositer Uros (urosh).
|
||||
|
||||
2002-12-18 Michal Cihar <nijel@users.sourceforge.net>
|
||||
* main.php3: Since every user has access to his processlist, set
|
||||
is_process_priv to TRUE as default (fixes undefined variable warning).
|
||||
|
@@ -61,8 +61,8 @@ if (!empty($GLOBALS['cfg']['PmaAbsoluteUri'])) {
|
||||
<style type="text/css">
|
||||
<!--
|
||||
body {
|
||||
font-family: <?php echo $right_font_family; ?>;
|
||||
font-size: <?php echo $font_size; ?>;
|
||||
font-family: <?php echo $GLOBALS['right_font_family']; ?>;
|
||||
font-size: <?php echo $GLOBALS['font_size']; ?>;
|
||||
color: #000000;
|
||||
<?php
|
||||
if ($GLOBALS['cfg']['RightBgImage'] == '') {
|
||||
@@ -74,31 +74,34 @@ if ($GLOBALS['cfg']['RightBgImage'] == '') {
|
||||
?>
|
||||
background-color: <?php echo $GLOBALS['cfg']['RightBgColor'] . "\n"; ?>
|
||||
}
|
||||
pre, tt {font-size: <?php echo $font_size; ?>}
|
||||
th {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #000000; background-color: <?php echo $GLOBALS['cfg']['ThBgcolor']; ?>}
|
||||
td {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
form {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
input {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>}
|
||||
input.textfield {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF}
|
||||
select {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF}
|
||||
textarea {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; color: #000000; background-color: #FFFFFF}
|
||||
h1 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_biggest; ?>; font-weight: bold}
|
||||
h2 {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_bigger; ?>; font-weight: bold}
|
||||
a:link {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; text-decoration: none; color: #0000FF}
|
||||
a:visited {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; text-decoration: none; color: #0000FF}
|
||||
a:hover {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; text-decoration: underline; color: #FF0000}
|
||||
a.nav:link {font-family: <?php echo $right_font_family; ?>; color: #000000}
|
||||
a.nav:visited {font-family: <?php echo $right_font_family; ?>; color: #000000}
|
||||
a.nav:hover {font-family: <?php echo $right_font_family; ?>; color: #FF0000}
|
||||
a.h1:link {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_biggest; ?>; font-weight: bold; color: #000000}
|
||||
a.h1:active {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_biggest; ?>; font-weight: bold; color: #000000}
|
||||
a.h1:visited {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_biggest; ?>; font-weight: bold; color: #000000}
|
||||
a.h1:hover {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_biggest; ?>; font-weight: bold; color: #FF0000}
|
||||
a.drop:link {font-family: <?php echo $right_font_family; ?>; color: #ff0000}
|
||||
a.drop:visited {font-family: <?php echo $right_font_family; ?>; color: #ff0000}
|
||||
a.drop:hover {font-family: <?php echo $right_font_family; ?>; color: #ffffff; background-color:#ff0000; text-decoration: none}
|
||||
.nav {font-family: <?php echo $right_font_family; ?>; color: #000000}
|
||||
.warning {font-family: <?php echo $right_font_family; ?>; font-size: <?php echo $font_size; ?>; font-weight: bold; color: #FF0000}
|
||||
pre, tt {font-size: <?php echo $GLOBALS['font_size']; ?>}
|
||||
th {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>; font-weight: bold; color: #000000; background-color: <?php echo $GLOBALS['cfg']['ThBgcolor']; ?>}
|
||||
td {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>}
|
||||
form {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>}
|
||||
input {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>}
|
||||
input.textfield {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>; color: #000000; background-color: #FFFFFF}
|
||||
select {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>; color: #000000; background-color: #FFFFFF}
|
||||
textarea {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>; color: #000000; background-color: #FFFFFF}
|
||||
h1 {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_biggest']; ?>; font-weight: bold}
|
||||
h2 {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_bigger']; ?>; font-weight: bold}
|
||||
h3 {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>; font-weight: bold}
|
||||
a:link {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>; text-decoration: none; color: #0000FF}
|
||||
a:visited {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>; text-decoration: none; color: #0000FF}
|
||||
a:hover {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>; text-decoration: underline; color: #FF0000}
|
||||
a.nav:link {font-family: <?php echo $GLOBALS['right_font_family']; ?>; color: #000000}
|
||||
a.nav:visited {font-family: <?php echo $GLOBALS['right_font_family']; ?>; color: #000000}
|
||||
a.nav:hover {font-family: <?php echo $GLOBALS['right_font_family']; ?>; color: #FF0000}
|
||||
a.h1:link {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:hover {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_biggest']; ?>; font-weight: bold; color: #FF0000}
|
||||
a.drop:link {font-family: <?php echo $GLOBALS['right_font_family']; ?>; color: #ff0000}
|
||||
a.drop:visited {font-family: <?php echo $GLOBALS['right_font_family']; ?>; color: #ff0000}
|
||||
a.drop:hover {font-family: <?php echo $GLOBALS['right_font_family']; ?>; color: #ffffff; background-color:#ff0000; text-decoration: none}
|
||||
dfn {font-style: normal}
|
||||
dfn:hover {font-style: normal; cursor: help}
|
||||
.nav {font-family: <?php echo $GLOBALS['right_font_family']; ?>; color: #000000}
|
||||
.warning {font-family: <?php echo $GLOBALS['right_font_family']; ?>; font-size: <?php echo $GLOBALS['font_size']; ?>; font-weight: bold; color: #FF0000}
|
||||
td.topline {font-size: 1px}
|
||||
td.tab {
|
||||
border-top: 1px solid #999;
|
||||
|
@@ -481,4 +481,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -482,4 +482,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -483,4 +483,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -484,4 +484,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -496,4 +496,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -495,4 +495,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -495,4 +495,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -496,4 +496,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -495,4 +495,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -496,4 +496,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -495,4 +495,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -471,4 +471,42 @@ $strZip = '"comprimit amb zip"';
|
||||
|
||||
// To translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -472,4 +472,42 @@ $strZip = '"comprimit amb zip"';
|
||||
|
||||
// To translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -481,4 +481,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -480,4 +480,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -479,4 +479,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -478,4 +478,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -494,4 +494,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -495,4 +495,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -494,4 +494,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -476,5 +476,41 @@ $strYes = 'Ano';
|
||||
|
||||
$strZip = '"zazipov<6F>no"';
|
||||
// To translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -477,5 +477,41 @@ $strYes = 'Ano';
|
||||
|
||||
$strZip = '"zazipováno"';
|
||||
// To translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -476,5 +476,41 @@ $strYes = 'Ano';
|
||||
|
||||
$strZip = '"zazipov<6F>no"';
|
||||
// To translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -489,4 +489,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -490,4 +490,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -479,4 +479,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -480,4 +480,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -470,4 +470,42 @@ $strYes = 'Yes';
|
||||
|
||||
$strZip = '"zipped"';
|
||||
|
||||
// To translate
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -471,4 +471,42 @@ $strYes = 'Yes';
|
||||
|
||||
$strZip = '"zipped"';
|
||||
|
||||
// To translate
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -475,4 +475,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -476,4 +476,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -480,4 +480,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -481,4 +481,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -63,7 +63,7 @@ $strBookmarkQuery = 'Requ
|
||||
$strBookmarkThis = 'Bookmarker cette requ<71>te';
|
||||
$strBookmarkView = 'Voir uniquement';
|
||||
$strBrowse = 'Afficher';
|
||||
$strBzError = 'phpMyAdmin n\'a pu compresser le fichier export<72> en raison d\'une composante Bz2 d<>faillante dans cette version de PHP. Il est recommand<6E> de donner <20> <code>$cfg[\'BZipDump\']</code> dans votre fichier de configuration phpMyAdmin la valeur <code>FALSE</code>. Si vous voulez utiliser la compression en mode Bz2, veuillez mettre <20> niveau votre version de PHP. Ce rapport d\'anomalies PHP donne les d<>tails: %s.';
|
||||
$strBzError = 'phpMyAdmin n\'a pu compresser le fichier export<72> en raison d\'une composante Bz2 d<>faillante dans cette version de PHP. Il est recommand<6E> de donner <20> <code>$cfg[\'BZipDump\']</code> dans votre fichier de configuration phpMyAdmin la valeur <code>FALSE</code>. Si vous voulez utiliser la compression en mode Bz2, veuillez mettre <20> niveau votre version de PHP. Ce rapport d\'anomalies PHP donne les d<>tails: %s.';
|
||||
$strBzip = '"bzipp<70>"';
|
||||
|
||||
$strCannotLogin = 'Connexion au serveur MySQL non permise';
|
||||
@@ -95,7 +95,7 @@ $strConnections = 'Connexions';
|
||||
$strCookiesRequired = 'Vous devez accepter les cookies pour poursuivre.';
|
||||
$strCopyTable = '<b>Copier</b> la table vers (base<b>.</b>table) :';
|
||||
$strCopyTableOK = 'La table %s a <20>t<EFBFBD> copi<70>e vers %s.';
|
||||
$strCouldNotKill = 'phpMyAdmin n\'a pu <20>liminer le processus %s. Il <20>tait probablement d<>j<EFBFBD> ferm<72>.';
|
||||
$strCouldNotKill = 'phpMyAdmin n\'a pu <20>liminer le processus %s. Il <20>tait probablement d<>j<EFBFBD> ferm<72>.';
|
||||
$strCreate = 'Cr<43>er';
|
||||
$strCreateIndex = 'Cr<43>er une clef sur %s colonne(s)';
|
||||
$strCreateIndexTopic = 'Cr<43>er un nouvelle clef';
|
||||
@@ -383,7 +383,7 @@ $strServerStatus = 'Informations sur le serveur';
|
||||
$strServerStatusUptime = 'Ce serveur MySQL fonctionne depuis %s. Il a d<>marr<72> le %s.';
|
||||
$strServerTabProcesslist = 'Processus';
|
||||
$strServerTabVariables = 'Variables';
|
||||
$strServerTrafficNotes = '<b>Statistiques sur le trafic</b>: Ce tableau indique le trafic r<>seau observ<72> sur ce serveur MySQL depuis son d<>marrage.';
|
||||
$strServerTrafficNotes = '<b>Statistiques sur le trafic</b>: Ce tableau indique le trafic r<>seau observ<72> sur ce serveur MySQL depuis son d<>marrage.';
|
||||
$strServerVars = 'Variables et r<>glages du serveur';
|
||||
$strServerVersion = 'Version du serveur';
|
||||
$strSessionValue = 'Valeur pour la session';
|
||||
@@ -432,7 +432,7 @@ $strTextAreaLength = 'Il est possible que ce champ<br />ne soit pas
|
||||
$strTheContent = 'Le contenu de votre fichier a <20>t<EFBFBD> ins<6E>r<EFBFBD>.';
|
||||
$strTheContents = 'Le contenu du fichier remplacera le contenu de la table pour les enregistrements ayant une valeur de cl<63> primaire ou unique identique.';
|
||||
$strTheTerminator = 'Le caract<63>re qui s<>pare chacun des champs.';
|
||||
$strThreadSuccessfullyKilled = 'Le processus %s a <20>t<EFBFBD> <20>limin<69>.';
|
||||
$strThreadSuccessfullyKilled = 'Le processus %s a <20>t<EFBFBD> <20>limin<69>.';
|
||||
$strTime = 'Dur<75>e';
|
||||
$strTotal = 'total';
|
||||
$strTotalUC = 'Total';
|
||||
@@ -471,5 +471,41 @@ $strYes = 'Oui';
|
||||
|
||||
$strZip = '"zipp<70>"';
|
||||
// To translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -64,7 +64,7 @@ $strBookmarkQuery = 'Requêtes bookmarkées';
|
||||
$strBookmarkThis = 'Bookmarker cette requête';
|
||||
$strBookmarkView = 'Voir uniquement';
|
||||
$strBrowse = 'Afficher';
|
||||
$strBzError = 'phpMyAdmin n\'a pu compresser le fichier exporté en raison d\'une composante Bz2 défaillante dans cette version de PHP. Il est recommandé de donner à <code>$cfg[\'BZipDump\']</code> dans votre fichier de configuration phpMyAdmin la valeur <code>FALSE</code>. Si vous voulez utiliser la compression en mode Bz2, veuillez mettre à niveau votre version de PHP. Ce rapport d\'anomalies PHP donne les détails: %s.';
|
||||
$strBzError = 'phpMyAdmin n\'a pu compresser le fichier exporté en raison d\'une composante Bz2 défaillante dans cette version de PHP. Il est recommandé de donner à <code>$cfg[\'BZipDump\']</code> dans votre fichier de configuration phpMyAdmin la valeur <code>FALSE</code>. Si vous voulez utiliser la compression en mode Bz2, veuillez mettre à niveau votre version de PHP. Ce rapport d\'anomalies PHP donne les détails: %s.';
|
||||
$strBzip = '"bzippé"';
|
||||
|
||||
$strCannotLogin = 'Connexion au serveur MySQL non permise';
|
||||
@@ -96,7 +96,7 @@ $strConnections = 'Connexions';
|
||||
$strCookiesRequired = 'Vous devez accepter les cookies pour poursuivre.';
|
||||
$strCopyTable = '<b>Copier</b> la table vers (base<b>.</b>table) :';
|
||||
$strCopyTableOK = 'La table %s a été copiée vers %s.';
|
||||
$strCouldNotKill = 'phpMyAdmin n\'a pu éliminer le processus %s. Il était probablement déjà fermé.';
|
||||
$strCouldNotKill = 'phpMyAdmin n\'a pu éliminer le processus %s. Il était probablement déjà fermé.';
|
||||
$strCreate = 'Créer';
|
||||
$strCreateIndex = 'Créer une clef sur %s colonne(s)';
|
||||
$strCreateIndexTopic = 'Créer un nouvelle clef';
|
||||
@@ -384,7 +384,7 @@ $strServerStatus = 'Informations sur le serveur';
|
||||
$strServerStatusUptime = 'Ce serveur MySQL fonctionne depuis %s. Il a démarré le %s.';
|
||||
$strServerTabProcesslist = 'Processus';
|
||||
$strServerTabVariables = 'Variables';
|
||||
$strServerTrafficNotes = '<b>Statistiques sur le trafic</b>: Ce tableau indique le trafic réseau observé sur ce serveur MySQL depuis son démarrage.';
|
||||
$strServerTrafficNotes = '<b>Statistiques sur le trafic</b>: Ce tableau indique le trafic réseau observé sur ce serveur MySQL depuis son démarrage.';
|
||||
$strServerVars = 'Variables et réglages du serveur';
|
||||
$strServerVersion = 'Version du serveur';
|
||||
$strSessionValue = 'Valeur pour la session';
|
||||
@@ -433,7 +433,7 @@ $strTextAreaLength = 'Il est possible que ce champ<br />ne soit pas éditable<br
|
||||
$strTheContent = 'Le contenu de votre fichier a été inséré.';
|
||||
$strTheContents = 'Le contenu du fichier remplacera le contenu de la table pour les enregistrements ayant une valeur de clé primaire ou unique identique.';
|
||||
$strTheTerminator = 'Le caractère qui sépare chacun des champs.';
|
||||
$strThreadSuccessfullyKilled = 'Le processus %s a été éliminé.';
|
||||
$strThreadSuccessfullyKilled = 'Le processus %s a été éliminé.';
|
||||
$strTime = 'Durée';
|
||||
$strTotal = 'total';
|
||||
$strTotalUC = 'Total';
|
||||
@@ -472,5 +472,41 @@ $strYes = 'Oui';
|
||||
|
||||
$strZip = '"zippé"';
|
||||
// To translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -471,5 +471,41 @@ $strYes = 'Si';
|
||||
|
||||
$strZip = 'comprimido no formato "zipped"';
|
||||
// To translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -472,5 +472,41 @@ $strYes = 'Si';
|
||||
|
||||
$strZip = 'comprimido no formato "zipped"';
|
||||
// To translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -494,4 +494,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -142,7 +142,7 @@ $strDumpingData = 'Daten f
|
||||
$strDumpXRows = 'Exportiere %s Datens<6E>tze ab Zeile %s.';
|
||||
$strDynamic = 'dynamisch';
|
||||
|
||||
$strEdit = '<EFBFBD>ndern';
|
||||
$strEdit = 'Bearbeiten';
|
||||
$strEditPDFPages = 'PDF-Seiten bearbeiten';
|
||||
$strEditPrivileges = 'Rechte <20>ndern';
|
||||
$strEffective = 'Effektiv';
|
||||
@@ -477,4 +477,43 @@ $strWrongUser = 'Falscher Benutzername/Kennwort. Zugriff verweigert.';
|
||||
$strYes = 'Ja';
|
||||
|
||||
$strZip = 'Zip-komprimiert';
|
||||
|
||||
// To translate
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -478,4 +478,43 @@ $strWrongUser = 'Falscher Benutzername/Kennwort. Zugriff verweigert.';
|
||||
$strYes = 'Ja';
|
||||
|
||||
$strZip = 'Zip-komprimiert';
|
||||
|
||||
// To translate
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -493,4 +493,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -494,4 +494,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -491,4 +491,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -505,4 +505,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -479,4 +479,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -480,4 +480,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -477,4 +477,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -478,4 +478,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -478,5 +478,41 @@ $strYes = ' Si ';
|
||||
|
||||
$strZip = '"compresso con zip"';
|
||||
// To translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -479,5 +479,41 @@ $strYes = ' Si ';
|
||||
|
||||
$strZip = '"compresso con zip"';
|
||||
// To translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -484,4 +484,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -484,4 +484,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -484,4 +484,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -493,4 +493,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -495,4 +495,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -494,4 +494,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -476,4 +476,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -475,4 +475,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -495,4 +495,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -497,4 +497,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -475,5 +475,41 @@ $strYes = 'Ja';
|
||||
|
||||
$strZip = 'Komprimert (zip)';
|
||||
// To translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -476,5 +476,41 @@ $strYes = 'Ja';
|
||||
|
||||
$strZip = 'Komprimert (zip)';
|
||||
// To translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -472,4 +472,42 @@ $strZip = '".zip"';
|
||||
|
||||
// To translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -473,4 +473,42 @@ $strZip = '".zip"';
|
||||
|
||||
// To translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -490,4 +490,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -491,4 +491,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -474,4 +474,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -476,4 +476,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -25,7 +25,7 @@ $datefmt = '%B %d %Y
|
||||
$timespanfmt = '%s <20><><EFBFBD><EFBFBD>, %s <20><>ᮢ, %s <20><><EFBFBD><EFBFBD><EFBFBD> <20> %s ᥪ㭤';
|
||||
|
||||
$strAPrimaryKey = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ࢨ<EFBFBD><E0A2A8><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> %s';
|
||||
$strAbortedClients = '<27>⬥<EFBFBD><E2ACA5><EFBFBD><EFBFBD>';
|
||||
$strAbortedClients = '<27>⬥<EFBFBD><E2ACA5><EFBFBD><EFBFBD>';
|
||||
$strAccessDenied = '<27> <20><><EFBFBD><EFBFBD>㯥 <20>⪠<EFBFBD><E2AAA0><EFBFBD><EFBFBD>';
|
||||
$strAction = '<27><><EFBFBD><EFBFBD>⢨<EFBFBD>';
|
||||
$strAddDeleteColumn = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/㤠<><E3A4A0><EFBFBD><EFBFBD> <20>⮫<EFBFBD><E2AEAB><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -69,10 +69,10 @@ $strBookmarkQuery = '
|
||||
$strBookmarkThis = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SQL-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strBookmarkView = '<27><><EFBFBD>쪮 <20><><EFBFBD>ᬮ<EFBFBD><E1ACAE>';
|
||||
$strBrowse = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strBzError = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD><EFBFBD> ᦠ<><E1A6A0> <20><><EFBFBD><EFBFBD> <20><>-<2D><> <20><EFBFBD><E0AEA1><EFBFBD> <20> Bz2 extension <20> ⥪<>饩 <20><><EFBFBD>ᨨ PHP. <20><>ண<EFBFBD> ४<><E0A5AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>⠭<EFBFBD><E2A0AD><EFBFBD><EFBFBD><EFBFBD> <20><>६<EFBFBD><E0A5AC><EFBFBD><EFBFBD><EFBFBD> <code>$cfg[\'BZipDump\']</code> <20> <20><>襬 <20><><EFBFBD>䨣<EFBFBD><E4A8A3><EFBFBD>樮<EFBFBD><E6A8AE><EFBFBD><EFBFBD> 䠩<><E4A0A9> phpMyAdmin <20><><EFBFBD>祭<EFBFBD><E7A5AD> <code>FALSE</code>. <20> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ᯮ<EFBFBD>짮<EFBFBD><ECA7AE><EFBFBD><EFBFBD> Bz2-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD>室<EFBFBD><E5AEA4><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP bug report %s <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><E0AEA1><EFBFBD> <20><><EFBFBD><EFBFBD>ଠ樨.';
|
||||
$strBzError = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD><EFBFBD> ᦠ<><E1A6A0> <20><><EFBFBD><EFBFBD> <20><>-<2D><> <20><EFBFBD><E0AEA1><EFBFBD> <20> Bz2 extension <20> ⥪<>饩 <20><><EFBFBD>ᨨ PHP. <20><>ண<EFBFBD> ४<><E0A5AA><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>⠭<EFBFBD><E2A0AD><EFBFBD><EFBFBD><EFBFBD> <20><>६<EFBFBD><E0A5AC><EFBFBD><EFBFBD><EFBFBD> <code>$cfg[\'BZipDump\']</code> <20> <20><>襬 <20><><EFBFBD>䨣<EFBFBD><E4A8A3><EFBFBD>樮<EFBFBD><E6A8AE><EFBFBD><EFBFBD> 䠩<><E4A0A9> phpMyAdmin <20><><EFBFBD>祭<EFBFBD><E7A5AD> <code>FALSE</code>. <20> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>ᯮ<EFBFBD>짮<EFBFBD><ECA7AE><EFBFBD><EFBFBD> Bz2-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD>室<EFBFBD><E5AEA4><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP bug report %s <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><E0AEA1><EFBFBD> <20><><EFBFBD><EFBFBD>ଠ樨.';
|
||||
$strBzip = '<27><>娢<EFBFBD><EFBFBD><E0AEA2><EFBFBD> <20> bzip';
|
||||
|
||||
$strCannotLogin = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> MySQL';
|
||||
$strCannotLogin = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> MySQL';
|
||||
$strCantLoadMySQL = '<27><><EFBFBD><EFBFBD><EFBFBD>७<EFBFBD><E0A5AD> MySQL <20><> <20><><EFBFBD><EFBFBD>㦥<EFBFBD><E3A6A5>,<br /><3E><EFBFBD><E0AEA2><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>䨣<EFBFBD><E4A8A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP.';
|
||||
$strCantLoadRecodeIconv = '<27><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>㧨<EFBFBD><E3A7A8> iconv <20><><EFBFBD> recode, <20><><EFBFBD><EFBFBD>室<EFBFBD><E5AEA4><EFBFBD><EFBFBD> <20><><EFBFBD> <20><>४<EFBFBD><E0A5AA><EFBFBD><EFBFBD><E0AEA2><EFBFBD><EFBFBD> ᨬ<><E1A8AC><EFBFBD><EFBFBD><EFBFBD>. <20><EFBFBD><E0AEA2><EFBFBD><EFBFBD><EFBFBD> php-<2D><><EFBFBD>䨣<EFBFBD><E4A8A3><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20>ᯮ<EFBFBD>짮<EFBFBD><ECA7AE><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>४<EFBFBD><E0A5AA><EFBFBD><EFBFBD><E0AEA2><EFBFBD><EFBFBD> ᨬ<><E1A8AC><EFBFBD><EFBFBD><EFBFBD> <20> phpMyAdmin.';
|
||||
$strCantRenameIdxToPrimary = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>२<EFBFBD><E0A5A8><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> PRIMARY!';
|
||||
@@ -90,18 +90,18 @@ $strChoosePage = '
|
||||
$strColComFeat = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>⮫<EFBFBD>殢';
|
||||
$strColumn = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strColumnNames = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCommand = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCommand = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strComments = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ਨ';
|
||||
$strCompleteInserts = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>⠢<EFBFBD><E2A0A2>';
|
||||
$strCompression = '<27><><EFBFBD>⨥';
|
||||
$strConfigFileError = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD>䨣<EFBFBD><E4A8A3><EFBFBD>樮<EFBFBD><E6A8AE><EFBFBD><EFBFBD><EFBFBD> 䠩<><E4A0A9>! <br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>稭<EFBFBD> - ᨭ⠪<E1A8AD><E2A0AA><EFBFBD><EFBFBD>᪠<EFBFBD> <20>訡<EFBFBD><E8A8A1>.<br /><3E>맮<EFBFBD><EBA7AE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> 䠩<> (config.inc.php) <20><><EFBFBD><EFBFBD><EFBFBD>।<EFBFBD>⢥<EFBFBD><E2A2A5><EFBFBD> <20><> <20><><EFBFBD>㧥<EFBFBD><E3A7A5>. <20> <20><><EFBFBD><EFBFBD><EFBFBD> ᮮ<>饭<EFBFBD><E9A5AD> <20><> <20>訡<EFBFBD><E8A8A1><EFBFBD> - <20><><EFBFBD>ࠢ<EFBFBD><E0A0A2><EFBFBD> <20><>. <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>࠭<EFBFBD><E0A0AD><EFBFBD> - <20><><EFBFBD> <20> <20><><EFBFBD>浪<EFBFBD>';
|
||||
$strConfigureTableCoord = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>न<EFBFBD><E0A4A8><EFBFBD><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD> %s';
|
||||
$strConfirm = '<27><> <20><><EFBFBD><EFBFBD>⢨⥫쭮 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ᤥ<><E1A4A5><EFBFBD><EFBFBD> <20><><EFBFBD>?';
|
||||
$strConnections = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strConnections = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCookiesRequired = 'Cookies <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>祭<EFBFBD> <20><> <20>⮣<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strCopyTable = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E0AEA2><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD> <20> (<28><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><b>.</b>⠡<><E2A0A1><EFBFBD><EFBFBD>):';
|
||||
$strCopyTableOK = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20>뫠 <><E1AAAE><EFBFBD><E0AEA2><EFBFBD> <20> %s.';
|
||||
$strCouldNotKill = 'phpMyAdmin <20><> ᬮ<> 㤠<><E3A4A0><EFBFBD><EFBFBD> thread %s. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><> 㦥 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strCouldNotKill = 'phpMyAdmin <20><> ᬮ<> 㤠<><E3A4A0><EFBFBD><EFBFBD> thread %s. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><> 㦥 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strCreate = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCreateIndex = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> %s <3B><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCreateIndexTopic = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -159,7 +159,7 @@ $strExportToXML = '
|
||||
$strExtendedInserts = '<27><><EFBFBD><EFBFBD><EFBFBD>७<EFBFBD><E0A5AD><EFBFBD> <20><>⠢<EFBFBD><E2A0A2>';
|
||||
$strExtra = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⥫쭮';
|
||||
|
||||
$strFailedAttempts = '<27><>㤠<EFBFBD><E3A4A0><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>⪨';
|
||||
$strFailedAttempts = '<27><>㤠<EFBFBD><E3A4A0><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>⪨';
|
||||
$strField = '<27><><EFBFBD><EFBFBD>';
|
||||
$strFieldHasBeenDropped = '<27><><EFBFBD><EFBFBD> %s <20>뫮 㤠<><E3A4A0><EFBFBD><EFBFBD>';
|
||||
$strFields = '<27><><EFBFBD><EFBFBD>';
|
||||
@@ -177,7 +177,7 @@ $strFunction = '
|
||||
$strGenBy = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGenTime = '<27>६<EFBFBD> ᮧ<><E1AEA7><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGeneralRelationFeat = '<27>᭮<EFBFBD><E1ADAE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>痢<EFBFBD>';
|
||||
$strGlobalValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>쭮<EFBFBD> <20><><EFBFBD>祭<EFBFBD><E7A5AD>';
|
||||
$strGlobalValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>쭮<EFBFBD> <20><><EFBFBD>祭<EFBFBD><E7A5AD>';
|
||||
$strGo = '<27><>襫';
|
||||
$strGrants = '<27>ࠢ<EFBFBD>';
|
||||
$strGzip = '<27><>娢<EFBFBD><EFBFBD><E0AEA2><EFBFBD> <20> gzip';
|
||||
@@ -191,7 +191,7 @@ $strHomepageSourceforge = '
|
||||
$strHost = '<27><><EFBFBD><EFBFBD>';
|
||||
$strHostEmpty = '<27><><EFBFBD>⮥ <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
|
||||
$strId = 'ID';
|
||||
$strId = 'ID';
|
||||
$strIdxFulltext = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strIfYouWish = '<27> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>㧨<EFBFBD><E3A7A8> ⮫쪮 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20>⮫<EFBFBD><E2AEAB><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD>, 㪠<><E3AAA0><EFBFBD><EFBFBD> ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>묨 ᯨ᮪ <20><><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strIgnore = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E0AEA2><EFBFBD>';
|
||||
@@ -215,8 +215,8 @@ $strKeepPass = '
|
||||
$strKeyname = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strKill = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
$strLaTeX = 'LaTeX';
|
||||
$strLandscape = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strLaTeX = 'LaTeX';
|
||||
$strLandscape = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strLength = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strLengthSet = '<27><><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD>祭<EFBFBD><E7A5AD>*';
|
||||
$strLimitNumRows = '<27><><EFBFBD><EFBFBD>ᥩ <20><> <20><>࠭<EFBFBD><E0A0AD><EFBFBD>';
|
||||
@@ -235,7 +235,7 @@ $strMissingBracket = '
|
||||
$strModifications = '<27><><EFBFBD><EFBFBD>䨪<EFBFBD>樨 <20>뫨 <20><><EFBFBD>࠭<EFBFBD><E0A0AD><EFBFBD>';
|
||||
$strModify = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strModifyIndexTopic = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strMoreStatusVars = '<27><>㣨<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>६<EFBFBD><E0A5AC><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strMoreStatusVars = '<27><>㣨<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>६<EFBFBD><E0A5AC><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strMoveTable = '<27><>६<EFBFBD><E0A5AC><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD> <20> (<28><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><b>.</b>⠡<><E2A0A1><EFBFBD><EFBFBD>):';
|
||||
$strMoveTableOK = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20>뫠 <20><>६<EFBFBD>饭<EFBFBD> <20> %s.';
|
||||
$strMySQLCharset = 'MySQL-<2D><><EFBFBD><EFBFBD><EFBFBD><E0AEA2>';
|
||||
@@ -273,7 +273,7 @@ $strNotValidNumber = '
|
||||
$strNull = '<27><><EFBFBD><EFBFBD>';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>) <20> ⠡<><E2A0A1><EFBFBD><EFBFBD> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b><3E>⮣<EFBFBD>:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>)';
|
||||
$strNumTables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNumTables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
$strOK = '<27><>⮢<EFBFBD>';
|
||||
$strOftenQuotation = '<27><><EFBFBD>筮 <20><><EFBFBD><EFBFBD>窨. "<22><> <20>롮<EFBFBD><EBA1AE>" <20><><EFBFBD><EFBFBD>砥<EFBFBD>, <20><><EFBFBD> ⮫쪮 <20><><EFBFBD><EFBFBD> char <20> varchar <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD>窨.';
|
||||
@@ -296,11 +296,11 @@ $strPdfDbSchema = '
|
||||
$strPdfInvalidPageNum = '<27><><EFBFBD><EFBFBD>।<EFBFBD><E0A5A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> PDF-<2D><>࠭<EFBFBD><E0A0AD><EFBFBD>!';
|
||||
$strPdfInvalidTblName = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "%s" <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strPdfNoTables = '<27><><EFBFBD> ⠡<><E2A0A1><EFBFBD>';
|
||||
$strPerHour = '<27> <20><><EFBFBD>';
|
||||
$strPerHour = '<27> <20><><EFBFBD>';
|
||||
$strPhp = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP-<2D><><EFBFBD>';
|
||||
$strPmaDocumentation = '<27><><EFBFBD>㬥<EFBFBD><E3ACA5><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> phpMyAdmin';
|
||||
$strPmaUriError = '<27><>४⨢<E0A5AA> <tt>$cfg[\'PmaAbsoluteUri\']</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>⠭<EFBFBD><E2A0AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><>襬 <20><><EFBFBD>䨣<EFBFBD><E4A8A3><EFBFBD>樮<EFBFBD><E6A8AE><EFBFBD><EFBFBD> 䠩<><E4A0A9>!';
|
||||
$strPortrait = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPortrait = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPos1 = '<27><>砫<EFBFBD>';
|
||||
$strPrevious = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPrimary = '<27><>ࢨ<EFBFBD><E0A2A8><EFBFBD><EFBFBD>';
|
||||
@@ -311,7 +311,7 @@ $strPrimaryKeyWarning = '("PRIMARY" <b>
|
||||
$strPrint = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPrintView = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPrivileges = '<27>ਢ<EFBFBD><E0A8A2><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strProcesslist = '<27><><EFBFBD>᮪ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ᮢ';
|
||||
$strProcesslist = '<27><><EFBFBD>᮪ <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ᮢ';
|
||||
$strProperties = '<27><><EFBFBD><EFBFBD><EFBFBD>⢠';
|
||||
$strPutColNames = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><>ࢮ<EFBFBD> <20><>ப<EFBFBD>';
|
||||
|
||||
@@ -320,15 +320,15 @@ $strQBEDel = '
|
||||
$strQBEIns = '<27><>⠢<EFBFBD><E2A0A2><EFBFBD>';
|
||||
$strQueryOnDb = 'SQL-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <b>%s</b>:';
|
||||
$strQueryStatistics = '<b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⨪<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>ᮢ</b>: <20><> <20>६<EFBFBD><E0A5AC><EFBFBD> <20><><EFBFBD><EFBFBD>᪠ %s <20><><EFBFBD><EFBFBD><EFBFBD>ᮢ <20>뫮 <20><><EFBFBD><E1ABA0> <20><> <20><>ࢥ<EFBFBD>.';
|
||||
$strQueryType = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strQueryType = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
$strReType = '<27><><EFBFBD>⢥ত<E2A2A5><E0A6A4><EFBFBD><EFBFBD>';
|
||||
$strReceived = '<27>ਭ<EFBFBD><E0A8AD><EFBFBD>';
|
||||
$strReceived = '<27>ਭ<EFBFBD><E0A8AD><EFBFBD>';
|
||||
$strRecords = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strReferentialIntegrity = '<27><EFBFBD><E0AEA2><EFBFBD><EFBFBD><EFBFBD> 楫<><E6A5AB>⭮<EFBFBD><E2ADAE><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:';
|
||||
$strRelationNotWorking = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⥫<EFBFBD><E2A5AB><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> ࠡ<><E0A0A1><EFBFBD> <20><> <20><>易<EFBFBD><EFA7A0>묨 ⠡<><E2A0A1>栬<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>㯭<EFBFBD>. <20><><EFBFBD> <20><>।<EFBFBD><E0A5A4><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>稭<EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s<>%s.';
|
||||
$strRelationView = '<27><>易<EFBFBD><EFA7A0><EFBFBD><EFBFBD> <20><><EFBFBD>';
|
||||
$strRelationalSchema = '<27><><EFBFBD><EFBFBD>樮<EFBFBD><E6A8AE><EFBFBD><EFBFBD> <20>奬<EFBFBD>';
|
||||
$strRelationalSchema = '<27><><EFBFBD><EFBFBD>樮<EFBFBD><E6A8AE><EFBFBD><EFBFBD> <20>奬<EFBFBD>';
|
||||
$strReloadFailed = '<27><> 㤠<><E3A4A0><EFBFBD><EFBFBD> <20><>१<EFBFBD><E0A5A7><EFBFBD>㧨<EFBFBD><E3A7A8> MySQL.';
|
||||
$strReloadMySQL = '<27><>१<EFBFBD><E0A5A7><EFBFBD>㧨<EFBFBD><E3A7A8> MySQL';
|
||||
$strRememberReload = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>१<EFBFBD><E0A5A7><EFBFBD>㧨<EFBFBD><E3A7A8> <20><>ࢥ<EFBFBD>.';
|
||||
@@ -382,23 +382,23 @@ $strSelectFields = '
|
||||
$strSelectNumRows = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSelectTables = '<27>롥<EFBFBD><EBA1A5><EFBFBD><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD>(<28>)';
|
||||
$strSend = '<27><><EFBFBD><E1ABA0>';
|
||||
$strSent = '<27><><EFBFBD><E1ABA0>';
|
||||
$strSent = '<27><><EFBFBD><E1ABA0>';
|
||||
$strServer = '<27><>ࢥ<EFBFBD> %s';
|
||||
$strServerChoice = '<27>롮<EFBFBD> <20><>ࢥ<EFBFBD><E0A2A5>';
|
||||
$strServerStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ଠ<EFBFBD><E0ACA0><EFBFBD>';
|
||||
$strServerStatusUptime = '<27><><EFBFBD><EFBFBD> MySQL <20><>ࢥ<EFBFBD> ࠡ<>⠥<EFBFBD> %s. <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD>饭 %s.';
|
||||
$strServerTabProcesslist = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerTabVariables = '<27><>६<EFBFBD><E0A5AC><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ଠ<EFBFBD><E0ACA0><EFBFBD>';
|
||||
$strServerStatusUptime = '<27><><EFBFBD><EFBFBD> MySQL <20><>ࢥ<EFBFBD> ࠡ<>⠥<EFBFBD> %s. <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD>饭 %s.';
|
||||
$strServerTabProcesslist = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerTabVariables = '<27><>६<EFBFBD><E0A5AC><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerTrafficNotes = '<b><3E><><EFBFBD>䨪</b>: <20><><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>뢠<EFBFBD><EBA2A0> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>⨪<EFBFBD> <20><> <20><>⥢<EFBFBD><E2A5A2><EFBFBD> <20><><EFBFBD>䨪<EFBFBD> MySQL <20><>ࢥ<EFBFBD><E0A2A5> <20><> <20>६<EFBFBD><E0A5AC><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD>᪠.';
|
||||
$strServerVars = '<27><>६<EFBFBD><E0A5AC><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD>ன<EFBFBD><E0AEA9> <20><>ࢥ<EFBFBD><E0A2A5>';
|
||||
$strServerVars = '<27><>६<EFBFBD><E0A5AC><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD>ன<EFBFBD><E0AEA9> <20><>ࢥ<EFBFBD><E0A2A5>';
|
||||
$strServerVersion = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>ࢥ<EFBFBD><E0A2A5>';
|
||||
$strSessionValue = '<27><><EFBFBD>祭<EFBFBD><E7A5AD> <20><><EFBFBD>ᨨ';
|
||||
$strSessionValue = '<27><><EFBFBD>祭<EFBFBD><E7A5AD> <20><><EFBFBD>ᨨ';
|
||||
$strSetEnumVal = '<27><><EFBFBD> ⨯<><E2A8AF> <20><><EFBFBD><EFBFBD> "enum" <20> "set", <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>祭<EFBFBD><E7A5AD> <20><> <20>⮬<EFBFBD> <20><>ଠ<EFBFBD><E0ACA0>: \'a\',\'b\',\'c\'...<br /><3E> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> ("\"") <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ("\'") <20>।<EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>祭<EFBFBD><E7A5AD>, <20><><EFBFBD>⠢<EFBFBD><E2A0A2><EFBFBD> <20><>। <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD>ਬ<EFBFBD><E0A8AC>, \'\\\\xyz\' <20><><EFBFBD> \'a\\\'b\').';
|
||||
$strShow = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowAll = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
|
||||
$strShowColor = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 梥<>';
|
||||
$strShowCols = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowDatadictAs = '<27><>ଠ<EFBFBD> <><E1ABAE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowDatadictAs = '<27><>ଠ<EFBFBD> <><E1ABAE><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowGrid = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowPHPInfo = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>ଠ<EFBFBD><E0ACA0><EFBFBD> <20> PHP';
|
||||
$strShowTableDimension = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ࠧ<><E0A0A7>୮<EFBFBD><E0ADAE><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD>';
|
||||
@@ -411,7 +411,7 @@ $strSort = '
|
||||
$strSpaceUsage = '<27>ᯮ<EFBFBD><E1AFAE><EFBFBD>㥬<EFBFBD><E3A5AC> <20><><EFBFBD><EFBFBD><EFBFBD>࠭<EFBFBD>⢮';
|
||||
$strSplitWordsWithSpace = '<27><><EFBFBD><EFBFBD><EFBFBD>, ࠧ<><E0A0A7><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><EFBFBD><E0AEA1><EFBFBD><EFBFBD> (" ").';
|
||||
$strStatement = '<27><>ࠦ<EFBFBD><E0A0A6><EFBFBD><EFBFBD>';
|
||||
$strStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStrucCSV = 'CSV <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStrucData = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStrucDrop = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> 㤠<><E3A4A0><EFBFBD><EFBFBD><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD>';
|
||||
@@ -430,7 +430,7 @@ $strTableHasBeenDropped = '
|
||||
$strTableHasBeenEmptied = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20>뫠 <20><><EFBFBD>饭<EFBFBD>';
|
||||
$strTableHasBeenFlushed = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD>襭 <20><><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD> %s';
|
||||
$strTableMaintenance = '<27><><EFBFBD><EFBFBD>㦨<EFBFBD><E3A6A8><EFBFBD><EFBFBD><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD>';
|
||||
$strTableOfContents = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableOfContents = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableStructure = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD>';
|
||||
$strTableType = '<27><><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD>';
|
||||
$strTables = '%s ⠡<><E2A0A1><EFBFBD>(<28>)';
|
||||
@@ -438,11 +438,11 @@ $strTextAreaLength = '
|
||||
$strTheContent = '<27><><EFBFBD><EFBFBD>ন<EFBFBD><E0A6A8><EFBFBD> 䠩<><E4A0A9> <20>뫮 <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><E0AEA2><EFBFBD>.';
|
||||
$strTheContents = '<27><><EFBFBD><EFBFBD>ন<EFBFBD><E0A6A8><EFBFBD> 䠩<><E4A0A9> <20><><EFBFBD><EFBFBD>頥<EFBFBD> ᮤ<>ন<EFBFBD><E0A6A8><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD> <20><><EFBFBD> <20>冷<EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>묨 <20><>ࢨ<EFBFBD><E0A2A8>묨 <20><><EFBFBD> 㭨<><E3ADA8><EFBFBD><EFBFBD><EFBFBD>묨 <20><><EFBFBD>砬<EFBFBD>.';
|
||||
$strTheTerminator = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>砭<EFBFBD><E7A0AD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strThreadSuccessfullyKilled = 'Thread %s <20><><EFBFBD> 㤠<><E3A4A0><EFBFBD>.';
|
||||
$strTime = '<27>६<EFBFBD>';
|
||||
$strThreadSuccessfullyKilled = 'Thread %s <20><><EFBFBD> 㤠<><E3A4A0><EFBFBD>.';
|
||||
$strTime = '<27>६<EFBFBD>';
|
||||
$strTotal = '<27>ᥣ<EFBFBD>';
|
||||
$strTotalUC = '<27>ᥣ<EFBFBD>';
|
||||
$strTraffic = '<27><><EFBFBD>䨪';
|
||||
$strTotalUC = '<27>ᥣ<EFBFBD>';
|
||||
$strTraffic = '<27><><EFBFBD>䨪';
|
||||
$strType = '<27><><EFBFBD>';
|
||||
|
||||
$strUncheckAll = '<27><><EFBFBD><EFBFBD><EFBFBD> <20>⬥<EFBFBD><E2ACA5><EFBFBD> <20><> <20><><EFBFBD><EFBFBD>';
|
||||
@@ -463,7 +463,7 @@ $strUsers = '
|
||||
$strValidateSQL = '<27><EFBFBD><E0AEA2><EFBFBD><EFBFBD><EFBFBD> SQL';
|
||||
$strValidatorError = '<27><EFBFBD>ઠ SQL <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD>樠<EFBFBD><E6A8A0><EFBFBD><EFBFBD><EFBFBD><E0AEA2><EFBFBD>. <20><EFBFBD><E0AEA2><EFBFBD><EFBFBD><EFBFBD>, <20><>⠭<EFBFBD><E2A0AD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD>室<EFBFBD><E5AEA4><EFBFBD><EFBFBD> <20><><EFBFBD>㫨 <20><><EFBFBD><EFBFBD><EFBFBD>७<EFBFBD><E0A5AD> <20><><EFBFBD> PHP, <20><><EFBFBD>ᠭ<EFBFBD><E1A0AD><EFBFBD> <20> %s<><73><EFBFBD>㬥<EFBFBD><E3ACA5><EFBFBD>樨%s.';
|
||||
$strValue = '<27><><EFBFBD>祭<EFBFBD><E7A5AD>';
|
||||
$strVar = '<27><>६<EFBFBD><E0A5AC><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strVar = '<27><>६<EFBFBD><E0A5AC><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strViewDump = '<27><><EFBFBD>ᬮ<EFBFBD><E1ACAE><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> ⠡<><E2A0A1><EFBFBD><EFBFBD>';
|
||||
$strViewDumpDB = '<27><><EFBFBD>ᬮ<EFBFBD><E1ACAE><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>';
|
||||
|
||||
@@ -477,4 +477,42 @@ $strYes = '
|
||||
|
||||
$strZip = '<27><>娢<EFBFBD><EFBFBD><E0AEA2><EFBFBD> <20> zip';
|
||||
|
||||
// To translate
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -23,7 +23,7 @@ $month = array('
|
||||
$datefmt = '%B %d %Y <20>., %H:%M';
|
||||
$timespanfmt = '%s <20><><EFBFBD><EFBFBD>, %s <20><><EFBFBD><EFBFBD><EFBFBD>, %s <20><><EFBFBD><EFBFBD><EFBFBD> <20> %s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strAPrimaryKey = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> %s';
|
||||
$strAbortedClients = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strAbortedClients = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strAccessDenied = '<27> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strAction = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strAddDeleteColumn = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -67,10 +67,10 @@ $strBookmarkQuery = '
|
||||
$strBookmarkThis = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SQL-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strBookmarkView = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strBrowse = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strBzError = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>-<2D><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> Bz2 extension <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <code>$cfg[\'BZipDump\']</code> <20> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> phpMyAdmin <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <code>FALSE</code>. <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Bz2-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP bug report %s <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strBzError = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>-<2D><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> Bz2 extension <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <code>$cfg[\'BZipDump\']</code> <20> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> phpMyAdmin <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <code>FALSE</code>. <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Bz2-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP bug report %s <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strBzip = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> bzip';
|
||||
|
||||
$strCannotLogin = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> MySQL';
|
||||
$strCannotLogin = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> MySQL';
|
||||
$strCantLoadMySQL = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MySQL <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP.';
|
||||
$strCantLoadRecodeIconv = '<27><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> iconv <20><><EFBFBD> recode, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> php-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> phpMyAdmin.';
|
||||
$strCantRenameIdxToPrimary = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> PRIMARY!';
|
||||
@@ -88,18 +88,18 @@ $strChoosePage = '
|
||||
$strColComFeat = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strColumn = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strColumnNames = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCommand = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCommand = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strComments = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCompleteInserts = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCompression = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strConfigFileError = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>! <br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> - <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.<br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> (config.inc.php) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> - <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>. <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> - <20><><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strConfigureTableCoord = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s';
|
||||
$strConfirm = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>?';
|
||||
$strConnections = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strConnections = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCookiesRequired = 'Cookies <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strCopyTable = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> (<28><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><b>.</b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>):';
|
||||
$strCopyTableOK = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> %s.';
|
||||
$strCouldNotKill = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> thread %s. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strCouldNotKill = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> thread %s. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strCreate = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCreateIndex = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> %s <3B><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCreateIndexTopic = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -157,7 +157,7 @@ $strExportToXML = '
|
||||
$strExtendedInserts = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strExtra = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
$strFailedAttempts = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strFailedAttempts = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strField = '<27><><EFBFBD><EFBFBD>';
|
||||
$strFieldHasBeenDropped = '<27><><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strFields = '<27><><EFBFBD><EFBFBD>';
|
||||
@@ -175,7 +175,7 @@ $strFunction = '
|
||||
$strGenBy = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGenTime = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGeneralRelationFeat = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGlobalValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGlobalValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGo = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGrants = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGzip = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> gzip';
|
||||
@@ -189,7 +189,7 @@ $strHomepageSourceforge = '
|
||||
$strHost = '<27><><EFBFBD><EFBFBD>';
|
||||
$strHostEmpty = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
|
||||
$strId = 'ID';
|
||||
$strId = 'ID';
|
||||
$strIdxFulltext = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strIfYouWish = '<27><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strIgnore = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -213,8 +213,8 @@ $strKeepPass = '
|
||||
$strKeyname = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strKill = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
$strLaTeX = 'LaTeX';
|
||||
$strLandscape = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strLaTeX = 'LaTeX';
|
||||
$strLandscape = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strLength = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strLengthSet = '<27><><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>*';
|
||||
$strLimitNumRows = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -233,7 +233,7 @@ $strMissingBracket = '
|
||||
$strModifications = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strModify = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strModifyIndexTopic = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strMoreStatusVars = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strMoreStatusVars = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strMoveTable = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> (<28><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><b>.</b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>):';
|
||||
$strMoveTableOK = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> %s.';
|
||||
$strMySQLCharset = 'MySQL-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -271,7 +271,7 @@ $strNotValidNumber = '
|
||||
$strNull = '<27><><EFBFBD><EFBFBD>';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>) <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b><3E><><EFBFBD><EFBFBD><EFBFBD>:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>)';
|
||||
$strNumTables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNumTables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
$strOK = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strOftenQuotation = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> char <20> varchar <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
@@ -294,11 +294,11 @@ $strPdfDbSchema = '
|
||||
$strPdfInvalidPageNum = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> PDF-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strPdfInvalidTblName = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "%s" <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strPdfNoTables = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPerHour = '<27> <20><><EFBFBD>';
|
||||
$strPerHour = '<27> <20><><EFBFBD>';
|
||||
$strPhp = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP-<2D><><EFBFBD>';
|
||||
$strPmaDocumentation = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> phpMyAdmin';
|
||||
$strPmaUriError = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>$cfg[\'PmaAbsoluteUri\']</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strPortrait = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPortrait = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPos1 = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPrevious = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPrimary = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -309,7 +309,7 @@ $strPrimaryKeyWarning = '("PRIMARY" <b>
|
||||
$strPrint = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPrintView = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPrivileges = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strProcesslist = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strProcesslist = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strProperties = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPutColNames = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
@@ -318,15 +318,15 @@ $strQBEDel = '
|
||||
$strQBEIns = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strQueryOnDb = 'SQL-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <b>%s</b>:';
|
||||
$strQueryStatistics = '<b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b>: <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strQueryType = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strQueryType = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
$strReType = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strReceived = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strReceived = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strRecords = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strReferentialIntegrity = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:';
|
||||
$strRelationNotWorking = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s<><73><EFBFBD><EFBFBD>%s.';
|
||||
$strRelationView = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
|
||||
$strRelationalSchema = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strRelationalSchema = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strReloadFailed = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MySQL.';
|
||||
$strReloadMySQL = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MySQL';
|
||||
$strRememberReload = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
@@ -380,23 +380,23 @@ $strSelectFields = '
|
||||
$strSelectNumRows = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSelectTables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28>)';
|
||||
$strSend = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSent = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSent = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServer = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s';
|
||||
$strServerChoice = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerStatusUptime = '<27><><EFBFBD><EFBFBD> MySQL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s. <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s.';
|
||||
$strServerTabProcesslist = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerTabVariables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerStatusUptime = '<27><><EFBFBD><EFBFBD> MySQL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s. <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s.';
|
||||
$strServerTabProcesslist = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerTabVariables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerTrafficNotes = '<b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b>: <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MySQL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strServerVars = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerVars = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerVersion = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSessionValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSessionValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSetEnumVal = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> "enum" <20> "set", <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: \'a\',\'b\',\'c\'...<br /><3E><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> ("\"") <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ("\'") <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, \'\\\\xyz\' <20><><EFBFBD> \'a\\\'b\').';
|
||||
$strShow = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowAll = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
|
||||
$strShowColor = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
|
||||
$strShowCols = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowDatadictAs = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowDatadictAs = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowGrid = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowPHPInfo = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> PHP';
|
||||
$strShowTableDimension = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -409,7 +409,7 @@ $strSort = '
|
||||
$strSpaceUsage = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSplitWordsWithSpace = '<27><><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (" ").';
|
||||
$strStatement = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStrucCSV = 'CSV <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStrucData = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStrucDrop = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -428,7 +428,7 @@ $strTableHasBeenDropped = '
|
||||
$strTableHasBeenEmptied = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableHasBeenFlushed = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s';
|
||||
$strTableMaintenance = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableOfContents = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableOfContents = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableStructure = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableType = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTables = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28>)';
|
||||
@@ -436,11 +436,11 @@ $strTextAreaLength = '
|
||||
$strTheContent = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strTheContents = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strTheTerminator = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strThreadSuccessfullyKilled = 'Thread %s <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strTime = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strThreadSuccessfullyKilled = 'Thread %s <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strTime = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTotal = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTotalUC = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTraffic = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTotalUC = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTraffic = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strType = '<27><><EFBFBD>';
|
||||
|
||||
$strUncheckAll = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD>';
|
||||
@@ -461,7 +461,7 @@ $strUsers = '
|
||||
$strValidateSQL = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SQL';
|
||||
$strValidatorError = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SQL <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> PHP, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> %s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s.';
|
||||
$strValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strVar = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strVar = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strViewDump = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strViewDumpDB = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>';
|
||||
|
||||
@@ -475,4 +475,42 @@ $strYes = '
|
||||
|
||||
$strZip = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> zip';
|
||||
|
||||
// To translate
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -24,7 +24,7 @@ $month = array('Янв', 'Фев', 'Мар', 'Апр', 'Май', 'Июн', 'Ию
|
||||
$datefmt = '%B %d %Y г., %H:%M';
|
||||
$timespanfmt = '%s дней, %s часов, %s минут и %s секунд';
|
||||
$strAPrimaryKey = 'Был добавлен первичный ключ к %s';
|
||||
$strAbortedClients = 'Отменены';
|
||||
$strAbortedClients = 'Отменены';
|
||||
$strAccessDenied = 'В доступе отказано';
|
||||
$strAction = 'Действие';
|
||||
$strAddDeleteColumn = 'Добавить/удалить столбец критерия';
|
||||
@@ -68,10 +68,10 @@ $strBookmarkQuery = 'Закладка на SQL-запрос';
|
||||
$strBookmarkThis = 'Закладка на данный SQL-запрос';
|
||||
$strBookmarkView = 'Только просмотр';
|
||||
$strBrowse = 'Обзор';
|
||||
$strBzError = 'phpMyAdmin не может сжать дамп из-за проблем с Bz2 extension в текущей версии PHP. Строго рекомендуется установить переменной <code>$cfg[\'BZipDump\']</code> в Вашем конфигурационном файле phpMyAdmin значение <code>FALSE</code>. Если Вы хотите использовать Bz2-компрессию, Вам необходимо обновить PHP. Смотрите PHP bug report %s для более подробной информации.';
|
||||
$strBzError = 'phpMyAdmin не может сжать дамп из-за проблем с Bz2 extension в текущей версии PHP. Строго рекомендуется установить переменной <code>$cfg[\'BZipDump\']</code> в Вашем конфигурационном файле phpMyAdmin значение <code>FALSE</code>. Если Вы хотите использовать Bz2-компрессию, Вам необходимо обновить PHP. Смотрите PHP bug report %s для более подробной информации.';
|
||||
$strBzip = 'архивировать в bzip';
|
||||
|
||||
$strCannotLogin = 'Невозможно войти в MySQL';
|
||||
$strCannotLogin = 'Невозможно войти в MySQL';
|
||||
$strCantLoadMySQL = 'расширение MySQL не загружено,<br />проверьте конфигурацию PHP.';
|
||||
$strCantLoadRecodeIconv = 'Не могу загрузить iconv или recode, необходимые для перекодирования символов. Проверьте php-конфигурацию и разрешите их использование или запретите перекодирование символов в phpMyAdmin.';
|
||||
$strCantRenameIdxToPrimary = 'Невозможно переименовать индекс в PRIMARY!';
|
||||
@@ -89,18 +89,18 @@ $strChoosePage = 'Выберите страницу для редактиров
|
||||
$strColComFeat = 'Показать комментария столбцов';
|
||||
$strColumn = 'Колонка';
|
||||
$strColumnNames = 'Названия колонок';
|
||||
$strCommand = 'Команда';
|
||||
$strCommand = 'Команда';
|
||||
$strComments = 'Комментарии';
|
||||
$strCompleteInserts = 'Полная вставка';
|
||||
$strCompression = 'Сжатие';
|
||||
$strConfigFileError = 'phpMyAdmin не может прочитать данные из конфигурационного файла! <br />Возможная причина - синтаксическая ошибка.<br />Вызовите этот файл (config.inc.php) непосредственно из браузера. Если будут сообщения об ошибках - исправьте их. Если пустая страница - все в порядке';
|
||||
$strConfigureTableCoord = 'Измените координаты таблицы %s';
|
||||
$strConfirm = 'Вы действительно хотите сделать это?';
|
||||
$strConnections = 'Соединения';
|
||||
$strConnections = 'Соединения';
|
||||
$strCookiesRequired = 'Cookies должны быть включены после этого места.';
|
||||
$strCopyTable = 'Скопировать таблицу в (база данных<b>.</b>таблица):';
|
||||
$strCopyTableOK = 'Таблица %s была скопирована в %s.';
|
||||
$strCouldNotKill = 'phpMyAdmin не смог удалить thread %s. Возможно, он уже закрыт.';
|
||||
$strCouldNotKill = 'phpMyAdmin не смог удалить thread %s. Возможно, он уже закрыт.';
|
||||
$strCreate = 'Создать';
|
||||
$strCreateIndex = 'Создать индекс на %s колонках';
|
||||
$strCreateIndexTopic = 'Создать новый индекс';
|
||||
@@ -158,7 +158,7 @@ $strExportToXML = 'Экспорт в XML-формат';
|
||||
$strExtendedInserts = 'Расширенные вставки';
|
||||
$strExtra = 'Дополнительно';
|
||||
|
||||
$strFailedAttempts = 'Неудачные попытки';
|
||||
$strFailedAttempts = 'Неудачные попытки';
|
||||
$strField = 'Поле';
|
||||
$strFieldHasBeenDropped = 'Поле %s было удалено';
|
||||
$strFields = 'Поля';
|
||||
@@ -176,7 +176,7 @@ $strFunction = 'Функция';
|
||||
$strGenBy = 'Созданный';
|
||||
$strGenTime = 'Время создания';
|
||||
$strGeneralRelationFeat = 'Основные возможности связей';
|
||||
$strGlobalValue = 'Глобальное значение';
|
||||
$strGlobalValue = 'Глобальное значение';
|
||||
$strGo = 'Пошел';
|
||||
$strGrants = 'Права';
|
||||
$strGzip = 'архивировать в gzip';
|
||||
@@ -190,7 +190,7 @@ $strHomepageSourceforge = 'Загрузка phpMyAdmin на Sourceforge';
|
||||
$strHost = 'Хост';
|
||||
$strHostEmpty = 'Пустое имя хоста!';
|
||||
|
||||
$strId = 'ID';
|
||||
$strId = 'ID';
|
||||
$strIdxFulltext = 'ПолнТекст';
|
||||
$strIfYouWish = 'Если Вы желаете загрузить только некоторые столбцы таблицы, укажите разделенный запятыми список полей.';
|
||||
$strIgnore = 'Игнорировать';
|
||||
@@ -214,8 +214,8 @@ $strKeepPass = 'Не менять пароль';
|
||||
$strKeyname = 'Имя ключа';
|
||||
$strKill = 'Убить';
|
||||
|
||||
$strLaTeX = 'LaTeX';
|
||||
$strLandscape = 'Ландшафт';
|
||||
$strLaTeX = 'LaTeX';
|
||||
$strLandscape = 'Ландшафт';
|
||||
$strLength = 'Длина';
|
||||
$strLengthSet = 'Длины/Значения*';
|
||||
$strLimitNumRows = 'записей на страницу';
|
||||
@@ -234,7 +234,7 @@ $strMissingBracket = 'Пропущена скобка';
|
||||
$strModifications = 'Модификации были сохранены';
|
||||
$strModify = 'Изменить';
|
||||
$strModifyIndexTopic = 'Изменить индекс';
|
||||
$strMoreStatusVars = 'Другие статусные переменные';
|
||||
$strMoreStatusVars = 'Другие статусные переменные';
|
||||
$strMoveTable = 'Переместить таблицы в (база данных<b>.</b>таблица):';
|
||||
$strMoveTableOK = 'Таблица %s была перемещена в %s.';
|
||||
$strMySQLCharset = 'MySQL-кодировка';
|
||||
@@ -272,7 +272,7 @@ $strNotValidNumber = ' недопустимое количество рядов!
|
||||
$strNull = 'Ноль';
|
||||
$strNumSearchResultsInTable = '%s записи(ей) в таблице <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b>Итого:</b> <i>%s</i> записи(ей)';
|
||||
$strNumTables = 'Таблиц';
|
||||
$strNumTables = 'Таблиц';
|
||||
|
||||
$strOK = 'Готово';
|
||||
$strOftenQuotation = 'Обычно кавычки. "По выбору" означает, что только поля char и varchar заключаются в кавычки.';
|
||||
@@ -295,11 +295,11 @@ $strPdfDbSchema = 'Структура базы "%s" - страница %s';
|
||||
$strPdfInvalidPageNum = 'Неопределенный номер PDF-страницы!';
|
||||
$strPdfInvalidTblName = 'Таблица "%s" не существует!';
|
||||
$strPdfNoTables = 'Нет таблиц';
|
||||
$strPerHour = 'в час';
|
||||
$strPerHour = 'в час';
|
||||
$strPhp = 'Создать PHP-код';
|
||||
$strPmaDocumentation = 'Документация по phpMyAdmin';
|
||||
$strPmaUriError = 'Директива <tt>$cfg[\'PmaAbsoluteUri\']</tt> должна быть установлена в Вашем конфигурационном файле!';
|
||||
$strPortrait = 'Портрет';
|
||||
$strPortrait = 'Портрет';
|
||||
$strPos1 = 'Начало';
|
||||
$strPrevious = 'Назад';
|
||||
$strPrimary = 'Первичный';
|
||||
@@ -310,7 +310,7 @@ $strPrimaryKeyWarning = '("PRIMARY" <b>должно</b> быть признак
|
||||
$strPrint = 'Печать';
|
||||
$strPrintView = 'Версия для печати';
|
||||
$strPrivileges = 'Привилегии';
|
||||
$strProcesslist = 'Список процессов';
|
||||
$strProcesslist = 'Список процессов';
|
||||
$strProperties = 'Свойства';
|
||||
$strPutColNames = 'Укажите наименования полей в первой строке';
|
||||
|
||||
@@ -319,15 +319,15 @@ $strQBEDel = 'Удалить';
|
||||
$strQBEIns = 'Вставить';
|
||||
$strQueryOnDb = 'SQL-запрос БД <b>%s</b>:';
|
||||
$strQueryStatistics = '<b>Статистика запросов</b>: Со времени запуска %s запросов было послано на сервер.';
|
||||
$strQueryType = 'Тип запроса';
|
||||
$strQueryType = 'Тип запроса';
|
||||
|
||||
$strReType = 'Подтверждение';
|
||||
$strReceived = 'Принято';
|
||||
$strReceived = 'Принято';
|
||||
$strRecords = 'Записи';
|
||||
$strReferentialIntegrity = 'Проверить целостность данных:';
|
||||
$strRelationNotWorking = 'Дополнительные возможности для работы со связанными таблицами недоступны. Для определения причины нажмите %sсюда%s.';
|
||||
$strRelationView = 'Связанный вид';
|
||||
$strRelationalSchema = 'Реляционная схема';
|
||||
$strRelationalSchema = 'Реляционная схема';
|
||||
$strReloadFailed = 'Не удалось перезагрузить MySQL.';
|
||||
$strReloadMySQL = 'Перезагрузить MySQL';
|
||||
$strRememberReload = 'Не забудьте перезагрузить сервер.';
|
||||
@@ -381,23 +381,23 @@ $strSelectFields = 'Выбрать поля (минимум одно):';
|
||||
$strSelectNumRows = 'по запросу';
|
||||
$strSelectTables = 'Выберите таблицу(ы)';
|
||||
$strSend = 'послать';
|
||||
$strSent = 'Послано';
|
||||
$strSent = 'Послано';
|
||||
$strServer = 'Сервер %s';
|
||||
$strServerChoice = 'Выбор сервера';
|
||||
$strServerStatus = 'Текущая информация';
|
||||
$strServerStatusUptime = 'Этот MySQL сервер работает %s. Он был запущен %s.';
|
||||
$strServerTabProcesslist = 'Процессы';
|
||||
$strServerTabVariables = 'Переменные';
|
||||
$strServerStatus = 'Текущая информация';
|
||||
$strServerStatusUptime = 'Этот MySQL сервер работает %s. Он был запущен %s.';
|
||||
$strServerTabProcesslist = 'Процессы';
|
||||
$strServerTabVariables = 'Переменные';
|
||||
$strServerTrafficNotes = '<b>Трафик</b>: Эти таблицы показывают статистику по сетевому трафику MySQL сервера со времени его запуска.';
|
||||
$strServerVars = 'Переменные и настройки сервера';
|
||||
$strServerVars = 'Переменные и настройки сервера';
|
||||
$strServerVersion = 'Версия сервера';
|
||||
$strSessionValue = 'Значение сессии';
|
||||
$strSessionValue = 'Значение сессии';
|
||||
$strSetEnumVal = 'Для типов поля "enum" и "set", введите значения по этому формату: \'a\',\'b\',\'c\'...<br />Если вам понадобиться ввести обратную косую черту ("\"") или одиночную кавычку ("\'") среди этих значений, поставьте перед ними обратную косую черту (например, \'\\\\xyz\' или \'a\\\'b\').';
|
||||
$strShow = 'Показать';
|
||||
$strShowAll = 'Показать все';
|
||||
$strShowColor = 'Показать цвет';
|
||||
$strShowCols = 'Показать колонки';
|
||||
$strShowDatadictAs = 'Формат словаря данных';
|
||||
$strShowDatadictAs = 'Формат словаря данных';
|
||||
$strShowGrid = 'Показать сетку';
|
||||
$strShowPHPInfo = 'Показать информацию о PHP';
|
||||
$strShowTableDimension = 'Показать размерность таблицы';
|
||||
@@ -410,7 +410,7 @@ $strSort = 'Отсортировать';
|
||||
$strSpaceUsage = 'Используемое пространство';
|
||||
$strSplitWordsWithSpace = 'Слова, разделенные пробелом (" ").';
|
||||
$strStatement = 'Выражения';
|
||||
$strStatus = 'Статус';
|
||||
$strStatus = 'Статус';
|
||||
$strStrucCSV = 'CSV данные';
|
||||
$strStrucData = 'Структура и данные';
|
||||
$strStrucDrop = 'Добавить удаление таблицы';
|
||||
@@ -429,7 +429,7 @@ $strTableHasBeenDropped = 'Таблица %s была удалена';
|
||||
$strTableHasBeenEmptied = 'Таблица %s была очищена';
|
||||
$strTableHasBeenFlushed = 'Был сброшен кэш таблицы %s';
|
||||
$strTableMaintenance = 'Обслуживание таблицы';
|
||||
$strTableOfContents = 'Оглавление';
|
||||
$strTableOfContents = 'Оглавление';
|
||||
$strTableStructure = 'Структура таблицы';
|
||||
$strTableType = 'Тип таблицы';
|
||||
$strTables = '%s таблиц(ы)';
|
||||
@@ -437,11 +437,11 @@ $strTextAreaLength = ' Из-за большой длины,<br /> это пол
|
||||
$strTheContent = 'Содержимое файла было импортировано.';
|
||||
$strTheContents = 'Содержимое файла замещает содержимое таблицы для рядов с идентичными первичными или уникальными ключами.';
|
||||
$strTheTerminator = 'Символ окончания полей.';
|
||||
$strThreadSuccessfullyKilled = 'Thread %s был удален.';
|
||||
$strTime = 'Время';
|
||||
$strThreadSuccessfullyKilled = 'Thread %s был удален.';
|
||||
$strTime = 'Время';
|
||||
$strTotal = 'всего';
|
||||
$strTotalUC = 'Всего';
|
||||
$strTraffic = 'Трафик';
|
||||
$strTotalUC = 'Всего';
|
||||
$strTraffic = 'Трафик';
|
||||
$strType = 'Тип';
|
||||
|
||||
$strUncheckAll = 'Снять отметку со всех';
|
||||
@@ -462,7 +462,7 @@ $strUsers = 'Пользователи';
|
||||
$strValidateSQL = 'Проверить SQL';
|
||||
$strValidatorError = 'Проверка SQL не может быть инициализирована. Проверьте, установлены ли необходимые модули расширений для PHP, описанные в %sдокументации%s.';
|
||||
$strValue = 'Значение';
|
||||
$strVar = 'Переменная';
|
||||
$strVar = 'Переменная';
|
||||
$strViewDump = 'Просмотреть дамп таблицы';
|
||||
$strViewDumpDB = 'Просмотреть дамп БД';
|
||||
|
||||
@@ -476,4 +476,42 @@ $strYes = 'Да';
|
||||
|
||||
$strZip = 'архивировать в zip';
|
||||
|
||||
// To translate
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -23,7 +23,7 @@ $month = array('
|
||||
$datefmt = '%B %d %Y <20>., %H:%M';
|
||||
$timespanfmt = '%s <20><><EFBFBD><EFBFBD>, %s <20><><EFBFBD><EFBFBD><EFBFBD>, %s <20><><EFBFBD><EFBFBD><EFBFBD> <20> %s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strAPrimaryKey = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20> %s';
|
||||
$strAbortedClients = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strAbortedClients = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strAccessDenied = '<27> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strAction = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strAddDeleteColumn = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -67,10 +67,10 @@ $strBookmarkQuery = '
|
||||
$strBookmarkThis = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SQL-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strBookmarkView = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strBrowse = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strBzError = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>-<2D><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> Bz2 extension <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <code>$cfg[\'BZipDump\']</code> <20> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> phpMyAdmin <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <code>FALSE</code>. <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Bz2-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP bug report %s <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strBzError = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>-<2D><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> Bz2 extension <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <code>$cfg[\'BZipDump\']</code> <20> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> phpMyAdmin <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <code>FALSE</code>. <20><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> Bz2-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP bug report %s <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strBzip = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> bzip';
|
||||
|
||||
$strCannotLogin = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> MySQL';
|
||||
$strCannotLogin = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> MySQL';
|
||||
$strCantLoadMySQL = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MySQL <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>,<br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP.';
|
||||
$strCantLoadRecodeIconv = '<27><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> iconv <20><><EFBFBD> recode, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> php-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> phpMyAdmin.';
|
||||
$strCantRenameIdxToPrimary = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> PRIMARY!';
|
||||
@@ -88,18 +88,18 @@ $strChoosePage = '
|
||||
$strColComFeat = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strColumn = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strColumnNames = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCommand = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCommand = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strComments = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCompleteInserts = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCompression = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strConfigFileError = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>! <br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> - <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.<br /><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> (config.inc.php) <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> - <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><>. <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> - <20><><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strConfigureTableCoord = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s';
|
||||
$strConfirm = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>?';
|
||||
$strConnections = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strConnections = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCookiesRequired = 'Cookies <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strCopyTable = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> (<28><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><b>.</b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>):';
|
||||
$strCopyTableOK = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> %s.';
|
||||
$strCouldNotKill = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> thread %s. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strCouldNotKill = 'phpMyAdmin <20><> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> thread %s. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strCreate = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCreateIndex = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> %s <3B><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strCreateIndexTopic = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -157,7 +157,7 @@ $strExportToXML = '
|
||||
$strExtendedInserts = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strExtra = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
$strFailedAttempts = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strFailedAttempts = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strField = '<27><><EFBFBD><EFBFBD>';
|
||||
$strFieldHasBeenDropped = '<27><><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strFields = '<27><><EFBFBD><EFBFBD>';
|
||||
@@ -175,7 +175,7 @@ $strFunction = '
|
||||
$strGenBy = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGenTime = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGeneralRelationFeat = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGlobalValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGlobalValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGo = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGrants = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strGzip = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> gzip';
|
||||
@@ -189,7 +189,7 @@ $strHomepageSourceforge = '
|
||||
$strHost = '<27><><EFBFBD><EFBFBD>';
|
||||
$strHostEmpty = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
|
||||
$strId = 'ID';
|
||||
$strId = 'ID';
|
||||
$strIdxFulltext = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strIfYouWish = '<27><><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strIgnore = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -213,8 +213,8 @@ $strKeepPass = '
|
||||
$strKeyname = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strKill = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
$strLaTeX = 'LaTeX';
|
||||
$strLandscape = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strLaTeX = 'LaTeX';
|
||||
$strLandscape = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strLength = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strLengthSet = '<27><><EFBFBD><EFBFBD><EFBFBD>/<2F><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>*';
|
||||
$strLimitNumRows = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -233,7 +233,7 @@ $strMissingBracket = '
|
||||
$strModifications = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strModify = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strModifyIndexTopic = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strMoreStatusVars = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strMoreStatusVars = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strMoveTable = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> (<28><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><b>.</b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>):';
|
||||
$strMoveTableOK = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> %s.';
|
||||
$strMySQLCharset = 'MySQL-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -271,7 +271,7 @@ $strNotValidNumber = '
|
||||
$strNull = '<27><><EFBFBD><EFBFBD>';
|
||||
$strNumSearchResultsInTable = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>) <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <i>%s</i>';
|
||||
$strNumSearchResultsTotal = '<b><3E><><EFBFBD><EFBFBD><EFBFBD>:</b> <i>%s</i> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28><>)';
|
||||
$strNumTables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strNumTables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
$strOK = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strOftenQuotation = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. "<22><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>" <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> char <20> varchar <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
@@ -294,11 +294,11 @@ $strPdfDbSchema = '
|
||||
$strPdfInvalidPageNum = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> PDF-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strPdfInvalidTblName = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> "%s" <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strPdfNoTables = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPerHour = '<27> <20><><EFBFBD>';
|
||||
$strPerHour = '<27> <20><><EFBFBD>';
|
||||
$strPhp = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> PHP-<2D><><EFBFBD>';
|
||||
$strPmaDocumentation = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> phpMyAdmin';
|
||||
$strPmaUriError = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <tt>$cfg[\'PmaAbsoluteUri\']</tt> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>!';
|
||||
$strPortrait = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPortrait = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPos1 = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPrevious = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPrimary = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -309,7 +309,7 @@ $strPrimaryKeyWarning = '("PRIMARY" <b>
|
||||
$strPrint = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPrintView = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPrivileges = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strProcesslist = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strProcesslist = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strProperties = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strPutColNames = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
@@ -318,15 +318,15 @@ $strQBEDel = '
|
||||
$strQBEIns = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strQueryOnDb = 'SQL-<2D><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <b>%s</b>:';
|
||||
$strQueryStatistics = '<b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b>: <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strQueryType = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strQueryType = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
|
||||
$strReType = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strReceived = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strReceived = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strRecords = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strReferentialIntegrity = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>:';
|
||||
$strRelationNotWorking = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s<><73><EFBFBD><EFBFBD>%s.';
|
||||
$strRelationView = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
|
||||
$strRelationalSchema = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strRelationalSchema = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strReloadFailed = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MySQL.';
|
||||
$strReloadMySQL = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MySQL';
|
||||
$strRememberReload = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
@@ -380,23 +380,23 @@ $strSelectFields = '
|
||||
$strSelectNumRows = '<27><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSelectTables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28>)';
|
||||
$strSend = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSent = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSent = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServer = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s';
|
||||
$strServerChoice = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerStatusUptime = '<27><><EFBFBD><EFBFBD> MySQL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s. <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s.';
|
||||
$strServerTabProcesslist = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerTabVariables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerStatusUptime = '<27><><EFBFBD><EFBFBD> MySQL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s. <20><> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s.';
|
||||
$strServerTabProcesslist = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerTabVariables = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerTrafficNotes = '<b><3E><><EFBFBD><EFBFBD><EFBFBD><EFBFBD></b>: <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> MySQL <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strServerVars = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerVars = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strServerVersion = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSessionValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSessionValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSetEnumVal = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> "enum" <20> "set", <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>: \'a\',\'b\',\'c\'...<br /><3E><><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> ("\"") <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> ("\'") <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> (<28><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, \'\\\\xyz\' <20><><EFBFBD> \'a\\\'b\').';
|
||||
$strShow = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowAll = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD>';
|
||||
$strShowColor = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD>';
|
||||
$strShowCols = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowDatadictAs = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowDatadictAs = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowGrid = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strShowPHPInfo = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> PHP';
|
||||
$strShowTableDimension = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -409,7 +409,7 @@ $strSort = '
|
||||
$strSpaceUsage = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strSplitWordsWithSpace = '<27><><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> (" ").';
|
||||
$strStatement = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStatus = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStrucCSV = 'CSV <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStrucData = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strStrucDrop = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
@@ -428,7 +428,7 @@ $strTableHasBeenDropped = '
|
||||
$strTableHasBeenEmptied = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableHasBeenFlushed = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> %s';
|
||||
$strTableMaintenance = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableOfContents = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableOfContents = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableStructure = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTableType = '<27><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTables = '%s <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>(<28>)';
|
||||
@@ -436,11 +436,11 @@ $strTextAreaLength = '
|
||||
$strTheContent = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strTheContents = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD> <20> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strTheTerminator = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strThreadSuccessfullyKilled = 'Thread %s <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strTime = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strThreadSuccessfullyKilled = 'Thread %s <20><><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>.';
|
||||
$strTime = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTotal = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTotalUC = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTraffic = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTotalUC = '<27><><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strTraffic = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strType = '<27><><EFBFBD>';
|
||||
|
||||
$strUncheckAll = '<27><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD>';
|
||||
@@ -461,7 +461,7 @@ $strUsers = '
|
||||
$strValidateSQL = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SQL';
|
||||
$strValidatorError = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> SQL <20><> <20><><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>. <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD> PHP, <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> %s<><73><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>%s.';
|
||||
$strValue = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strVar = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strVar = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strViewDump = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>';
|
||||
$strViewDumpDB = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20><><EFBFBD><EFBFBD> <20><>';
|
||||
|
||||
@@ -475,4 +475,42 @@ $strYes = '
|
||||
|
||||
$strZip = '<27><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD> <20> zip';
|
||||
|
||||
// To translate
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -497,4 +497,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -496,4 +496,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -477,4 +477,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -478,4 +478,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -477,4 +477,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -17,8 +17,10 @@ $month = array('Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Avg', 'Sep', 'O
|
||||
// See http://www.php.net/manual/en/function.strftime.php to define the
|
||||
// variable below
|
||||
$datefmt = '%d %B %Y ob %I:%M %p';
|
||||
$timespanfmt = '%s dni, %s ur, %s minut in %s sekund';
|
||||
|
||||
$strAPrimaryKey = 'Na %s je dodan primarni klju<6A>';
|
||||
$strAbortedClients = 'Prekinjeno';
|
||||
$strAccessDenied = 'Dostop zavrnjen';
|
||||
$strAction = 'Akcija';
|
||||
$strAddDeleteColumn = 'Dodaj/Odstrani stolpec \'Polje\'';
|
||||
@@ -62,7 +64,7 @@ $strBookmarkQuery = 'Ozna
|
||||
$strBookmarkThis = 'Ozna<6E>i to SQL-poizvedbo';
|
||||
$strBookmarkView = 'Samo pogled';
|
||||
$strBrowse = 'Prebrskaj';
|
||||
$strBzError = 'phpMyAdmin ni mogel stisniti odlo<6C>enih podatkov zaradi pokvarjenega Bz2 modula v tej razli<6C>ici PHP. Priporo<72>amo, da v konfiguracijski datoteki postavite zapis <code>$cfg[\'BZipDump\']</code> na <code>FALSE</code>. <20>e <20>elite uporabljati stiskanje Bz2, morate nadgraditi va<76>o verzijo PHP. Za podrobnosti poglejte PHP poro<72>ilo %s.';
|
||||
$strBzError = 'phpMyAdmin ni uspel stisniti odlo<6C>enih podatkov zaradi neuporabne kon<6F>nice Bz2 v tej razli<6C>ici php. Zelo dobro bi bilo, da v konfiguracijski datoteki za phpMyAdmin spremenite ukaz <code>$cfg[\'BZipDump\']</code> v <code>FALSE</code>. <20>e <20>elite izvajati stiskanje s pomo<6D>jo Bz2, boste morali posodobiti php v novej<65>o razli<6C>ico. Za podrobnosti si oglejte php poro<72>ilo o napaki %s.';
|
||||
$strBzip = '"bzipano"';
|
||||
|
||||
$strCannotLogin = 'Ne morem se prijaviti v MySQL stre<72>nik';
|
||||
@@ -90,10 +92,11 @@ $strCompression = 'Stiskanje';
|
||||
$strConfigFileError = 'phpMyAdmin ni mogel prebrati konfiguracijske datoteke!<br />To se lahko zgodi, <20>e php pri prevajanju konfiguracijske datoteke najde napako ali pa ne najde datoteke.<br />Prosimo, odprite konfiguracijsko datoteko s povezavo, ki je navedena spodaj in preberite dobljeno sporo<72>ilo o napaki. V ve<76>ini primerov gre za manjkajo<6A>i narekovaj ali podpi<70>je.<br /><3E>e dobite prazno stran, je vse v redu.';
|
||||
$strConfigureTableCoord = 'Prosimo, konfigurirajte koordinate za tabelo %s';
|
||||
$strConfirm = 'Ali res <20>elite to storiti?';
|
||||
$strConnections = 'Povezave';
|
||||
$strCookiesRequired = '<27>e <20>elite <20>e dalje uporabljati program, morate omogo<67>iti pi<70>kotke.';
|
||||
$strCopyTable = 'Kopiraj tabelo v (podatkovna_baza<b>.</b>tabela):';
|
||||
$strCopyTableOK = 'Tabela %s je skopirana v %s.';
|
||||
$strCouldNotKill = 'phpMyAdmin ni mogel uni<6E>iti niti %s. Verjetno je <20>e uni<EFBFBD>ena.';
|
||||
$strCouldNotKill = 'phpMyAdmin ni uspel prekiniti teme %s. Verjetno je <20>e prekinjena.';
|
||||
$strCreate = 'Ustvari';
|
||||
$strCreateIndex = 'Ustvari indeks na %s stolpcih';
|
||||
$strCreateIndexTopic = 'Ustvari nov indeks';
|
||||
@@ -151,6 +154,7 @@ $strExportToXML = 'Izvozi v XML obliko';
|
||||
$strExtendedInserts = 'Raz<61>irjene \'insert\' poizvedbe';
|
||||
$strExtra = 'Dodatno';
|
||||
|
||||
$strFailedAttempts = 'Neuspeli poizkusi';
|
||||
$strField = 'Polje';
|
||||
$strFieldHasBeenDropped = 'Polje %s je zavr<76>eno';
|
||||
$strFields = 'Polja';
|
||||
@@ -168,6 +172,7 @@ $strFunction = 'Funkcija';
|
||||
$strGenBy = 'Ustvaril';
|
||||
$strGenTime = '<27>as nastanka';
|
||||
$strGeneralRelationFeat = 'Splo<6C>ne lastnosti relacij';
|
||||
$strGlobalValue = 'Skupna vrednost';
|
||||
$strGo = 'Izvedi';
|
||||
$strGrants = 'Dovoljenja';
|
||||
$strGzip = '"gzipano"';
|
||||
@@ -226,6 +231,7 @@ $strMissingBracket = 'Manjkajo
|
||||
$strModifications = 'Spremembe so shranjene';
|
||||
$strModify = 'Spremeni';
|
||||
$strModifyIndexTopic = 'Spremeni indeks';
|
||||
$strMoreStatusVars = 'Dodatne statusne spremenljivke';
|
||||
$strMoveTable = 'Premakni tabelo v (podatkovna_baza<b>.</b>tabela):';
|
||||
$strMoveTableOK = 'Tabela %s je bila premaknjena v %s.';
|
||||
$strMySQLCharset = 'MySQL kodna tabela';
|
||||
@@ -286,11 +292,12 @@ $strPdfDbSchema = 'Shema podatkovne baze "%s" - Stran %s';
|
||||
$strPdfInvalidPageNum = 'Nedefinirna <20>tevilka PDF strani!';
|
||||
$strPdfInvalidTblName = 'Tabela "%s" ne obstaja!';
|
||||
$strPdfNoTables = 'Ni tabel';
|
||||
$strPerHour = 'na uro';
|
||||
$strPhp = 'Ustvari PHP kodo';
|
||||
$strPmaDocumentation = 'phpMyAdmin dokumentacija';
|
||||
$strPmaUriError = 'Ukaz <tt>$cfg[\'PmaAbsoluteUri\']</tt> mora biti definiran v konfiguracijski datoteki!';
|
||||
$strPortrait = 'Pokon<6F>no';
|
||||
$strProcesslist = 'Spisek procesov';
|
||||
$strProcesslist = 'Seznam procesov';
|
||||
$strPos1 = 'Za<5A>etek';
|
||||
$strPrevious = 'Prej<65>nji';
|
||||
$strPrimary = 'Primarni';
|
||||
@@ -308,8 +315,11 @@ $strQBE = 'Poizvedba';
|
||||
$strQBEDel = 'Bri<72>i';
|
||||
$strQBEIns = 'Vstavi';
|
||||
$strQueryOnDb = 'SQL-poizvedba na podatkovni bazi <b>%s</b>:';
|
||||
$strQueryStatistics = '<b>Statistika poizvedbe</b>: Od zagona je bilo stre<72>niku poslanih %s poizvedb.';
|
||||
$strQueryType = 'Vrsta poizvedbe';
|
||||
|
||||
$strReType = 'Ponovno vnesi';
|
||||
$strReceived = 'Prejeto';
|
||||
$strRecords = 'Zapisi';
|
||||
$strReferentialIntegrity = 'Preveri referen<65>no integriteto:';
|
||||
$strRelationalSchema = 'Relacijska shema';
|
||||
@@ -368,9 +378,17 @@ $strSelectFields = 'Izberite polja (vsaj eno):';
|
||||
$strSelectNumRows = 'in poizvedba';
|
||||
$strSelectTables = 'Izberi tabele';
|
||||
$strSend = 'Shrani kot datoteko';
|
||||
$strSent = 'Poslano';
|
||||
$strServer = 'Stre<72>nik %s';
|
||||
$strServerChoice = 'Izbira stre<72>nika';
|
||||
$strServerStatus = 'Podatki o izvajanju';
|
||||
$strServerStatusUptime = 'MySQL stre<72>nik deluje <20>e %s. Zagnal se je %s.';
|
||||
$strServerTabVariables = 'Spremenljivke';
|
||||
$strServerTabProcesslist = 'Procesi';
|
||||
$strServerTrafficNotes = '<b>Promet na stre<72>niku</b>: V teh tabelah je prikazana statistika obremenitve omre<72>ja za ta MySQL stre<72>nik, odkar je bil zagnan.';
|
||||
$strServerVars = 'Spremenljivke in nastavitve stre<72>nika';
|
||||
$strServerVersion = 'Razli<6C>ica stre<72>nika';
|
||||
$strSessionValue = 'Vrednost seje';
|
||||
$strSetEnumVal = '<27>e je polje vrste "enum" ali "set", navedite vrednosti v obliki: \'a\',\'b\',\'c\'...<br /> <20>e <20>elite med vrednostmi uporabiti po<70>evnico ("\") ali enojni narekovaj ("\'"), pred tem znakom vnesite po<70>evnico (n.pr. \'\\\\xyz\' ali \'a\\\'b\').';
|
||||
$strShow = 'Poka<6B>i';
|
||||
$strShowAll = 'Poka<6B>i vse';
|
||||
@@ -389,7 +407,7 @@ $strSort = 'Sortiraj';
|
||||
$strSpaceUsage = 'Poraba prostora';
|
||||
$strSplitWordsWithSpace = 'Besede so lo<6C>ene s presledkom (" ").';
|
||||
$strStatement = 'Izjave';
|
||||
$strStatus = 'Status';
|
||||
$strStatus = 'Stanje';
|
||||
$strStrucCSV = 'CSV podatki';
|
||||
$strStrucData = 'Struktura in podatki';
|
||||
$strStrucDrop = 'Dodaj \'drop table\' poizvedbo';
|
||||
@@ -416,10 +434,11 @@ $strTextAreaLength = ' Zaradi njegove dol
|
||||
$strTheContent = 'Vsebina datoteke je vne<6E>ena.';
|
||||
$strTheContents = 'Vsebina datoteke zamenja vsebino izbrane tabele v vrsticah z identi<74>nim primarnim ali unikatnim klju<6A>em.';
|
||||
$strTheTerminator = 'Zaklju<6A>ni znak polj.';
|
||||
$strThreadSuccessfullyKilled = 'Nit %s je uspe<EFBFBD>no uni<6E>ena.';
|
||||
$strThreadSuccessfullyKilled = 'Tema %s je bila prekinjena.';
|
||||
$strTime = '<27>as';
|
||||
$strTotal = 'skupaj';
|
||||
$strTotalUC = 'Skupaj';
|
||||
$strTraffic = 'Promet';
|
||||
$strType = 'Vrsta';
|
||||
|
||||
$strUncheckAll = 'Odzna<6E>i vse';
|
||||
@@ -440,6 +459,7 @@ $strUsers = 'Uporabniki';
|
||||
$strValidateSQL = 'Preveri pravilnost SQL stavka';
|
||||
$strValidatorError = 'Ne morem inicializirati SQL validatorja. Prosim preverite, <20>e so name<6D><65>eni vsi php raz<61>iritve, kot je navedeno v %dokumenaciji%.';
|
||||
$strValue = 'Vrednost';
|
||||
$strVar = 'Spremenljivka';
|
||||
$strViewDump = 'Preglej dump (shemo) tabele';
|
||||
$strViewDumpDB = 'Preglej dump (shemo) podatkovne baze';
|
||||
|
||||
@@ -454,26 +474,41 @@ $strYes = 'Da';
|
||||
$strZip = '"zipano"';
|
||||
|
||||
// To translate
|
||||
$timespanfmt = '%s days, %s hours, %s minutes and %s seconds'; //to translate
|
||||
|
||||
$strAbortedClients = 'Aborted'; //to translate
|
||||
$strConnections = 'Connections'; //to translate
|
||||
$strFailedAttempts = 'Failed attempts'; //to translate
|
||||
$strGlobalValue = 'Global value'; //to translate
|
||||
$strMoreStatusVars = 'More status variables'; //to translate
|
||||
$strPerHour = 'per hour'; //to translate
|
||||
$strQueryStatistics = '<b>Query statistics</b>: Since its startup, %s queries have been sent to the server.'; //to translate
|
||||
$strQueryType = 'Query type'; //to translate
|
||||
$strReceived = 'Received'; //to translate
|
||||
$strSent = 'Sent'; //to translate
|
||||
$strServerStatus = 'Runtime Information'; //to translate
|
||||
$strServerStatusUptime = 'This MySQL server has been running for %s. It started up on %s.'; //to translate
|
||||
$strServerTabVariables = 'Variables'; //to translate
|
||||
$strServerTabProcesslist = 'Processes'; //to translate
|
||||
$strServerTrafficNotes = '<b>Server traffic</b>: These tables show the network traffic statistics of this MySQL server since its startup.';
|
||||
$strServerVars = 'Server variables and settings'; //to translate
|
||||
$strSessionValue = 'Session value'; //to translate
|
||||
$strTraffic = 'Traffic'; //to translate
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -18,8 +18,10 @@ $month = array('Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Avg', 'Sep', 'O
|
||||
// See http://www.php.net/manual/en/function.strftime.php to define the
|
||||
// variable below
|
||||
$datefmt = '%d %B %Y ob %I:%M %p';
|
||||
$timespanfmt = '%s dni, %s ur, %s minut in %s sekund';
|
||||
|
||||
$strAPrimaryKey = 'Na %s je dodan primarni ključ';
|
||||
$strAbortedClients = 'Prekinjeno';
|
||||
$strAccessDenied = 'Dostop zavrnjen';
|
||||
$strAction = 'Akcija';
|
||||
$strAddDeleteColumn = 'Dodaj/Odstrani stolpec \'Polje\'';
|
||||
@@ -63,7 +65,7 @@ $strBookmarkQuery = 'Označena SQL-poizvedba';
|
||||
$strBookmarkThis = 'Označi to SQL-poizvedbo';
|
||||
$strBookmarkView = 'Samo pogled';
|
||||
$strBrowse = 'Prebrskaj';
|
||||
$strBzError = 'phpMyAdmin ni mogel stisniti odloženih podatkov zaradi pokvarjenega Bz2 modula v tej različici PHP. Priporočamo, da v konfiguracijski datoteki postavite zapis <code>$cfg[\'BZipDump\']</code> na <code>FALSE</code>. Če želite uporabljati stiskanje Bz2, morate nadgraditi vašo verzijo PHP. Za podrobnosti poglejte PHP poročilo %s.';
|
||||
$strBzError = 'phpMyAdmin ni uspel stisniti odloženih podatkov zaradi neuporabne končnice Bz2 v tej različici php. Zelo dobro bi bilo, da v konfiguracijski datoteki za phpMyAdmin spremenite ukaz <code>$cfg[\'BZipDump\']</code> v <code>FALSE</code>. Če želite izvajati stiskanje s pomočjo Bz2, boste morali posodobiti php v novejšo različico. Za podrobnosti si oglejte php poročilo o napaki %s.';
|
||||
$strBzip = '"bzipano"';
|
||||
|
||||
$strCannotLogin = 'Ne morem se prijaviti v MySQL strežnik';
|
||||
@@ -91,10 +93,11 @@ $strCompression = 'Stiskanje';
|
||||
$strConfigFileError = 'phpMyAdmin ni mogel prebrati konfiguracijske datoteke!<br />To se lahko zgodi, če php pri prevajanju konfiguracijske datoteke najde napako ali pa ne najde datoteke.<br />Prosimo, odprite konfiguracijsko datoteko s povezavo, ki je navedena spodaj in preberite dobljeno sporočilo o napaki. V večini primerov gre za manjkajoči narekovaj ali podpičje.<br />Če dobite prazno stran, je vse v redu.';
|
||||
$strConfigureTableCoord = 'Prosimo, konfigurirajte koordinate za tabelo %s';
|
||||
$strConfirm = 'Ali res želite to storiti?';
|
||||
$strConnections = 'Povezave';
|
||||
$strCookiesRequired = 'Če želite še dalje uporabljati program, morate omogočiti piškotke.';
|
||||
$strCopyTable = 'Kopiraj tabelo v (podatkovna_baza<b>.</b>tabela):';
|
||||
$strCopyTableOK = 'Tabela %s je skopirana v %s.';
|
||||
$strCouldNotKill = 'phpMyAdmin ni mogel uničiti niti %s. Verjetno je že uničena.';
|
||||
$strCouldNotKill = 'phpMyAdmin ni uspel prekiniti teme %s. Verjetno je že prekinjena.';
|
||||
$strCreate = 'Ustvari';
|
||||
$strCreateIndex = 'Ustvari indeks na %s stolpcih';
|
||||
$strCreateIndexTopic = 'Ustvari nov indeks';
|
||||
@@ -152,6 +155,7 @@ $strExportToXML = 'Izvozi v XML obliko';
|
||||
$strExtendedInserts = 'Razširjene \'insert\' poizvedbe';
|
||||
$strExtra = 'Dodatno';
|
||||
|
||||
$strFailedAttempts = 'Neuspeli poizkusi';
|
||||
$strField = 'Polje';
|
||||
$strFieldHasBeenDropped = 'Polje %s je zavrženo';
|
||||
$strFields = 'Polja';
|
||||
@@ -169,6 +173,7 @@ $strFunction = 'Funkcija';
|
||||
$strGenBy = 'Ustvaril';
|
||||
$strGenTime = 'Čas nastanka';
|
||||
$strGeneralRelationFeat = 'Splošne lastnosti relacij';
|
||||
$strGlobalValue = 'Skupna vrednost';
|
||||
$strGo = 'Izvedi';
|
||||
$strGrants = 'Dovoljenja';
|
||||
$strGzip = '"gzipano"';
|
||||
@@ -227,6 +232,7 @@ $strMissingBracket = 'Manjkajoč oklepaj';
|
||||
$strModifications = 'Spremembe so shranjene';
|
||||
$strModify = 'Spremeni';
|
||||
$strModifyIndexTopic = 'Spremeni indeks';
|
||||
$strMoreStatusVars = 'Dodatne statusne spremenljivke';
|
||||
$strMoveTable = 'Premakni tabelo v (podatkovna_baza<b>.</b>tabela):';
|
||||
$strMoveTableOK = 'Tabela %s je bila premaknjena v %s.';
|
||||
$strMySQLCharset = 'MySQL kodna tabela';
|
||||
@@ -287,11 +293,12 @@ $strPdfDbSchema = 'Shema podatkovne baze "%s" - Stran %s';
|
||||
$strPdfInvalidPageNum = 'Nedefinirna številka PDF strani!';
|
||||
$strPdfInvalidTblName = 'Tabela "%s" ne obstaja!';
|
||||
$strPdfNoTables = 'Ni tabel';
|
||||
$strPerHour = 'na uro';
|
||||
$strPhp = 'Ustvari PHP kodo';
|
||||
$strPmaDocumentation = 'phpMyAdmin dokumentacija';
|
||||
$strPmaUriError = 'Ukaz <tt>$cfg[\'PmaAbsoluteUri\']</tt> mora biti definiran v konfiguracijski datoteki!';
|
||||
$strPortrait = 'Pokončno';
|
||||
$strProcesslist = 'Spisek procesov';
|
||||
$strProcesslist = 'Seznam procesov';
|
||||
$strPos1 = 'Začetek';
|
||||
$strPrevious = 'Prejšnji';
|
||||
$strPrimary = 'Primarni';
|
||||
@@ -309,8 +316,11 @@ $strQBE = 'Poizvedba';
|
||||
$strQBEDel = 'Briši';
|
||||
$strQBEIns = 'Vstavi';
|
||||
$strQueryOnDb = 'SQL-poizvedba na podatkovni bazi <b>%s</b>:';
|
||||
$strQueryStatistics = '<b>Statistika poizvedbe</b>: Od zagona je bilo strežniku poslanih %s poizvedb.';
|
||||
$strQueryType = 'Vrsta poizvedbe';
|
||||
|
||||
$strReType = 'Ponovno vnesi';
|
||||
$strReceived = 'Prejeto';
|
||||
$strRecords = 'Zapisi';
|
||||
$strReferentialIntegrity = 'Preveri referenčno integriteto:';
|
||||
$strRelationalSchema = 'Relacijska shema';
|
||||
@@ -369,9 +379,17 @@ $strSelectFields = 'Izberite polja (vsaj eno):';
|
||||
$strSelectNumRows = 'in poizvedba';
|
||||
$strSelectTables = 'Izberi tabele';
|
||||
$strSend = 'Shrani kot datoteko';
|
||||
$strSent = 'Poslano';
|
||||
$strServer = 'Strežnik %s';
|
||||
$strServerChoice = 'Izbira strežnika';
|
||||
$strServerStatus = 'Podatki o izvajanju';
|
||||
$strServerStatusUptime = 'MySQL strežnik deluje že %s. Zagnal se je %s.';
|
||||
$strServerTabVariables = 'Spremenljivke';
|
||||
$strServerTabProcesslist = 'Procesi';
|
||||
$strServerTrafficNotes = '<b>Promet na strežniku</b>: V teh tabelah je prikazana statistika obremenitve omrežja za ta MySQL strežnik, odkar je bil zagnan.';
|
||||
$strServerVars = 'Spremenljivke in nastavitve strežnika';
|
||||
$strServerVersion = 'Različica strežnika';
|
||||
$strSessionValue = 'Vrednost seje';
|
||||
$strSetEnumVal = 'Če je polje vrste "enum" ali "set", navedite vrednosti v obliki: \'a\',\'b\',\'c\'...<br /> Če želite med vrednostmi uporabiti poševnico ("\") ali enojni narekovaj ("\'"), pred tem znakom vnesite poševnico (n.pr. \'\\\\xyz\' ali \'a\\\'b\').';
|
||||
$strShow = 'Pokaži';
|
||||
$strShowAll = 'Pokaži vse';
|
||||
@@ -390,7 +408,7 @@ $strSort = 'Sortiraj';
|
||||
$strSpaceUsage = 'Poraba prostora';
|
||||
$strSplitWordsWithSpace = 'Besede so ločene s presledkom (" ").';
|
||||
$strStatement = 'Izjave';
|
||||
$strStatus = 'Status';
|
||||
$strStatus = 'Stanje';
|
||||
$strStrucCSV = 'CSV podatki';
|
||||
$strStrucData = 'Struktura in podatki';
|
||||
$strStrucDrop = 'Dodaj \'drop table\' poizvedbo';
|
||||
@@ -417,10 +435,11 @@ $strTextAreaLength = ' Zaradi njegove dolžine<br /> polja ne bo mogoče urejati
|
||||
$strTheContent = 'Vsebina datoteke je vnešena.';
|
||||
$strTheContents = 'Vsebina datoteke zamenja vsebino izbrane tabele v vrsticah z identičnim primarnim ali unikatnim ključem.';
|
||||
$strTheTerminator = 'Zaključni znak polj.';
|
||||
$strThreadSuccessfullyKilled = 'Nit %s je uspešno uničena.';
|
||||
$strThreadSuccessfullyKilled = 'Tema %s je bila prekinjena.';
|
||||
$strTime = 'Čas';
|
||||
$strTotal = 'skupaj';
|
||||
$strTotalUC = 'Skupaj';
|
||||
$strTraffic = 'Promet';
|
||||
$strType = 'Vrsta';
|
||||
|
||||
$strUncheckAll = 'Odznači vse';
|
||||
@@ -441,6 +460,7 @@ $strUsers = 'Uporabniki';
|
||||
$strValidateSQL = 'Preveri pravilnost SQL stavka';
|
||||
$strValidatorError = 'Ne morem inicializirati SQL validatorja. Prosim preverite, če so nameščeni vsi php razširitve, kot je navedeno v %dokumenaciji%.';
|
||||
$strValue = 'Vrednost';
|
||||
$strVar = 'Spremenljivka';
|
||||
$strViewDump = 'Preglej dump (shemo) tabele';
|
||||
$strViewDumpDB = 'Preglej dump (shemo) podatkovne baze';
|
||||
|
||||
@@ -455,26 +475,41 @@ $strYes = 'Da';
|
||||
$strZip = '"zipano"';
|
||||
|
||||
// To translate
|
||||
$timespanfmt = '%s days, %s hours, %s minutes and %s seconds'; //to translate
|
||||
|
||||
$strAbortedClients = 'Aborted'; //to translate
|
||||
$strConnections = 'Connections'; //to translate
|
||||
$strFailedAttempts = 'Failed attempts'; //to translate
|
||||
$strGlobalValue = 'Global value'; //to translate
|
||||
$strMoreStatusVars = 'More status variables'; //to translate
|
||||
$strPerHour = 'per hour'; //to translate
|
||||
$strQueryStatistics = '<b>Query statistics</b>: Since its startup, %s queries have been sent to the server.'; //to translate
|
||||
$strQueryType = 'Query type'; //to translate
|
||||
$strReceived = 'Received'; //to translate
|
||||
$strSent = 'Sent'; //to translate
|
||||
$strServerStatus = 'Runtime Information'; //to translate
|
||||
$strServerStatusUptime = 'This MySQL server has been running for %s. It started up on %s.'; //to translate
|
||||
$strServerTabVariables = 'Variables'; //to translate
|
||||
$strServerTabProcesslist = 'Processes'; //to translate
|
||||
$strServerTrafficNotes = '<b>Server traffic</b>: These tables show the network traffic statistics of this MySQL server since its startup.';
|
||||
$strServerVars = 'Server variables and settings'; //to translate
|
||||
$strSessionValue = 'Session value'; //to translate
|
||||
$strTraffic = 'Traffic'; //to translate
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -17,8 +17,10 @@ $month = array('Jan', 'Feb', 'Mar', 'Apr', 'Maj', 'Jun', 'Jul', 'Avg', 'Sep', 'O
|
||||
// See http://www.php.net/manual/en/function.strftime.php to define the
|
||||
// variable below
|
||||
$datefmt = '%d %B %Y ob %I:%M %p';
|
||||
$timespanfmt = '%s dni, %s ur, %s minut in %s sekund';
|
||||
|
||||
$strAPrimaryKey = 'Na %s je dodan primarni klju<6A>';
|
||||
$strAbortedClients = 'Prekinjeno';
|
||||
$strAccessDenied = 'Dostop zavrnjen';
|
||||
$strAction = 'Akcija';
|
||||
$strAddDeleteColumn = 'Dodaj/Odstrani stolpec \'Polje\'';
|
||||
@@ -62,7 +64,7 @@ $strBookmarkQuery = 'Ozna
|
||||
$strBookmarkThis = 'Ozna<6E>i to SQL-poizvedbo';
|
||||
$strBookmarkView = 'Samo pogled';
|
||||
$strBrowse = 'Prebrskaj';
|
||||
$strBzError = 'phpMyAdmin ni mogel stisniti odlo<6C>enih podatkov zaradi pokvarjenega Bz2 modula v tej razli<6C>ici PHP. Priporo<72>amo, da v konfiguracijski datoteki postavite zapis <code>$cfg[\'BZipDump\']</code> na <code>FALSE</code>. <20>e <20>elite uporabljati stiskanje Bz2, morate nadgraditi va<76>o verzijo PHP. Za podrobnosti poglejte PHP poro<72>ilo %s.';
|
||||
$strBzError = 'phpMyAdmin ni uspel stisniti odlo<6C>enih podatkov zaradi neuporabne kon<6F>nice Bz2 v tej razli<6C>ici php. Zelo dobro bi bilo, da v konfiguracijski datoteki za phpMyAdmin spremenite ukaz <code>$cfg[\'BZipDump\']</code> v <code>FALSE</code>. <20>e <20>elite izvajati stiskanje s pomo<6D>jo Bz2, boste morali posodobiti php v novej<65>o razli<6C>ico. Za podrobnosti si oglejte php poro<72>ilo o napaki %s.';
|
||||
$strBzip = '"bzipano"';
|
||||
|
||||
$strCannotLogin = 'Ne morem se prijaviti v MySQL stre<72>nik';
|
||||
@@ -90,10 +92,11 @@ $strCompression = 'Stiskanje';
|
||||
$strConfigFileError = 'phpMyAdmin ni mogel prebrati konfiguracijske datoteke!<br />To se lahko zgodi, <20>e php pri prevajanju konfiguracijske datoteke najde napako ali pa ne najde datoteke.<br />Prosimo, odprite konfiguracijsko datoteko s povezavo, ki je navedena spodaj in preberite dobljeno sporo<72>ilo o napaki. V ve<76>ini primerov gre za manjkajo<6A>i narekovaj ali podpi<70>je.<br /><3E>e dobite prazno stran, je vse v redu.';
|
||||
$strConfigureTableCoord = 'Prosimo, konfigurirajte koordinate za tabelo %s';
|
||||
$strConfirm = 'Ali res <20>elite to storiti?';
|
||||
$strConnections = 'Povezave';
|
||||
$strCookiesRequired = '<27>e <20>elite <20>e dalje uporabljati program, morate omogo<67>iti pi<70>kotke.';
|
||||
$strCopyTable = 'Kopiraj tabelo v (podatkovna_baza<b>.</b>tabela):';
|
||||
$strCopyTableOK = 'Tabela %s je skopirana v %s.';
|
||||
$strCouldNotKill = 'phpMyAdmin ni mogel uni<6E>iti niti %s. Verjetno je <20>e uni<EFBFBD>ena.';
|
||||
$strCouldNotKill = 'phpMyAdmin ni uspel prekiniti teme %s. Verjetno je <20>e prekinjena.';
|
||||
$strCreate = 'Ustvari';
|
||||
$strCreateIndex = 'Ustvari indeks na %s stolpcih';
|
||||
$strCreateIndexTopic = 'Ustvari nov indeks';
|
||||
@@ -151,6 +154,7 @@ $strExportToXML = 'Izvozi v XML obliko';
|
||||
$strExtendedInserts = 'Raz<61>irjene \'insert\' poizvedbe';
|
||||
$strExtra = 'Dodatno';
|
||||
|
||||
$strFailedAttempts = 'Neuspeli poizkusi';
|
||||
$strField = 'Polje';
|
||||
$strFieldHasBeenDropped = 'Polje %s je zavr<76>eno';
|
||||
$strFields = 'Polja';
|
||||
@@ -168,6 +172,7 @@ $strFunction = 'Funkcija';
|
||||
$strGenBy = 'Ustvaril';
|
||||
$strGenTime = '<27>as nastanka';
|
||||
$strGeneralRelationFeat = 'Splo<6C>ne lastnosti relacij';
|
||||
$strGlobalValue = 'Skupna vrednost';
|
||||
$strGo = 'Izvedi';
|
||||
$strGrants = 'Dovoljenja';
|
||||
$strGzip = '"gzipano"';
|
||||
@@ -226,6 +231,7 @@ $strMissingBracket = 'Manjkajo
|
||||
$strModifications = 'Spremembe so shranjene';
|
||||
$strModify = 'Spremeni';
|
||||
$strModifyIndexTopic = 'Spremeni indeks';
|
||||
$strMoreStatusVars = 'Dodatne statusne spremenljivke';
|
||||
$strMoveTable = 'Premakni tabelo v (podatkovna_baza<b>.</b>tabela):';
|
||||
$strMoveTableOK = 'Tabela %s je bila premaknjena v %s.';
|
||||
$strMySQLCharset = 'MySQL kodna tabela';
|
||||
@@ -286,11 +292,12 @@ $strPdfDbSchema = 'Shema podatkovne baze "%s" - Stran %s';
|
||||
$strPdfInvalidPageNum = 'Nedefinirna <20>tevilka PDF strani!';
|
||||
$strPdfInvalidTblName = 'Tabela "%s" ne obstaja!';
|
||||
$strPdfNoTables = 'Ni tabel';
|
||||
$strPerHour = 'na uro';
|
||||
$strPhp = 'Ustvari PHP kodo';
|
||||
$strPmaDocumentation = 'phpMyAdmin dokumentacija';
|
||||
$strPmaUriError = 'Ukaz <tt>$cfg[\'PmaAbsoluteUri\']</tt> mora biti definiran v konfiguracijski datoteki!';
|
||||
$strPortrait = 'Pokon<6F>no';
|
||||
$strProcesslist = 'Spisek procesov';
|
||||
$strProcesslist = 'Seznam procesov';
|
||||
$strPos1 = 'Za<5A>etek';
|
||||
$strPrevious = 'Prej<65>nji';
|
||||
$strPrimary = 'Primarni';
|
||||
@@ -308,8 +315,11 @@ $strQBE = 'Poizvedba';
|
||||
$strQBEDel = 'Bri<72>i';
|
||||
$strQBEIns = 'Vstavi';
|
||||
$strQueryOnDb = 'SQL-poizvedba na podatkovni bazi <b>%s</b>:';
|
||||
$strQueryStatistics = '<b>Statistika poizvedbe</b>: Od zagona je bilo stre<72>niku poslanih %s poizvedb.';
|
||||
$strQueryType = 'Vrsta poizvedbe';
|
||||
|
||||
$strReType = 'Ponovno vnesi';
|
||||
$strReceived = 'Prejeto';
|
||||
$strRecords = 'Zapisi';
|
||||
$strReferentialIntegrity = 'Preveri referen<65>no integriteto:';
|
||||
$strRelationalSchema = 'Relacijska shema';
|
||||
@@ -368,9 +378,17 @@ $strSelectFields = 'Izberite polja (vsaj eno):';
|
||||
$strSelectNumRows = 'in poizvedba';
|
||||
$strSelectTables = 'Izberi tabele';
|
||||
$strSend = 'Shrani kot datoteko';
|
||||
$strSent = 'Poslano';
|
||||
$strServer = 'Stre<72>nik %s';
|
||||
$strServerChoice = 'Izbira stre<72>nika';
|
||||
$strServerStatus = 'Podatki o izvajanju';
|
||||
$strServerStatusUptime = 'MySQL stre<72>nik deluje <20>e %s. Zagnal se je %s.';
|
||||
$strServerTabVariables = 'Spremenljivke';
|
||||
$strServerTabProcesslist = 'Procesi';
|
||||
$strServerTrafficNotes = '<b>Promet na stre<72>niku</b>: V teh tabelah je prikazana statistika obremenitve omre<72>ja za ta MySQL stre<72>nik, odkar je bil zagnan.';
|
||||
$strServerVars = 'Spremenljivke in nastavitve stre<72>nika';
|
||||
$strServerVersion = 'Razli<6C>ica stre<72>nika';
|
||||
$strSessionValue = 'Vrednost seje';
|
||||
$strSetEnumVal = '<27>e je polje vrste "enum" ali "set", navedite vrednosti v obliki: \'a\',\'b\',\'c\'...<br /> <20>e <20>elite med vrednostmi uporabiti po<70>evnico ("\") ali enojni narekovaj ("\'"), pred tem znakom vnesite po<70>evnico (n.pr. \'\\\\xyz\' ali \'a\\\'b\').';
|
||||
$strShow = 'Poka<6B>i';
|
||||
$strShowAll = 'Poka<6B>i vse';
|
||||
@@ -389,7 +407,7 @@ $strSort = 'Sortiraj';
|
||||
$strSpaceUsage = 'Poraba prostora';
|
||||
$strSplitWordsWithSpace = 'Besede so lo<6C>ene s presledkom (" ").';
|
||||
$strStatement = 'Izjave';
|
||||
$strStatus = 'Status';
|
||||
$strStatus = 'Stanje';
|
||||
$strStrucCSV = 'CSV podatki';
|
||||
$strStrucData = 'Struktura in podatki';
|
||||
$strStrucDrop = 'Dodaj \'drop table\' poizvedbo';
|
||||
@@ -416,10 +434,11 @@ $strTextAreaLength = ' Zaradi njegove dol
|
||||
$strTheContent = 'Vsebina datoteke je vne<6E>ena.';
|
||||
$strTheContents = 'Vsebina datoteke zamenja vsebino izbrane tabele v vrsticah z identi<74>nim primarnim ali unikatnim klju<6A>em.';
|
||||
$strTheTerminator = 'Zaklju<6A>ni znak polj.';
|
||||
$strThreadSuccessfullyKilled = 'Nit %s je uspe<EFBFBD>no uni<6E>ena.';
|
||||
$strThreadSuccessfullyKilled = 'Tema %s je bila prekinjena.';
|
||||
$strTime = '<27>as';
|
||||
$strTotal = 'skupaj';
|
||||
$strTotalUC = 'Skupaj';
|
||||
$strTraffic = 'Promet';
|
||||
$strType = 'Vrsta';
|
||||
|
||||
$strUncheckAll = 'Odzna<6E>i vse';
|
||||
@@ -440,6 +459,7 @@ $strUsers = 'Uporabniki';
|
||||
$strValidateSQL = 'Preveri pravilnost SQL stavka';
|
||||
$strValidatorError = 'Ne morem inicializirati SQL validatorja. Prosim preverite, <20>e so name<6D><65>eni vsi php raz<61>iritve, kot je navedeno v %dokumenaciji%.';
|
||||
$strValue = 'Vrednost';
|
||||
$strVar = 'Spremenljivka';
|
||||
$strViewDump = 'Preglej dump (shemo) tabele';
|
||||
$strViewDumpDB = 'Preglej dump (shemo) podatkovne baze';
|
||||
|
||||
@@ -454,26 +474,41 @@ $strYes = 'Da';
|
||||
$strZip = '"zipano"';
|
||||
|
||||
// To translate
|
||||
$timespanfmt = '%s days, %s hours, %s minutes and %s seconds'; //to translate
|
||||
|
||||
$strAbortedClients = 'Aborted'; //to translate
|
||||
$strConnections = 'Connections'; //to translate
|
||||
$strFailedAttempts = 'Failed attempts'; //to translate
|
||||
$strGlobalValue = 'Global value'; //to translate
|
||||
$strMoreStatusVars = 'More status variables'; //to translate
|
||||
$strPerHour = 'per hour'; //to translate
|
||||
$strQueryStatistics = '<b>Query statistics</b>: Since its startup, %s queries have been sent to the server.'; //to translate
|
||||
$strQueryType = 'Query type'; //to translate
|
||||
$strReceived = 'Received'; //to translate
|
||||
$strSent = 'Sent'; //to translate
|
||||
$strServerStatus = 'Runtime Information'; //to translate
|
||||
$strServerStatusUptime = 'This MySQL server has been running for %s. It started up on %s.'; //to translate
|
||||
$strServerTabVariables = 'Variables'; //to translate
|
||||
$strServerTabProcesslist = 'Processes'; //to translate
|
||||
$strServerTrafficNotes = '<b>Server traffic</b>: These tables show the network traffic statistics of this MySQL server since its startup.';
|
||||
$strServerVars = 'Server variables and settings'; //to translate
|
||||
$strSessionValue = 'Session value'; //to translate
|
||||
$strTraffic = 'Traffic'; //to translate
|
||||
$strVar = 'Variable'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -473,4 +473,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -474,4 +474,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -474,4 +474,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -475,4 +475,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -478,4 +478,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -479,4 +479,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -482,4 +482,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -483,4 +483,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -476,4 +476,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -475,4 +475,42 @@ $strThreadSuccessfullyKilled = 'Thread %s was successfully killed.'; //to transl
|
||||
|
||||
$strBzError = 'phpMyAdmin was unable to compress the dump because of a broken Bz2 extension in this php version. It is strongly recommended to set the <code>$cfg[\'BZipDump\']</code> directive in your phpMyAdmin configuration file to <code>FALSE</code>. If you want to use the Bz2 compression features, you should upgrade to a later php version. See php bug report %s for details.'; //to translate
|
||||
$strLaTeX = 'LaTeX'; //to translate
|
||||
|
||||
$strAdministration = 'Administration'; //to translate
|
||||
$strFlushPrivilegesNote = 'Note: phpMyAdmin gets the users\' privileges directly from MySQL\'s privilege tables. The content of this tables may differ from the privileges the server uses if manual changes have made to it. In this case, you should %sreload the privileges%s before you continue.'; //to translate
|
||||
$strGlobalPrivileges = 'Global privileges'; //to translate
|
||||
$strGrantOption = 'Grant'; //to translate
|
||||
$strPrivDescAllPrivileges = 'Includes all privileges except GRANT.'; //to translate
|
||||
$strPrivDescAlter = 'Allows altering the structure of existing tables.'; //to translate
|
||||
$strPrivDescCreateDb = 'Allows creating new databases and tables.'; //to translate
|
||||
$strPrivDescCreateTbl = 'Allows creating new tables.'; //to translate
|
||||
$strPrivDescCreateTmpTable = 'Allows creating temporary tables.'; //to translate
|
||||
$strPrivDescDelete = 'Allows deleting data.'; //to translate
|
||||
$strPrivDescDropDb = 'Allows dropping databases and tables.'; //to translate
|
||||
$strPrivDescDropTbl = 'Allows dropping tables.'; //to translate
|
||||
$strPrivDescExecute = 'Allows running stored procedures; Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescFile = 'Allows importing data from and exporting data into files.'; //to translate
|
||||
$strPrivDescGrant = 'Allows adding users and privileges without reloading the privilege tables.'; //to translate
|
||||
$strPrivDescIndex = 'Allows creating and dropping indexes.'; //to translate
|
||||
$strPrivDescInsert = 'Allows inserting and replacing data.'; //to translate
|
||||
$strPrivDescLockTables = 'Allows locking tables for the current thread.'; //to translate
|
||||
$strPrivDescMaxConnections = 'Limits the number of new connections the user may open per hour.';
|
||||
$strPrivDescMaxQuestions = 'Limits the number of queries the user may send to the server per hour.';
|
||||
$strPrivDescMaxUpdates = 'Limits the number of commands that that change any table or database the user may execute per hour.';
|
||||
$strPrivDescProcess3 = 'Allows killing processes of other users.'; //to translate
|
||||
$strPrivDescProcess4 = 'Allows viewing the complete queries in the process list.'; //to translate
|
||||
$strPrivDescReferences = 'Has no effect in this MySQL version.'; //to translate
|
||||
$strPrivDescReplClient = 'Gives the right tp the user to ask where the slaves / masters are.'; //to translate
|
||||
$strPrivDescReplSlave = 'Needed for the replication slaves.'; //to translate
|
||||
$strPrivDescReload = 'Allows reloading server settings and flushing the server\'s caches.'; //to translate
|
||||
$strPrivDescSelect = 'Allows reading data.'; //to translate
|
||||
$strPrivDescShowDb = 'Gives access to the complete list of databases.'; //to translate
|
||||
$strPrivDescShutdown = 'Allows shutting down the server.'; //to translate
|
||||
$strPrivDescSuper = 'Allows connectiong, even if maximum number of connections is reached; Required for most administrative operations like setting global variables or killing threads of other users.'; //to translate
|
||||
$strPrivDescUpdate = 'Allows changing data.'; //to translate
|
||||
$strPrivDescUsage = 'No privileges.'; //to translate
|
||||
$strPrivilegesReloaded = 'The privileges were reloaded successfully.'; //to translate
|
||||
$strResourceLimits = 'Resource limits'; //to translate
|
||||
$strUserOverview = 'User overview'; //to translate
|
||||
$strZeroRemovesTheLimit = 'Note: Setting these options to 0 (zero) removes the limit.'; //to translate
|
||||
?>
|
||||
|
@@ -331,7 +331,7 @@ h1 {font-family: sans-serif; font-size: large; font-weight: bold}
|
||||
if (!empty($the_query) && !strstr($the_query, 'connect')) {
|
||||
echo '<p>' . "\n";
|
||||
echo ' ' . $GLOBALS['strSQLQuery'] . ' : ' . "\n";
|
||||
if ($is_modify_link) {
|
||||
if ($is_modify_link && isset($db)) {
|
||||
echo ' ['
|
||||
. '<a href="db_details.php3?lang=' . $GLOBALS['lang'] . '&convcharset=' . $GLOBALS['convcharset'] . '&server=' . urlencode($GLOBALS['server']) . '&db=' . urlencode($GLOBALS['db']) . '&sql_query=' . urlencode($the_query) . '&show_query=1">' . $GLOBALS['strEdit'] . '</a>'
|
||||
. ']' . "\n";
|
||||
|
10
main.php3
10
main.php3
@@ -395,8 +395,14 @@ if ($server > 0) {
|
||||
<td valign="baseline"><img src="<?php echo $item_img; ?>" width="7" height="7" alt="item" /></td>
|
||||
<td>
|
||||
<a href="user_details.php3?<?php echo $common_url_query; ?>&db=mysql&table=user">
|
||||
<?php echo $strUsers; ?></a>
|
||||
<?php echo PMA_showMySQLDocu('MySQL_Database_Administration', 'Privilege_system') . "\n"; ?>
|
||||
<?php echo $strUsers; ?></a> (old school)
|
||||
</td>
|
||||
</tr>
|
||||
<tr>
|
||||
<td valign="baseline"><img src="<?php echo $item_img; ?>" width="7" height="7" alt="item" /></td>
|
||||
<td>
|
||||
<a href="server_privileges.php3?<?php echo $common_url_query; ?>">
|
||||
<?php echo $strPrivileges; ?></a>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
|
@@ -42,6 +42,9 @@ if ($cfg['ShowMysqlInfo']) {
|
||||
if ($cfg['ShowMysqlVars']) {
|
||||
echo PMA_printTab($strServerTabVariables, 'server_variables.php3', $url_query);
|
||||
}
|
||||
if ($is_superuser) {
|
||||
echo PMA_printTab($strPrivileges, 'server_privileges.php3', $url_query);
|
||||
}
|
||||
echo PMA_printTab($strServerTabProcesslist, 'server_processlist.php3', $url_query);
|
||||
?>
|
||||
</tr>
|
||||
|
361
server_privileges.php3
Normal file
361
server_privileges.php3
Normal file
@@ -0,0 +1,361 @@
|
||||
<?php
|
||||
/* $Id$ */
|
||||
// vim: expandtab sw=4 ts=4 sts=4:
|
||||
|
||||
|
||||
/**
|
||||
* Gets some core libraries
|
||||
*/
|
||||
if (!defined('PMA_GRAB_GLOBALS_INCLUDED')) {
|
||||
include('./libraries/grab_globals.lib.php3');
|
||||
}
|
||||
if (!defined('PMA_COMMON_LIB_INCLUDED')) {
|
||||
include('./libraries/common.lib.php3');
|
||||
}
|
||||
|
||||
/**
|
||||
* Extracts the privilege information of a priv table row
|
||||
*
|
||||
* @param array the row
|
||||
* @param boolean add <dfn> tag with tooltips
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
function PMA_extractPrivInfo($row = '', $enableHTML = FALSE)
|
||||
{
|
||||
$grants = array(
|
||||
array('Select_priv', 'SELECT', $GLOBALS['strPrivDescSelect']),
|
||||
array('Insert_priv', 'INSERT', $GLOBALS['strPrivDescInsert']),
|
||||
array('Update_priv', 'UPDATE', $GLOBALS['strPrivDescUpdate']),
|
||||
array('Delete_priv', 'DELETE', $GLOBALS['strPrivDescDelete']),
|
||||
array('Create_priv', 'CREATE', $GLOBALS['strPrivDescCreate' . (isset($GOLBALS['tablename']) ? 'Tbl' : 'Db')]),
|
||||
array('Drop_priv', 'DROP', $GLOBALS['strPrivDescDrop' . (isset($GOLBALS['tablename']) ? 'Tbl' : 'Db')]),
|
||||
array('Reload_priv', 'RELOAD', $GLOBALS['strPrivDescReload']),
|
||||
array('Shutdown_priv', 'SHUTDOWN', $GLOBALS['strPrivDescShutdown']),
|
||||
array('Process_priv', 'PROCESS', $GLOBALS['strPrivDescProcess' . ((!empty($row) && isset($row['Super_priv'])) || (empty($row) && isset($GLOBALS['Super_priv'])) ? '4' : '3')]),
|
||||
array('File_priv', 'FILE', $GLOBALS['strPrivDescFile']),
|
||||
array('References_priv', 'REFERENCES', $GLOBALS['strPrivDescReferences']),
|
||||
array('Index_priv', 'INDEX', $GLOBALS['strPrivDescIndex']),
|
||||
array('Alter_priv', 'ALTER', $GLOBALS['strPrivDescAlter']),
|
||||
array('Show_db_priv', 'SHOW DATABASES', $GLOBALS['strPrivDescShowDb']),
|
||||
array('Super_priv', 'SUPER', $GLOBALS['strPrivDescSuper']),
|
||||
array('Create_tmp_table_priv', 'CREATE TEMPORARY TABLES', $GLOBALS['strPrivDescCreateTmpTable']),
|
||||
array('Lock_tables_priv', 'LOCK TABLES', $GLOBALS['strPrivDescLockTables']),
|
||||
array('Execute_priv', 'EXECUTE', $GLOBALS['strPrivDescExecute']),
|
||||
array('Repl_slave_priv', 'REPLICATION SLAVE', $GLOBALS['strPrivDescReplSlave']),
|
||||
array('Repl_client_priv', 'REPLICATION CLIENT', $GLOBALS['strPrivDescReplClient'])
|
||||
);
|
||||
$privs = array();
|
||||
$allPrivileges = TRUE;
|
||||
while (list(, $current_grant) = each($grants)) {
|
||||
if ((!empty($row) && isset($row[$current_grant[0]])) || (empty($row) && isset($GLOBALS[$current_grant[0]]))) {
|
||||
if ((!empty($row) && $row[$current_grant[0]] == 'Y') || (empty($row) && $GLOBALS[$current_grant[0]] == 'Y')) {
|
||||
if ($enableHTML) {
|
||||
$privs[] = '<dfn title="' . $current_grant[2] . '">' . str_replace(' ', ' ', $current_grant[1]) . '</dfn>';
|
||||
} else {
|
||||
$privs[] = $current_grant[1];
|
||||
}
|
||||
} else {
|
||||
$allPrivileges = FALSE;
|
||||
}
|
||||
}
|
||||
}
|
||||
if (empty($privs)) {
|
||||
if ($enableHTML) {
|
||||
$privs[] = '<dfn title="' . $GLOBALS['strPrivDescUsage'] . '">USAGE</dfn>';
|
||||
} else {
|
||||
$privs[] = 'USAGE';
|
||||
}
|
||||
} else if ($allPrivileges && (!isset($GLOBALS['grant_count']) || count($privs) == $GLOBALS['grant_count'])) {
|
||||
if ($enableHTML) {
|
||||
$privs = array('<dfn title="' . $GLOBALS['strPrivDescAllPrivileges'] . '">ALL PRIVILEGES</dfn>');
|
||||
} else {
|
||||
$privs = array('ALL PRIVILEGES');
|
||||
}
|
||||
}
|
||||
return $privs;
|
||||
}
|
||||
|
||||
/**
|
||||
* Updates privileges
|
||||
*/
|
||||
if (!empty($update_privs)) {
|
||||
$sql_query0 = 'REVOKE ALL PRIVILEGES ON *.* FROM "' . $username . '"@"' . $hostname . '";';
|
||||
$sql_query1 = 'REVOKE GRANT OPTION ON *.* FROM "' . $username . '"@"' . $hostname . '";';
|
||||
$sql_query2 = 'GRANT ' . join(', ', PMA_extractPrivInfo()) . ' ON *.* TO "' . $username . '"@"' . $hostname . '"';
|
||||
if (isset($Grant_priv) || isset($max_questions) || isset($max_connections) || isset($max_updates)) {
|
||||
$sql_query2 .= 'WITH';
|
||||
if (isset($Grant_priv) && $Grant_priv == 'Y') {
|
||||
$sql_query2 .= ' GRANT OPTION';
|
||||
}
|
||||
if (isset($max_questions)) {
|
||||
$sql_query2 .= ' MAX_QUERIES_PER_HOUR ' . (int)$max_questions;
|
||||
}
|
||||
if (isset($max_connections)) {
|
||||
$sql_query2 .= ' MAX_CONNECTIONS_PER_HOUR ' . (int)$max_connections;
|
||||
}
|
||||
if (isset($max_updates)) {
|
||||
$sql_query2 .= ' MAX_UPDATES_PER_HOUR ' . (int)$max_updates;
|
||||
}
|
||||
}
|
||||
$sql_query2 .= ';';
|
||||
if (!@PMA_mysql_query($sql_query0, $userlink)) {
|
||||
PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query0);
|
||||
}
|
||||
if (!@PMA_mysql_query($sql_query1, $userlink)) {
|
||||
PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query1);
|
||||
}
|
||||
if (!@PMA_mysql_query($sql_query2, $userlink)) {
|
||||
PMA_mysqlDie(PMA_mysql_error($userlink), $sql_query2);
|
||||
}
|
||||
$sql_query = $sql_query0 . ' ' . $sql_query1 . ' ' . $sql_query2;
|
||||
$message = sprintf($strUpdatePrivMessage, '\'' . $username . '\'@\'' . $hostname . '\'');
|
||||
}
|
||||
|
||||
/**
|
||||
* Reloads the privilege tables into memory
|
||||
*/
|
||||
if (!empty($flush_privileges)) {
|
||||
$sql_query = 'FLUSH PRIVILEGES';
|
||||
if (@PMA_mysql_query($sql_query, $userlink)) {
|
||||
$message = $strPrivilegesReloaded;
|
||||
} else {
|
||||
PMA_mysqlDie(PMA_mysql_error($userlink));
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Does the common work
|
||||
*/
|
||||
require('./server_common.inc.php3');
|
||||
|
||||
/**
|
||||
* Displays the links
|
||||
*/
|
||||
require('./server_links.inc.php3');
|
||||
|
||||
/**
|
||||
* Checks if the user is allowed to do what he tries to...
|
||||
*/
|
||||
if (!$is_superuser) {
|
||||
echo '<h2>' . "\n"
|
||||
. ' ' . $strUsers . "\n"
|
||||
. '</h2>' . "\n"
|
||||
. $strNoPrivileges . "\n";
|
||||
include('./footer.inc.php3');
|
||||
exit;
|
||||
}
|
||||
|
||||
if (!isset($username) && !isset($hostname)) {
|
||||
// No username is given --> display the overview
|
||||
echo '<h2>' . "\n"
|
||||
. ' ' . $strUserOverview . "\n"
|
||||
. '</h2>' . "\n";
|
||||
$oldPrivTables = FALSE;
|
||||
if (PMA_MYSQL_INT_VERSION >= 40002) {
|
||||
$res = PMA_mysql_query('SELECT `User`, `Host`, IF(`Password` = "", "N", "Y") AS "Password", `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Create_priv`, `Drop_priv`, `Reload_priv`, `Shutdown_priv`, `Process_priv`, `File_priv`, `Grant_priv`, `References_priv`, `Index_priv`, `Alter_priv`, `Show_db_priv`, `Super_priv`, `Create_tmp_table_priv`, `Lock_tables_priv`, `Execute_priv`, `Repl_slave_priv`, `Repl_client_priv` FROM `user`;', $userlink);
|
||||
if (!$res) {
|
||||
// the query failed! This may have two reasons:
|
||||
// - the user has not enough privileges
|
||||
// - the privilege tables use a structure of an earlier version.
|
||||
$oldPrivTables = TRUE;
|
||||
}
|
||||
}
|
||||
if (!$res || (PMA_MYSQL_INT_VERSION >= 32211 && PMA_MYSQL_INT_VERSION < 40002)) {
|
||||
$res = PMA_mysql_query('SELECT `User`, `Host`, IF(`Password` = "", "N", "Y") AS "Password", `Select_priv`, `Insert_priv`, `Update_priv`, `Delete_priv`, `Index_priv`, `Alter_priv`, `Create_priv`, `Drop_priv`, `Grant_priv`, `References_priv`, `Reload_priv`, `Shutdown_priv`, `Process_priv`, `File_priv` FROM `user`;', $userlink);
|
||||
if (!$res) {
|
||||
// the query failed! This may have two reasons:
|
||||
// - the user has not enough privileges
|
||||
// - the privilege tables use a structure of an earlier version.
|
||||
$oldPrivTables = TRUE;
|
||||
}
|
||||
}
|
||||
if (!$res || PMA_MYSQL_INT_VERSION < 32211) {
|
||||
$res = PMA_mysql_query('SELECT * FROM `user`;', $userlink);
|
||||
}
|
||||
if (!$res) {
|
||||
echo '<i>' . $strNoPrivileges . '</i>' . "\n";
|
||||
@mysql_free_result($res);
|
||||
unset($res);
|
||||
} else {
|
||||
if ($oldPrivTables) {
|
||||
// rabus: This message is hardcoded because I will replace it by
|
||||
// a automatic repair feature soon.
|
||||
echo '<div class="warning">' . "\n"
|
||||
. ' Warning: Your privilege table structure seem to be older than this MySQL version!<br />' . "\n"
|
||||
. ' Please run the script <tt>mysql_fix_privilege_tables</tt> that should be included in your MySQL server distribution to solve this problem!' . "\n"
|
||||
. '</div><br />' . "\n";
|
||||
}
|
||||
echo '<table border="0">' . "\n"
|
||||
. ' <tr>' . "\n"
|
||||
. ' <th></th>' . "\n"
|
||||
. ' <th> ' . $strUser . ' </th>' . "\n"
|
||||
. ' <th> ' . $strHost . ' </th>' . "\n"
|
||||
. ' <th> ' . $strPassword . ' </th>' . "\n"
|
||||
. ' <th> ' . $strGlobalPrivileges . ' </th>' . "\n"
|
||||
. ' <th> ' . $strGrantOption . ' </th>' . "\n"
|
||||
. ' <th> ' . $strAction . ' </th>' . "\n";
|
||||
echo ' </tr>' . "\n";
|
||||
$useBgcolorOne = TRUE;
|
||||
while ($row = PMA_mysql_fetch_array($res, MYSQL_ASSOC)) {
|
||||
echo ' <tr>' . "\n"
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"></td>' . "\n"
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . (empty($row['User']) ? '<span style="color: #FF0000">' . $strAny . '</span>' : htmlspecialchars($row['User'])) . '</td>' . "\n"
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . htmlspecialchars($row['Host']) . '</td>' . "\n";
|
||||
$privs = PMA_extractPrivInfo($row, TRUE);
|
||||
echo ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . ($row['Password'] == 'Y' ? $strYes : '<span style="color: #FF0000">' . $strNo . '</span>') . '</td>' . "\n"
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><tt>' . "\n"
|
||||
. ' ' . join(',' . "\n" . ' ', $privs) . "\n"
|
||||
. ' </tt></td>' . "\n"
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '">' . ($row['Grant_priv'] == 'Y' ? $strYes : $strNo) . '</td>' . "\n"
|
||||
. ' <td bgcolor="' . ($useBgcolorOne ? $cfg['BgcolorOne'] : $cfg['BgcolorTwo']) . '"><a href="server_privileges.php3?' . $url_query . '&username=' . urlencode($row['User']) . ($row['Host'] == '%' ? '' : '&hostname=' . urlencode($row['Host'])) . '">' . $strEdit . '</a></td>' . "\n"
|
||||
. ' </tr>' . "\n";
|
||||
$useBgcolorOne = !$useBgcolorOne;
|
||||
}
|
||||
@mysql_free_result($res);
|
||||
unset($res);
|
||||
unset ($row);
|
||||
echo ' <tr>' . "\n"
|
||||
. ' <td colspan="6">' . "\n"
|
||||
. ' <i>' . $strEnglishPrivileges . '</i> ' . "\n"
|
||||
. ' </td>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. '</table><br />' . "\n"
|
||||
. '<div>' . "\n"
|
||||
. ' ' . sprintf($strFlushPrivilegesNote, '<a href="server_privileges.php3?' . $url_query . '&flush_privileges=1">', '</a>');
|
||||
}
|
||||
} else if (isset($username)) {
|
||||
if (!isset($hostname)) {
|
||||
$hostname = '%';
|
||||
}
|
||||
echo '<h2>' . "\n"
|
||||
. ' ' . $strEditPrivileges . '<br />' . "\n"
|
||||
. '</h2>' . "\n"
|
||||
. '<h3>' . "\n"
|
||||
. ' ' . $strUser . ' <i>\'' . htmlspecialchars($username) . '\'@\'' . htmlspecialchars($hostname) . '\'</i>' . "\n"
|
||||
. '</h3>' . "\n";
|
||||
$res = PMA_mysql_query('SELECT * FROM `user` WHERE `User` = "' . $username . '" AND `Host` = "' . $hostname . '"', $userlink);
|
||||
$row = PMA_mysql_fetch_array($res, MYSQL_ASSOC);
|
||||
@mysql_free_result($res);
|
||||
unset($res);
|
||||
$privTable[0] = array(
|
||||
array('Select', 'SELECT', $strPrivDescSelect),
|
||||
array('Insert', 'INSERT', $strPrivDescInsert),
|
||||
array('Update', 'UPDATE', $strPrivDescUpdate),
|
||||
array('Delete', 'DELETE', $strPrivDescDelete),
|
||||
array('File', 'FILE', $strPrivDescFile)
|
||||
);
|
||||
if (isset($row['Lock_tables_priv'])) {
|
||||
$privDataAccess[1][] = array('Lock_tables', 'LOCK TABLES', $strPrivDescLockTables);
|
||||
}
|
||||
$privTable[1] = array(
|
||||
array('Create', 'CREATE', $strPrivDescCreateDb),
|
||||
array('Alter', 'ALTER', $strPrivDescAlter),
|
||||
array('Index', 'INDEX', $strPrivDescIndex),
|
||||
array('Drop', 'DROP', $strPrivDescDropDb)
|
||||
);
|
||||
if (isset($row['Create_tmp_table_priv'])) {
|
||||
$privTable[1][] = array('Create_tmp_table', 'CREATE TEMPORARAY TABLES', $strPrivDescCreateTmpTable);
|
||||
}
|
||||
$privTable[2] = array();
|
||||
if (isset($row['Grant_priv'])) {
|
||||
$privTable[2][] = array('Grant', 'GRANT', $strPrivDescGrant);
|
||||
}
|
||||
if (isset($row['Super_priv'])) {
|
||||
$privTable[2][] = array('Super', 'SUPER', $strPrivDescSuper);
|
||||
$privTable[2][] = array('Process', 'PROCESS', $strPrivDescProcess4);
|
||||
} else {
|
||||
$privTable[2][] = array('Process', 'PROCESS', $strPrivDescProcess3);
|
||||
}
|
||||
$privTable[2][] = array('Reload', 'RELOAD', $strPrivDescReload);
|
||||
$privTable[2][] = array('Shutdown', 'SHUTDOWN', $strPrivDescShutdown);
|
||||
if (isset($row['Show_db_priv'])) {
|
||||
$privTable[2][] = array('Show_db', 'SHOW DATABASES', $strPrivDescShowDb);
|
||||
}
|
||||
$privTable[2][] = array('References', 'REFERENCES', $strPrivDescReferences);
|
||||
if (isset($row['Execute_priv'])) {
|
||||
$privTable[2][] = array('Execute', 'EXECUTE', $strPrivDescExecute);
|
||||
}
|
||||
if (isset($row['Repl_client_priv'])) {
|
||||
$privTable[2][] = array('Repl_client', 'REPLICATION CLIENT', $strPrivDescReplClient);
|
||||
}
|
||||
if (isset($row['Repl_slave_priv'])) {
|
||||
$privTable[2][] = array('Repl_slave', 'REPLICATION SLAVE', $strPrivDescReplSlave);
|
||||
}
|
||||
echo '<form action="server_privileges.php3" method="post">' . "\n"
|
||||
. ' <input type="hidden" name="lang" value="' . $lang . '" />' . "\n"
|
||||
. ' <input type="hidden" name="convcharset" value="' . $convcharset . '" />' . "\n"
|
||||
. ' <input type="hidden" name="server" value="' . $server . '" />' . "\n"
|
||||
. ' <input type="hidden" name="username" value="' . urlencode($username) . '" />' . "\n";
|
||||
if ($hostname != '%') {
|
||||
echo ' <input type="hidden" name="hostname" value="' . urlencode($hostname) . '" />' . "\n";
|
||||
}
|
||||
echo ' <input type="hidden" name="grant_count" value="' . (count($privTable[0]) + count($privTable[1]) + count($privTable[2])) . '" />' . "\n"
|
||||
. ' <table border="0">' . "\n"
|
||||
. ' <tr>' . "\n"
|
||||
. ' <th colspan="6"> ' . $strGlobalPrivileges . ' </th>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. ' <tr>' . "\n"
|
||||
. ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="6"><small><i>' . $strEnglishPrivileges . '</i></small></th>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. ' <tr>'
|
||||
. ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2"> <b><i>' . $strData . '</i></b> </td>' . "\n"
|
||||
. ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2"> <b><i>' . $strStructure . '</i></b> </td>' . "\n"
|
||||
. ' <td bgcolor="' . $cfg['BgcolorOne'] . '" colspan="2"> <b><i>' . $strAdministration . '</i></b> </td>' . "\n"
|
||||
. ' </tr>' . "\n";
|
||||
$limitTable = FALSE;
|
||||
for ($i = 0; isset($privTable[0][$i]) || isset($privTable[1][$i]) || isset($privTable[2][$i]); $i++) {
|
||||
echo ' <tr>' . "\n";
|
||||
for ($j = 0; $j < 3; $j++) {
|
||||
if (isset($privTable[$j][$i])) {
|
||||
echo ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="checkbox" name="' . $privTable[$j][$i][0] . '_priv" id="checkbox_' . $privTable[$j][$i][0] . '_priv" value="Y" ' . ($row[$privTable[$j][$i][0] . '_priv'] == 'Y' ? 'checked="checked" ' : '') . 'title="' . $privTable[$j][$i][2] . '"/></td>' . "\n"
|
||||
. ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="checkbox_' . $privTable[$j][$i][0] . '_priv"><tt><dfn title="' . $privTable[$j][$i][2] . '">' . $privTable[$j][$i][1] . '</dfn></tt></label></td>' . "\n";
|
||||
} else if (!isset($privTable[0][$i]) && !isset($privTable[1][$i])
|
||||
&& isset($row['max_questions']) && isset($row['max_updates']) && isset($row['max_connections'])
|
||||
&& !$limitTable) {
|
||||
echo ' <td colspan="4" rowspan="' . (count($privTable[2]) - $i) . '">' . "\n"
|
||||
. ' <table border="0">' . "\n"
|
||||
. ' <tr>' . "\n"
|
||||
. ' <th colspan="2"> ' . $strResourceLimits . ' </th>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. ' <tr>' . "\n"
|
||||
. ' <td bgcolor="' . $cfg['BgcolorTwo'] . '" colspan="2"><small><i>' . $strZeroRemovesTheLimit . '</i></small></td>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. ' <tr>' . "\n"
|
||||
. ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_questions"><tt><dfn title="' . $strPrivDescMaxQuestions . '">MAX QUERIES PER HOUR</dfn></tt></label></td>' . "\n"
|
||||
. ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" name="max_questions" id="text_max_questions" value="' . $row['max_questions'] . '" size="11" maxlength="11" title="' . $strPrivDescMaxQuestions . '" /></td>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. ' <tr>' . "\n"
|
||||
. ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_updates"><tt><dfn title="' . $strPrivDescMaxUpdates . '">MAX UPDATES PER HOUR</dfn></tt></label></td>' . "\n"
|
||||
. ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" name="max_updates" id="text_max_updates" value="' . $row['max_updates'] . '" size="11" maxlength="11" title="' . $strPrivDescMaxUpdates . '" /></td>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. ' <tr>' . "\n"
|
||||
. ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><label for="text_max_connections"><tt><dfn title="' . $strPrivDescMaxConnections . '">MAX CONNECTIONS PER HOUR</dfn></tt></label></td>' . "\n"
|
||||
. ' <td bgcolor="' . $cfg['BgcolorTwo'] . '"><input type="text" name="max_connections" id="text_max_connections" value="' . $row['max_connections'] . '" size="11" maxlength="11" title="' . $strPrivDescMaxConnections . '" /></td>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. ' </table>' . "\n"
|
||||
. ' </td>' . "\n";
|
||||
$limitTable = TRUE;
|
||||
} else if (!$limitTable) {
|
||||
echo ' <td colspan="2"></td>' . "\n";
|
||||
}
|
||||
}
|
||||
echo ' </tr>' . "\n";
|
||||
}
|
||||
echo ' <tr>' . "\n"
|
||||
. ' <td colspan="6" align="center">' . "\n"
|
||||
. ' <input type="submit" name="update_privs" value="' . $strGo . '" />' . "\n"
|
||||
. ' </td>' . "\n"
|
||||
. ' </tr>' . "\n"
|
||||
. ' </table>' . "\n"
|
||||
. '</form>' . "\n";
|
||||
} else if (isset($hostname)) {
|
||||
// TODO: Host privilege editor
|
||||
}
|
||||
|
||||
/**
|
||||
* Displays the footer
|
||||
*/
|
||||
require('./footer.inc.php3');
|
||||
|
||||
?>
|
Reference in New Issue
Block a user